cancel
Showing results for 
Search instead for 
Did you mean: 

How to Hide the Adobe Reader Header at Runtime

Former Member
0 Kudos

Hi Experts,

How do I remove the Adobereader header at runtime of the form inside interet explorer?

Thanks,

Shobhit

Accepted Solutions (1)

Accepted Solutions (1)

amolgupta
Active Contributor
0 Kudos

hi ,

GOTO...

interactive form->edit->library->webdynpro->hide reader toolbar

drag and drop it on ur body page in the editor.

when you will run your application the header will not be there.

hope this helps.

regards,

-amol gupta

Former Member
0 Kudos

Thanks Amol and Amit!!

I'll try both options

Regards,

Shobhit

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Create a "Form Wide Script Element" in the Hierarchy, and write this code in it.

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

}

}

We are checking if the form mode is display then Adobe header should not come, u can write your conditions here.

Regards,

Amit.

PS: Please reward points if helpful.