Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Difference between parameters and nointervals no-extension

Former Member
0 Likes
557

Hello Experts,

Can any body Explain me, What is the Difference between Parameters and Nointervals no-extension.

Please Explain me Briefly.

Thanks & Regards,

Prasad.Tallapudi.

1 ACCEPTED SOLUTION
Read only

b_deterd2
Active Contributor
0 Likes
450

Hi,

There is basically no difference between PARAMETERS and a SELECT-OPTION with the additional NO INTERVALS NO EXTENSION.

The only difference is dat PARAMETERS is a variable whereas SELECTION-OPTION is an internal table. In a select statement with a select-option you use IN .

Regards. Bert

2 REPLIES 2
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
450

The difference between using a PARAMETERS and using a SELECT-OPTION with NO INTERNVALS and NO EXTENSION, is that when using the PARAMETER you would use the = in your SELECT statement, which means that you would have to have some value entered. When using the SELECT-OPTION, you use the IN operator in your SELECT statement, and you would not need to enter a value in the selection-screen, if you do not enter a value, you would get all entries from the DB, because even though it looks like a parameter, it is still a SELECT-OPTION and will behave this way.

Regards,

Rich Heilman

Read only

b_deterd2
Active Contributor
0 Likes
451

Hi,

There is basically no difference between PARAMETERS and a SELECT-OPTION with the additional NO INTERVALS NO EXTENSION.

The only difference is dat PARAMETERS is a variable whereas SELECTION-OPTION is an internal table. In a select statement with a select-option you use IN .

Regards. Bert