I want to disable a field in selection screen so that it
does not appear while displaying.How can i do that?wat wud
be the code?
Answers were Sorted based on User's Feedback
Answer / kubera
FOR EX:
PARAMETERS: LIFNR like LFA1-LIFNR MODIF ID 'ABC'.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-GROUP_NAME = 'ABA'.
SCREEN-INPUT = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Is This Answer Correct ? | 12 Yes | 3 No |
Answer / rinzy deena mathews
PARAMETER p_vbeln TYPE vbeln MODIF ID m1.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-group1 = 'M1'.
screen-active = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Is This Answer Correct ? | 4 Yes | 1 No |
What is an “on request field” statement?
How to maintain Transport Request?
What are the prerequisites for creating foreign key relationship?
1.The three ways in which we can write in top-of-page? 2.While creating function module what other things are created? 3.what is parameter id? 4.difference between synchronous and asynchronous methods? 5.Types of function modules? 6.conversion routine? 7.check table and value table difference? 8.text table? 9.types of cardinality 10.Whic is better joining or for all entries?
what are the various types of parameters and how are they distinguished from one another?
25) Can we create more than one main window in smartforms?
difference between user exit and customer exit dont tell both are same but there is another difference is there if anybody knows reply immediately
In Data Types.,Packed p?
There is a delivery that is being created through the ABAP code and in the middle it says delivery created but someone is modifying , how would you rectify this issue
hi this is ramu.my question is :set-screen,call-screen and leave screen differences and when we use those statement while implimenting code.please help me .iam in trails now..
What is locking ?
What Is Roll Area In ABAP?