2006 Aug 15 6:31 AM
hi everybody
what is the exact difference between parameter and parameters
2006 Aug 15 6:35 AM
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
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
2006 Aug 15 6:35 AM
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
2006 Aug 15 6:45 AM
2006 Aug 15 6:46 AM
There is no difference.
Regards,
Ravi
Note :Please close the thread if the question is answered
2006 Aug 15 6:37 AM
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.
2006 Aug 15 6:49 AM
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |