Hello Experts,
I am doing a screen exit in po creation in me21n . there i have created a custome screen and insidethat i put a field.
And works fine. but the problem is when ever i am going to me23n and giveing that po no, my custome field is comming in editable mode? Any solution?
here is my code what i have written in PBO MODULE.
module STATUS_0101 output.
* SET PF-STATUS 'xxxxxxxx'.
* SET TITLEBAR 'xxx'.
DATA : W_TRTYP LIKE T160-TRTYP.
IF W_TRTYP = 'A'. "A is a display mode
LOOP AT SCREEN.
IF SCREEN-NAME = 'WA_EKKO_CI-ZZREGIO'."Keep your screen fieldname here
SCREEN-INPUT = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.
endmodule.