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: 

checking authorisation in a table maintenance

Bema
Active Participant
0 Kudos
213

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.

1 ACCEPTED SOLUTION

shishupalreddy
Active Contributor
0 Kudos
176

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

3 REPLIES 3

former_member186750
Contributor
0 Kudos
176

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

shishupalreddy
Active Contributor
0 Kudos
177

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

Bema
Active Participant
0 Kudos
176

Thanks a lot ..