cancel
Showing results for 
Search instead for 
Did you mean: 

unable to fill form fields

Former Member
0 Kudos

Hi all,

I created a Adobe Interactive Form with the transaction SFP and activated it. Later I included the form into a WebDynpro View and set the property ENABLED true. in the PDF-Preview of livecycle designer everything works fine but at runtime of the WD application the fields of the form are disabled.

and there is another problem. if a collegue displays the form in livecycle designer it is empty. The interface is filled but in the designer view none of the elements is displayed whether the input fields or pictures or textelements.

Can anyone help me?

Thanks

Martin

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Martin,

I created a Adobe Interactive Form with the transaction SFP and activated it. Later I included the form into a WebDynpro View and set the property ENABLED true. in the PDF-Preview of livecycle designer everything works fine but at runtime of the WD application the fields of the form are disabled.

and there is another problem. if a collegue displays the form in livecycle designer it is empty. The interface is filled but in the designer view none of the elements is displayed whether the input fields or pictures or textelements.

Can anyone help me?

1. Add the piece of code to WDDOMODIFYVIEW method of the interactive form view.

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

lr_method_handler ?= lr_zsample->_method_handler.

lr_method_handler->set_legacy_editing_enabled( abap_true ).

This code will give the editable interactive form view.

2. May be some Configuration settings are missed, Check the Version of the Adobe Lifecycle Designer,

For More info,

http://help.sap.com/erp2005_ehp_04/helpdata/EN/45/2fbd67361003c3e10000000a1553f6/content.htm

http://help.sap.com/saphelp_nw70/helpdata/en/2c/241a427ff6db2ce10000000a1550b0/frameset.htm

http://help.sap.com/saphelp_nw2004s/helpdata/EN/44/c480dff23c0f2ce10000000a1553f7/frameset.htm

By

Parthi

Former Member
0 Kudos

Hi Parthi,

thank you. Your solution works fine. 10 Points are yours.

regards

Martin

Answers (0)