cancel
Showing results for 
Search instead for 
Did you mean: 

Unable to see Menu in Adobe Form

Former Member
0 Kudos

Hi,

We have adobe forms developed in the backend and using ABAP WD we created iviews for the forms and calling them in Portal.

But when user clicks on the iview adobe form is displaying without the menu options (Save,Print,Find....), when user presses F8 function key it is displaying. But it should display automatically.

We are unable to find a clue on this, can anybody please let me know what can be done on this.

Regards,

Pradeep

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

What is the ECC version you are on? By default it should unhide the menu bar in adobe.

Workaround: try this:

in wdomodify method of the view(where there interactive form is) write the following code.

Below is the code for hiding the toolbars of Adobe form. Paste it in WDDOMODIFYVIEW method of your view.

DATA: LR_METHOD_HANDLER TYPE REF TO IF_WD_IACTIVE_FORM_METHOD_HNDL,

LR_WD_FORM TYPE REF TO CL_WD_INTERACTIVE_FORM.

IF FIRST_TIME EQ TRUE.

LR_WD_FORM ?= VIEW->GET_ELEMENT( 'your interactive form id go here' ).

IF LR_WD_FORM IS NOT INITIAL.

LR_METHOD_HANDLER ?= LR_WD_FORM->_METHOD_HANDLER.

LR_METHOD_HANDLER->SET_HIDE_TOOLBARS( ABAP_FALSE ).

ENDIF.

ENDIF.

Cheers,

Anu