0% found this document useful (0 votes)
32 views1 page

Program

The document defines parameters and variables for a simple ABAP program. It includes selection screen parameters and radio buttons for user input as well as internal variables for processing.

Uploaded by

WOFO
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views1 page

Program

The document defines parameters and variables for a simple ABAP program. It includes selection screen parameters and radio buttons for user input as well as internal variables for processing.

Uploaded by

WOFO
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

A SIMPLE PROGRAM .

PROGRAM NO 1.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
PARAMETERS p_x TYPE i DEFAULT 10 OBLIGATORY.
PARAMETERS p_y TYPE i DEFAULT 20 OBLIGATORY.
SELECTION-SCREEN end of BLOCK b1.
data p_z type i.
data lv_type type string.
data lv_length type string.
data lv_count type string.
data lv_fun type string.
data lv_text type string.
data lv_len type string.

PARAMETERS p1 TYPE c RADIOBUTTON GROUP g1 USER-COMMAND u1.


PARAMETERS p2 TYPE c RADIOBUTTON GROUP g1 .
PARAMETERS p3 TYPE c RADIOBUTTON GROUP g1 .
PARAMETERS p4 TYPE c RADIOBUTTON GROUP g1 .
PARAMETERS p5 TYPE c RADIOBUTTON GROUP g1 DEFAULT 'X'.

You might also like