Which keyword is used to making select option or parameter mandatory in SAP?
Table of Contents
SELECT-OPTIONS is a keyword used in SAP ABAP programming.
What are the different types of selection options SAP ABAP?

Select-Options functionality in SAP ABAP OPTIONS: This field can accept values BT (Between), NB (Not Between), EQ (Equal), NE ( Not equal), GT ( Greater than), LT ( Less than) . LOW: This field stores a low value of entering the range. HIGH: This field stores a high value of entering the range.
What are the various four parts of select option?
when we declare select-options , automatically an internal table will be created by the system with the 4 fields as sign , option , low and high.
What is the difference between parameters and select options in ABAP?
The main difference between parameters and select options lies in the data selection. In case of a parameter, if the selection screen field is left blank, then no data is selected on the other hand if the select option is left blank then, all the data from db is selected.

What is the use of obligatory in SAP ABAP?
This addition defines the input field of the parameter on the selection screen as a required (obligatory) field. If no entry is made in this field, the user cannot use the Execute function (F8) to exit the selection screen; instead, the user can only use the functions Back, Exit, or Cancel.
How do I set default value in SELECT option in SAP?
To assign default values to a selection criterion, you use the following syntax: SELECT-OPTIONS seltab FOR f DEFAULT g [TO h ]…….Default Values for Selection Criteria
- To fill only the low field (single field comparison), use:
- To fill the low and high fields (range selection), use:
What is CP in SELECT options in SAP?
The selection options “CP” and “NP” can be selected only if the first input field contains one of the wildcard characters “*” or “+”. “+” masks a single character, “*” masks any character string, even an empty one. If one of these characters is entered, the selection option is automatically set to “CP”.
How do I make a screen field mandatory in ABAP?
You can use the addition ‘OBLIGATORY’ to make a selection screen field mandatory while declaring the same.
What is selection parameter SAP?
April 21, 2016. Aside from the general meaning of ‘Selection Parameters’ referring to all report selection fields, on many of the standard list display reports in SAP there is a specific field named ‘Selection Parameters’ as shown below. This field allows you to specify the status of the documents you’re reporting on.
How do I set a default parameter in SAP ABAP?
Set default values on selection-screen using INITIALIZATION event in SAP ABAP programming
- Set Default values for parameters using INITIALIZATION.
- Set default values for Select-Options using  initialization event.
- Set Default values for check box and radio buttons group.
- The final code will be.
Do you need obligatory parameters in your ABAP selection screen?
Almost every ABAP developer comes to a point where they require obligatory parameters along with user command logic in their selection screens. As you might already know, that’s a problem.
How to make select-options mandatory in the selection screen?
In order to make select-options mandatory we add OBLIGATORY in the statement like the below. Selection-Screen. Select-Options : v_PurOrg for EKKO-EKORG default ‘2000’ OBLIGATORY.
How to make select options mandatory in Ekko-ekorg?
If you have a different answer for this question, then please use the Your Answer form at the bottom of the page instead. In order to make select-options mandatory we add OBLIGATORY in the statement like the below. Selection-Screen. Select-Options : v_PurOrg for EKKO-EKORG default ‘2000’ OBLIGATORY.
Why is the selection screen broken by obligatory parameters?
Because obligatory parameters demand input on every action of user and interfere with user command logic, which results in a broken selection screen. Let’s see an example. PARAMETERS p_bukrs TYPE t001-bukrs OBLIGATORY.