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: 

Is there any Function module to find out no. of printers connected to SAP .

Former Member
0 Kudos

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 .

1 ACCEPTED SOLUTION

Former Member
0 Kudos

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

5 REPLIES 5

Former Member
0 Kudos

Hi,

I don't know if there's a function module but you could use table TSP03 to get the required information.

Regards

Nicola

Former Member
0 Kudos

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

0 Kudos

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)?

0 Kudos

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

0 Kudos

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...