cancel
Showing results for 
Search instead for 
Did you mean: 

How to hide tool bar from Adobe Form

Former Member
0 Kudos

Hi ,

We are working on ISR adobe form and we need to hide the adobe tool bar once it shows up in Internet Explorer.

Thanks,

Manish

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Manish,

Hope this link will help you. <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/45/2dbb13d79f3446e10000000a155369/frameset.htm">SAP Help</a>

Regards,

Amit

Former Member
0 Kudos

Hi Amit,

Thx for the reply , I tried the code which is in the link but I am not able find the IF_WD_IACTIVE_FORM_METHOD_HNDL interface in ABAP Object Repository , Is there any way to hide the tool bar using javascript of fromcalc ?

Thanks

Manish

Former Member
0 Kudos

Hi Manish,

Check out this link -> <a href="https://forums.sdn.sap.com/click.jspa?searchID=2259223&messageID=3230540">https://forums.sdn.sap.com/click.jspa?searchID=2259223&messageID=3230540</a>.

Do update if you have found the solution or it helps.

Thanks and Regards,

Anto.

Former Member
0 Kudos

Hi,

Try this, we have used this in our project, where toolbar appears only when the form is opened in Display mode.

//Show Adobe toolbar only if we are in display mode

if (xfa.record.CONTROL_PARAM.ISR_MODE != undefined) {

if (xfa.record.CONTROL_PARAM.ISR_MODE.value != "DISPLAY") {

var stopToolbar = app.setTimeOut("app.eval(\"SAPToolbarHide();\");", 1);

}

}

Hope this will help.

Regards,

Amit

Former Member
0 Kudos

Thanks,

Amit

Answers (0)