cancel
Showing results for 
Search instead for 
Did you mean: 

Hide adobe tool bar

sreenadh_mv
Explorer
0 Kudos

Dear Experts,

I have included interactive form UI element inside a WebDynpro application using ABAP.I have included the following code to hide the tool bar.

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 ).

lr_method_handler->set_hide_toolbars( abap_true ).

But the tool bar is not hidden.Please help in this regard to hide Tool bar using Web Dynpro for ABAP.

I use Adobe live cycle designer version 8.0.

Regards,

Sree.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sreenadh

The same code is working for me correctly. you need to Import 700 Support Package 10 for this to work.

please refer SAP note 980437.

Thanks

Vishal Kapoor

Answers (2)

Answers (2)

sreenadh_mv
Explorer
0 Kudos

Dear Vishal / Mahesh,

That code was working fine when I fill the interactive form's Template source attribute but in my requirement I was just filling the PDF source attribute as the PDF data to be displayed is only available to me.

In this scenario the Tool bar was not hiding.Please help in this regard.

Dear Mahesh ,

When gone in debugging mode it goes and sets the Hide tool bar attribute still its not hiding the tool bar.

The interactive form I am displaying is coming in interactive mode.

Thank you,

Sree

former_member188831
Contributor
0 Kudos

Dear Sreenadh,

I have tested with your code it is absolutely working fine...

please check it once again.. keep a break point and test whether your code is executing or not..

and the interactive form is coming in interactive mode ?

Thanks,

mahesh.gattu