cancel
Showing results for 
Search instead for 
Did you mean: 

Web Dynpro render configuration for Adobe Interactive Forms

Former Member
0 Kudos

Hi,

Is there any possibility to check rendering configuration for Web Dynpro application? I built web dynpro application which shows simple Adobe Interactive Form. In Sap Adobe LiveCycle Designer all buttons of Interactive Form are working (JavaScript) but in the form showed by web dynpro application in IE buttons have no action. Do You know what is the cause or where to search?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Pawel,

The interface of the UI element InteractiveForm contains the method SET_LEGACY_EDITING_MODE, which in turn contains a Boolean parameter. The form is then ready for input



method WDDOMODIFYVIEW.
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(u2018INTERACTIVE_FORM_1u2019).
LR_METHOD_HANDLER ?= LR_INTERACTIVE_FORM->_METHOD_HANDLER.
LR_METHOD_HANDLER->SET_LEGACY_EDITING_ENABLED( abap_true ).

endmethod.

Regards,

Runal

Former Member
0 Kudos

I am using SAP Adobe LC Desiger as a part of NWDS, I made my application also in NWDS, and I am deploing my application on Composition Enviroment so do I need this method which has abap_true?