cancel
Showing results for 
Search instead for 
Did you mean: 

Set all fields read only on Adobe Interactive form

0 Kudos

Dear collegues,

Currrently I am working on some business requirements for Adobe interactive forms. One of the requirements is, all fileds on the Interactive form(Vendor master data) need to be set as READ-ONLY based on the condition(We can say a 'FLAG' value).

I mean this would be done based on FLAG value ( For example FLAG = 'X'), not by clicking on any button on the form.

In case of button, I tried to use LOOP at all the filels and set field attribute read only, but not sure in the above case.

I greatly appriciate and thankful for your valuable idaes and thoughts on this.

Best Regards,

Srinivass

Accepted Solutions (0)

Answers (1)

Answers (1)

vaibhav_tiwari
Contributor
0 Kudos

Hi Srini,

If its a form you are using in WD ABAP/Java bind the value of read-only property to an attribute and change the value of attribute depending on condition to show as read only or not.

Or you can make it read only by using formcalc script in the form at initialize event of external most node in the hierarchy say form1:

form1.access = "readOnly"

or

form1.access = "nonInteractive"

add your condition for this script.

Regards,

Vaibhav