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 |
Interactive Report that list purchase order details of a vendor. When the user double clicks on material number it shows detail list with fields matkl, meins, brgew, ntgew, gewei.The selection screen consist of sales organisation, distribution channel and material number. plz mention the detail coding Tahnks, Rahul
What is elementary search help? : sap abap data dictionary
How would you debug custom programs at runtime?
What are different abap/4 editors?
what is abap token?
differences b/w primary indexes and secondary indexes
What is table maintenance generator?
what is the difference between bdc and lsmw?
What will be your approach towards optimizing legacy code? Will you suggest change in technology? Does OO ABAP bring any performance benefits? How will you deal with queries in a loop? How will you optimize nested loops?
Can we create a search help for a particular user ? if yes..How ?
Different types of luws. What are they?
what is the way to precide search helps in POV?