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 are control commands in Scripts?
How to print continuous pages in smartform?my requirement is i need to print 3 pages for each customer i.e 2 pages for purchase order forms and 3rd page is terms and condition page.Likewise how can i print 100 customer pages at once continuously?
What are the data types of the abap/4 layer? : abap data dictionary
can anyone told me name of abap interview question book with autor name?
Performance techniques?
What are the disadvantages of abap query tool?
What are the two levels in defining a match code ?
In BDC,i have 3 transaction and one flat file with data for all those 3 transaction requires........i want to process these 3 transaction at a time using that single flat file,if 3rd transaction fails to upload the record,can we roll back the remaining 2 transaction or we can't?Is it possible in BDC,How?
java script for push button in adobe forms.
What is the function of the transport system and workbench organiser? : abap data dictionary
How to move the even records of one internal table to other
When a function module is activated syntax checking is performed automatically. State yes or no. : abap modularization