Hi , What is diffrent between The Range and Selection Screen

Questions by skarief3

Showing Answers 1 - 15 of 15 Answers

mrudula

  • Dec 13th, 2006
 

In range we will not get the selection screen.



In select-option will generate selection screen.

  Was this answer useful?  Yes

vijay

  • Dec 14th, 2006
 

in ranges user has to maintian internal table explicitly where as in select-options system automatically defines internal table and the name of itab is nothing but the variable used in the select options.ex: select-options: vendor for lfa1-lifnt..system implicitly creates itab name vendor with fields : high,low,option,sign.i think my awnser is clear.all the best

  Was this answer useful?  Yes

suresh babu

  • Dec 16th, 2006
 

In SELECT-OPTIONS we can specify the data range at RUNTIME...

but in RANGES its EXPLICITLY given by the programer...

there is no selection screen will appear in runtime

  Was this answer useful?  Yes

Azmath

  • Dec 21st, 2006
 

Hi friend,

  Let me explain in simple words...

  Ranges and Selection-Options are technically have the same structure.  But the difference is select-options get displayed on the selection-screen, where user can input range of values but ranges have to be assigned with in the program. 

  Ranges mainly used when you call some other program by using SUBMIT statement.  When you call a program dynamically you should supply selection parameters to that program.  So suppose if the called program is having select-options then you can pass ranges of the calling program.

  Was this answer useful?  Yes

Guest

  • Jan 8th, 2007
 

Range and Select-options both provides the range for the input. There is a difference B/T both.

Range: While using range we need to provide the range parameters explicity in the program.By which it gives the output.

Select-options: This is a advanced version of ranges. An internal table will be generated when you provide this options with four fields called Low-High-Sign-Option. Through which it gives us the selection screen after we execute the program to enter the input.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions