‎2006 Aug 28 11:12 AM
Hello together.
In the past I have made a little tool to lock all printers in a SAP 4.7 Enterprise System. (in a Test-System).
So and there is a problem. If I lock the printers manuelly (in transaction "spad") it is workling well.
But when I want to change the attributes in the table
TSP03D column - PADISABLED (with a little ABAP) it isn't working, although in both cases there are the same entries in the table TSP03D.
I hope someone can help me.
SELECT * FROM TSP03D.
TSP03D-PADISABLED = 'X'.
MODIFY TSP03D.
WRITE: / TSP03D-NAME, 'locked!!!'.
ENDIF.
.
.
.
.
endselect.
Thank you.
Christian
‎2006 Aug 28 5:10 PM
Hi Christian,
there are two tables (TSP03C, TSP03D). Perhaps you
have to update both.
Be careful with hard-update, i think
it's better to make and BTCI.
Regards, Dieter
‎2006 Aug 29 11:15 AM