‎2008 Apr 14 3:17 PM
Hello I have the following structure of code
Report xyz...
Include xyz..Top
And now where must be this line placed ?
AT SELECTION-SCREEN ON VALUE-REQUEST FOR PARAMETER pa_myfield .
If I place it after Include
I get the error message
. expected after "PARAMETER"
What is wrong?
Regards
ertas
‎2008 Apr 14 3:21 PM
hi,
this is the syntax
AT SELECTION-SCREEN ON VALUE-REQUEST FOR pa_myfield .
regards,
priya
‎2008 Apr 14 3:20 PM
It's ok, try it this way
AT SELECTION-SCREEN ON VALUE-REQUEST FOR pa_myfield .
without 'parameter'
‎2008 Apr 14 3:21 PM
hi,
this is the syntax
AT SELECTION-SCREEN ON VALUE-REQUEST FOR pa_myfield .
regards,
priya
‎2008 Apr 14 3:23 PM
hi,
no need of specifying the PARAMETER keyword
AT SELECTION-SCREEN ON VALUE-REQUEST FOR
pa_myfield .
Regards,
Padmasri.
‎2008 Apr 14 3:28 PM
Hi,
You can place it before or after include, but you need to change the code as below:
AT SELECTION-SCREEN ON VALUE-REQUEST FOR a_myfield .
Thanks,
Sriram Ponna.