‎2009 Jul 24 11:20 AM
There was a reauirement to convert the SAP script forms to PDF forms. For this I am creating a RFC in the backend where I use BDC to call the standard program RPCEOYG0 and executing this RFC throgh webdynpro adaptive RFC model.
When I debug at 'call transaction' for the program RPCEOYG0. then I program is coming out when printer pop up comes.
Can some one help me on this?
Thanks,
Prashanth J R
‎2009 Jul 24 11:27 AM
Hi,
That might be because of the funtion module called 'HR_DISPLAY_ERROR_LIST' with passing value blank in no_popup = ' ' .
call function 'HR_DISPLAY_ERROR_LIST'
exporting no_popup = ' '
no_print = print
no_img = 'X'
no_msgno = 'X'
linesize = max_len
listheader = ' '
colheader = ' '
hidemsg = ' '
tables error = errors
exceptions invalid_linesize = 1
others = 2.
‎2009 Jul 27 9:42 AM
‎2009 Aug 05 11:43 AM
Our standard program throwing printer popup which used to terminate the user when the standard program is accessed from the portal. Now I have copied the standard program to z-program and then i had commented the code which displays the printer popup and passed printer parameter manually.
Its working now.
Thanks,
Prashanth J R