‎2008 Jan 17 8:16 AM
Hello!
I'm a beginner in ABAP. How can I write short instruction for users over PARAMETERS? Is there smth. like Label in Java? If I write for example WRITE: /......., it appears after I have written smth. in PARAMETERS.
Thanks!!
‎2008 Jan 17 8:27 AM
Hi,
selection-screen begin of block sel with frame title text-001. " Enter frame title in text-001
SELECTION-SCREEN COMMENT /1(30) text-002." Enter comment in text-002
PARAMETERS: param1 type mara-matnr.
selection-screen end of block sel.
Sooness.
Edited by: Sooness Munogee on Jan 17, 2008 9:28 AM
‎2008 Jan 17 8:27 AM
Hi,
Please find below the sample code.
Sample code for using parameters
REPORT ytest.
PARAMETERS input(30) TYPE c DEFAULT 'This is to test parameter'.
WRITE input.
Pls do reward if useful.
Regards,
Farheen.
‎2008 Jan 17 8:27 AM
Hi,
selection-screen begin of block sel with frame title text-001. " Enter frame title in text-001
SELECTION-SCREEN COMMENT /1(30) text-002." Enter comment in text-002
PARAMETERS: param1 type mara-matnr.
selection-screen end of block sel.
Sooness.
Edited by: Sooness Munogee on Jan 17, 2008 9:28 AM