Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Call transaction printer problem

Former Member
0 Likes
518

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

3 REPLIES 3
Read only

Former Member
0 Likes
438

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.

Read only

0 Likes
438

sorry .......that is not related to my questions

Read only

0 Likes
438

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