2007 Sep 19 8:06 AM
I would like to know Is there any FM exist in SAP to findout the no. of Printers connected to SAP sytem.And FM to know the status of the printer .
2007 Sep 19 12:25 PM
Hi,
check the FM RSPO_LIST_PRINTERS
and give the import parameter as LETTER. U can get the list of printers available for your client. or Check TSP06A or TSP03 tables.
Regards
Kannaiah
2007 Sep 19 12:17 PM
Hi,
I don't know if there's a function module but you could use table TSP03 to get the required information.
Regards
Nicola
2007 Sep 19 12:25 PM
Hi,
check the FM RSPO_LIST_PRINTERS
and give the import parameter as LETTER. U can get the list of printers available for your client. or Check TSP06A or TSP03 tables.
Regards
Kannaiah
2007 Sep 19 12:35 PM
Thanks for ur valuable information.
Do u know any FM which shows the status of the Printer(means wheather it is busy or free at the time of triggering any print command to printer)?
2007 Sep 19 12:55 PM
Hi,
in table TSP03 check field PASTATUS. It contains a hex value.
Here is the explanation:
02 -> printer is disabled
04 -> printer not active
08 -> printer is active
10 -> printer is faulty
Table TSP03C contains additionally field PADISABLED, which means printer disabled.
Hope that helps -sorry that I don't know a FM for you!
Regards
Nicola
2007 Sep 19 1:14 PM
Thanks for ur immediate response. ya,I can able to find the Printer status by using TSP03 table.while it showing status 0,32,40..
your answer useful for me...