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: 

Making field of standard tcode "Output only"

Former Member
0 Kudos

Hi,

I want to change the total quantity field on transaction COR1 as "output only".

plz suggest should i do it by SHD0 or any enhancement???

the package is CO.

Below is the screenshot

1 REPLY 1

Former Member
0 Kudos

Hi,

This can be done using Enhancement.

Just get the related screen number of the Transaction COR1 via SE80 and there at PBO screen, find the relevant exit OR simply create Implicit Enhancement with the modify screen logic as below:

LOOP AT SCREEN.

IF SCREEN-<relevant field> = <abc>.

SCREEN-INPUT = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

Regards,

Suren.