cancel
Showing results for 
Search instead for 
Did you mean: 

Adobe Interactive Form text field not editable

Former Member
0 Kudos

Hello,

I created an Adobe Form using transaction SFP and placed a textfield on the body page.

I then created a Web Dynpro application using SE80, placed Interactive Form container on the view. I also checked the flag 'Enabled' and provided the templateSource as my Adobe Form name.

When I test the WD application, the text field is not editable.

Can you please advise what needs to be done?

Thanks

Sagar

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi...

Place the following code in domodifyview

data:

lr_interactive_form type ref to cl_wd_interactive_form,

lr_method_handler type ref to if_wd_iactive_form_method_hndl.

check first_time = abap_true.

lr_interactive_form ?= view->get_element( 'INTERACTIVE_FORM' ).

lr_method_handler ?= lr_interactive_form->_method_handler.

lr_method_handler->set_legacy_editing_enabled( abap_true ).

Thanks

Gopal.

Answers (0)