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: 

Disbaling a standard table column

Former Member
0 Kudos

Hi,

How can I disable (grey) the column u201Chigher-level itemu201D (VBAP-UEPOS) of the sales table (Tx- VA01, VA02)?

Thanks in advance,

Ricard.

1 ACCEPTED SOLUTION

GauthamV
Active Contributor
0 Kudos

hi,

u can achieve this with functional configuration.

or u can use transaction variant using shd0 transaction.

or u can use any exit to disable tht field.

3 REPLIES 3

Former Member
0 Kudos

Hello,

You need to find out a Screen Exit where you can disable the required field.

Thanks and Regards,

Venkat Phani Prasad Konduri

GauthamV
Active Contributor
0 Kudos

hi,

u can achieve this with functional configuration.

or u can use transaction variant using shd0 transaction.

or u can use any exit to disable tht field.

Former Member
0 Kudos

hi

you can go in for Generate the Table maintenance in SE11.

You will mention the Function Group and screen number.

So use the Function group and go to se80, and change the screen

in that screen in PBO you can use the logic to make it Disable using the LOOP AT SCREEN.

if authorization check fails

LOOP AT SCREEN.

if screen-name = 'XYZ'.

screen-input = 0.

modify screen.

endif.

ENDLOOP.

endif.

But careful when you are regenerating the Tablemaintenace, it will be deleted. So again you need to add the logic the screen inorder to make the fields disable