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

what is the difference between parameter and parameters

Former Member
0 Likes
1,007

hi everybody

what is the exact difference between parameter and parameters

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
891

I am not sure in which context you are asking.

PARAMETERS is a key word to declare parameters for the report's selection screen.

The same term is also used in the context of subroutines / function modules / methods-classes.

Regards,

Ravi

Note :Please mark all the helpful answers

hi everybody

what is the exact difference between parameter and parameters

5 REPLIES 5
Read only

Former Member
0 Likes
892

I am not sure in which context you are asking.

PARAMETERS is a key word to declare parameters for the report's selection screen.

The same term is also used in the context of subroutines / function modules / methods-classes.

Regards,

Ravi

Note :Please mark all the helpful answers

Read only

0 Likes
891

i am asking interms of selection screen only

Read only

0 Likes
891

There is no difference.

Regards,

Ravi

Note :Please close the thread if the question is answered

Read only

aris_hidalgo
Contributor
0 Likes
891

Hi,

As far as selection-screens are concerned, the word PARAMETERS and PARAMETER is the same. I just tried it. Below is an example:

**PARAMETERS**

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.

PARAMETERS: p_bukrs TYPE t001-bukrs OBLIGATORY,

p_asof TYPE bsis-budat OBLIGATORY,

p_year TYPE bsis-gjahr OBLIGATORY.

SELECT-OPTIONS: s_hkont FOR bsis-hkont NO INTERVALS OBLIGATORY.

SELECTION-SCREEN END OF BLOCK b1.

**PARAMETER**

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.

PARAMETER: p_bukrs TYPE t001-bukrs OBLIGATORY,

p_asof TYPE bsis-budat OBLIGATORY,

p_year TYPE bsis-gjahr OBLIGATORY.

SELECT-OPTIONS: s_hkont FOR bsis-hkont NO INTERVALS OBLIGATORY.

SELECTION-SCREEN END OF BLOCK b1.

Hope this helps...

P.S. Please award points for useful answers by clicking on the star on the left.

Read only

abdul_hakim
Active Contributor
0 Likes
891

Hi

basically there are no difference.

Cheers,

Abdul Hakim