2009 Jun 09 4:20 AM
Hi ,
I have created a table maintenance with two step for a Ztable. Created a tcode also with SHOW 'X'. Still I have the 'Change' icon in the transaction . Is there any way to create the tcode only with display. It should not be changed by anyone. The table isupdating thru a Z program.
Appreciate your help.
Regards,
Beena.
2009 Jun 09 5:04 AM
Hello
Try this..
In the PBO before the module LISTE_INITIALISIEREN..
Create a new PBO module..
Then in that new module then in the internal table EXCL_CUA_FUNCT add an entry with the row DELE..Like the following.
EXCL_CUA_FUNCT-FUNCTION = 'DELE'. <Provide the correct Ok code of Change Button ">
APPEND EXCL_CUA_FUNCT.
U can disable the button it self ...
Regards
2009 Jun 09 4:45 AM
Beena,
Create a transaction for your table maintenance of type 'Transaction With Parameters'. Under default values enter SM30 and tick Skip Initial Screen. Now, at the bottom of the screen under 'Default Values' enter the following:
Name of screen field Value
VIEWNAME <your table maintenance name>
SHOW X
This will allow the user to look at the table in display mode only.
Regards,
Neil.
Sorry, I didn't read your thread correctly. Just realised you are already doing this. One question though, have you set the 'skip first screen' flag?
Edited by: Neil Gardiner on Jun 9, 2009 1:57 PM
2009 Jun 09 5:04 AM
Hello
Try this..
In the PBO before the module LISTE_INITIALISIEREN..
Create a new PBO module..
Then in that new module then in the internal table EXCL_CUA_FUNCT add an entry with the row DELE..Like the following.
EXCL_CUA_FUNCT-FUNCTION = 'DELE'. <Provide the correct Ok code of Change Button ">
APPEND EXCL_CUA_FUNCT.
U can disable the button it self ...
Regards
2009 Jun 09 6:11 AM