Hi,
We are interested in overwriting the title of the web printing. basically, we wanted to pass a value for title from the web template to &TITLE& attribute of Z_PRINT_HELP_SERVICE. if any one has already worked on this, I appreciate your inputs.
thanks
I got the solution. we can use a form and hidden text box with value to pass value to attribute P_HEADER_CENTER of Z_PRINT_HELP_SERVICE or we can even pass P_HEADER_CENTER along with url incase if we don't need to use form.
I have taken value of title into a java script variable and passed to P_HEADER_CENTER along with url as below.
var title='some title';
window.open(SAP_BW_URL_Get() + '&CMD=PROCESS_HELP_WINDOW&help_service=ZPRINTING&item=TABLE_1&P_HEADER_CENTER='+title);
Add a comment