cancel
Showing results for 
Search instead for 
Did you mean: 

How to make Adobe form editable

Former Member
0 Kudos

Hi SAP Guru's

I have to implement Adobe Interactive form in the ESS(portal). I have activated ADS server in the both server(EP and R/3), its functioning properly(accourding to note 944221).

End users are only able to see it but they are not able to edit it.

So please suggest what step to be take to make editable Adode Interactive form.

Thanks & Regards

Vinay Patel

Accepted Solutions (1)

Accepted Solutions (1)

chintan_virani
Active Contributor
0 Kudos

Vinay,

Have you installed Adobe Credentials on the server?

If not please check Note 736902 and then have a look at the configuration guide [here|http://help.sap.com/saphelp_nw70/helpdata/en/fa/0b700d6cfd4e03a8ec2186ba6ff4af/frameset.htm] on how to install them.

Chintan

Former Member
0 Kudos

Thanks a lot man

Answers (1)

Answers (1)

Former Member
0 Kudos

hi,

if ur adobe form developed using webdynpro abap, add the some piece of code in domodifyview method .

code:

data: lr_zpar_sample 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_zpar_sample ?= view->get_element( 'FORM' ).

lr_method_handler ?= lr_zpar_sample->_method_handler.

lr_method_handler->set_legacy_editing_enabled( abap_true ).

and

Check Enabled Property for the interactive form UI Element.

the form become a editable...

by

Parthasarathi