Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

What are the data types of the external layer?

1106


What are the two levels in defining a match code? : abap data dictionary

1170


What are the functional modules used in sequence in bdc? : abap hr

1174


What is cts and what do you know about it? : abap hr

1278


What are the function modules used to create batch input session? : abap bdc

1248


Explain what are the events used in interactive reports?

1042


What are the user interfaces of interactive lists?

1117


What should be the approach for writing a bdc program? : abap bdc

1210


suppose i want to print sap script output in different printers at a time what are the settings i'll have to make?

2333


What are the screen elements.

1069


Did you use buffering?

1138


In the MM module for finding out the standard cost what is the view one has to look at?

1083


What is a data dictionary? : sap abap data dictionary

1010


What is the difference between skip and reserve?

1250


What are the different types of work process?

1141