In select-options,how to make high as madatory.....?if we use
obligatory we'll get the low as madatory by default?
Answer Posted / anand
There is only one change required in the given code and
that is IF SY-SUBRC eq 0.
Then the code will look like this
At selection-screen.
loop at vbeln where high is initial.
endloop.
IF SY-SUBRC EQ 0.
MESSAGE 'HIGH VALUE CAN NOT BE BLANK' TYPE 'E'.
ENDIF.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What is the different between abap and ooabap? Why do we use ooabap?
What are the events used in abap in the order of execution?
Filter badi and multiple used badi? Will the sequence matter of the badi implementation in case of multiple used badi?
What are client dependant objects in abap/sap?
Which transaction code can I used to analyze the performance of ABAP program.?
What are the types of the software component being deployed in the sap?
What functions does a data dictionary perform? : abap data dictionary
when does a list get sent to the screen on the presentation layer?
Differentiate between transparent tables, cluster tables and pooled tables
what is the exact code that shoud be implimented in sap note
there are 2 selection screens. material num in screen 200 and plant in screen 300. so how can you write in INITIALISATION event?
What is hotspot?
How to find the return code of a statement in abap programs?
On which event we can validate the input fields in module programs?
Explain how is batch input process different from processing on line?