2007 Mar 02 9:53 AM
Hi,
I need to print the text thats displayed in a custom area. Its added to a custom container. Can anyone help me out to do this?
Thanks
Lilan
2007 Mar 02 9:58 AM
Hi
U should create an abap list and print it, so a possible code could be:
* Leave the MODULE POOL
LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN <SCREEN>.
* Create a new page to be printed immediataly
NEW-PAGE PRINT ON.
* Create the list
WRITE: 'TEXT'.
* Back to MODULE POOL
LEAVE LIST-PROCESSING. Try and let's know the result
Max
2007 Mar 02 9:58 AM
Hi
U should create an abap list and print it, so a possible code could be:
* Leave the MODULE POOL
LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN <SCREEN>.
* Create a new page to be printed immediataly
NEW-PAGE PRINT ON.
* Create the list
WRITE: 'TEXT'.
* Back to MODULE POOL
LEAVE LIST-PROCESSING. Try and let's know the result
Max
2007 Mar 06 11:11 AM
Hi,
This method calls the screen where you need to choose the printer. Is there anyway which that screen can be bypassed as well?
Thanks
Lilan