What is the difference between select options and parameters
Answer Posted / jagadish
parameter : 1) parameter is a key word which is used to accept the single value at run time.
2).without input value we cannot execute the parameters.
3).name of the parameter should not exceed 8 characters.
syntax: Parameters : p_a type I.
to pass the default values to the parameter
parameters : p_a type I default value 10.
to make the parameter value as mandatory we have to use the obligatory keyword.
parameters : p_a type I obligatory.
NOTE: we cannot write floating type values under parameter.
DATA : A type I,
B type I,
C type I.
parameters :P_ A type I DEFAULT 100, * obligatory
P_B type I DEFAULT 200.*obligatory
A=P_A.
B=P_B.
C=A+B.
write C.
Select-option : select option is a keyword which is used to accept single value,multiple single values,ranges,multiple ranges at run time
syntax: DATA : L_VBELN TYPE VBELN_VA.
select-options: S_VBELN for L_VBELN.
whenever we create a select option sysytem will create a internal table with header line with 4 fields.it will used to select and deselect the ranges.
LOW,SIGN,HIGH,OPTION.
name of the select option doesnt increse 8 characters.
NOTE : with out input value we can select options and it will fetch the entire data of the table..
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What are the types of subroutines? : abap data dictionary
How do you process errors in session method ? : abap bdc
What is the use of dequeue function module? : sap abap data dictionary
Explain the advantages of logical databases?
What is sap abap tables?
what is abstract classes
How we can retrieve data using secondary index. Explain with simple example?
any 1 having notes on SAP-ABAP certification, or even if any 1 could provide the url for getting notes on SAP-ABAP certification, would be appreciated.
why particularly lock object name starts with EZ OR EY?
What will happen when we use single buffered selected?
what is a text table ?
How do you get the number of lines in an internal table? How to use a specific number occurs statement?
How can we access the correction and transport system? : abap data dictionary
1 . how do u design technical documentation in abap ? 2 . what u currently devloped in sap abap ?
What is its? : abap hr