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

Parameters???

Former Member
0 Likes
429

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!!

1 ACCEPTED SOLUTION
Read only

dev_parbutteea
Active Contributor
0 Likes
403

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

2 REPLIES 2
Read only

Former Member
0 Likes
403

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.

Read only

dev_parbutteea
Active Contributor
0 Likes
404

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