‎2007 Mar 23 9:02 AM
Hi,
I would like to know if there is any system variable (or something similar) which stores the default printer when a user execute a Report. I need to fill a parameter with it and gave the user the chance to change it.
Thanks in advance.
‎2007 Mar 23 9:04 AM
You can get the User's defaulr printer from USR01 table.
select single SPLD into v_spld where BNAME = sy-uname.
write:/ v_spld.
Regards,
Ravi
‎2007 Mar 23 9:04 AM
You can get the User's defaulr printer from USR01 table.
select single SPLD into v_spld where BNAME = sy-uname.
write:/ v_spld.
Regards,
Ravi
‎2007 Mar 23 9:08 AM
select single SPLD from USR01 into v_print where bname eq <USER_NAME>.
You can also check in SU01 transaction , in defaults tab
‎2007 Mar 23 9:20 AM