cancel
Showing results for 
Search instead for 
Did you mean: 

Interactive form becomes read only after submit action

Former Member
0 Kudos

I'm using online interactive adobe form embedded in webdynpro to retrieve data from a table to allow user to edit them and then submit them for update at backend....

on submisiion and update of data the interactive form in the web browser become read only.

Can anyone tell how to still keep it intractive

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Tabishul,

I'm not familiar with adobe form on ABAP WDP.

However, if i were you, I will check is there any client script (formcalc/javascript) in fields on adobe form; that could possiby to turn the field to readonly.

example.

//Check ISR control parameters for read/write access

if($record.CONTROL_PARAM.ISR_MODE == "DISPLAY" |

   $record.CONTROL_PARAM.ISR_FORM_VIEW =="ISR_APPROVE" )

then

          this.access = "readOnly"

endif

From here you should able to control the editable/readonly using above flag.

Hope this help. Thanks.

regards,

Xiang Li

Former Member
0 Kudos

Dear Xiangli,

As I mentioned the interactive form gets disabled( or you can say read only just as a read only pdf doc) on clicking a submit button........ and not the other way round as u mentioned......

still where do I find those ISR control parameters:

By the way I not using Internet Service Request(ISR) methodology to build the forms....