Premahari
27th April 2018, 14:06
Hi I'm updating table timfc010. when i click form command in timfc0110m000 it will run my customised session script and update timfc010 table. I don want to open my DFE of my customised session. How to hide DFE or invisible of my customised session.
Can anyone help please
vahdani
27th April 2018, 16:03
Hi,
I first did not understand what you meant with DFE then I realised that you actually mean Sesion-Form. DFE is actually short hand for Dynamic Form Editor which is actually the tool for designing Forms :)
If you don't want that your custom Session is shown you have to do the actuall processing in pefore.program section and directly exit afterwards. Something like the following:
|Zoom Variables:
extern domain xxx var1
...
before.program:
if background then
|called from another Session
import(parent, "var1", var1)
....
start.processing(var1, ...)
end() |Stop
endif
Premahari
30th April 2018, 08:46
Hi,
Thank u very much for ur reply. Yes DFE means Dynamic Form Editor only.
I tried with other logic which is similar to your.
before.program:
Executions
exit()
I used exit function. It works fine. Thanks again