cancel
Showing results for 
Search instead for 
Did you mean: 

Based on DDL value ,How to make few other fields visible in Adobe forms in SAP CRM??

Former Member
0 Kudos

Hi All,

        I need to make few fields visible in adobe forms, based on the dropdown value which user selects.....

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Vignesh,

     In the "EXIT" or "CLICK"event of the particular Drop down field you can write the below code(in Java script).

if (this.rawvalue == <value> )

{

      <field name>.presence = "invisible";

}

else

{

    <field name>.presence = "visible";

}

Thanks,

Ashok N.

Former Member
0 Kudos

Hi Ashok,

                 Thanks for your code....it works good   

Answers (1)

Answers (1)

ChrisSolomon
Active Contributor
0 Kudos

Uhm.....ok....so why not have script within the form that will show/hide those fields based on the selections? You can also bind a hidden field(s) to your context and do the same via script in the form.