Application Development 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: 

How to call printer dialog box out

Former Member
0 Kudos

Hi,

Is there anyone out there know how to call out printer dialog in the program?

Thanks.

4 REPLIES 4

Former Member
0 Kudos

Hi Ong,

For your requirement you have to call FMs:

OPEN_FORM (SAPscript: Open form printing)

The module OPEN_FORM opens layout set printing. This function must be called up before you can work with other layout set functions (WRITE_FORM, ...).

WRITE_FORM(SAPscript: Output text element in form window)

Close_FORM

After calling these FMs serially as described above:

You ll able to out printer dialog in the program

Hope it helps.

Regards

Amit

Please reward the points if any replies helps you.

Former Member
0 Kudos

Hi,

You can use the function module

'GET_PRINT_PARAMETERS'.

It will give you the pop up to enter print options.

Thanks & Regards,

Siri.

Former Member
0 Kudos

Ong,

Welcome to SDN !!!

Use GET_PRINT_PARAMETERS function module. This Fun

Module presents the user with the standard R/3 popup

window for collecting printer and optical archiving

specifications.

Thanks

Kam

Former Member
0 Kudos

Hi All,

Thanks for your help on that. It is very useful!

Once again, thanks.