cancel
Showing results for 
Search instead for 
Did you mean: 

Dynamic display fields in Adobe Form

Former Member
0 Kudos

Hi all,

I am trying to design a Adobe non-interactive form.

But my requirement is If Field = ‘X’ then display table1.

If Field = ‘’ then do not display table 1 in output of Adobe form.

Field & table both are coming from SE38 code.

Please guide me if it is possible or not with a single adobe form.

Other option I have I can design 2 different form one with table & other with no table.

Please guide me if it is possible with one Adobe form or not.

Regards

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Umesh,

Another solution is to clear the table if it's not necessary to print it . You can do it in the Interface of your form .

Then put the table into a subform and set it as display for each element . With this you don't need to make code and that works .

Hope this help you.

Regards.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Umesh,

This is possible using single Adobe form only. Pass this field into context.

And in form, write the script on Form:Ready event of body page:

if ( $.FIELD eq "X" ) then

$.Table1.presence = "hidden"

endif

Hope this helps,

Amit