cancel
Showing results for 
Search instead for 
Did you mean: 

hi

Former Member
0 Kudos

Hi friends

in scripts we find tag column i.e. for format keys like /, , /:, =, / e.t.c.

could any of you explain me in detail

plz

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

The tag indicates the type of statement ie

if write comment use /*

control commands /E

default para *

line continuation =

press f4 on tag, it list out all command types

Narendra

Former Member
0 Kudos

Hi Syam,

Some of the tag columns are explained below:

= - Suppose the text which ur specifying in the editor may not fit in a single line. In that case give an = and specify the rest of the text.

For Ex:

T2 ,,Location:&v_bcode(C)&,,Room:&v_room(C)

= &v_colu&,,<CC>Complete:</>

Here the two lines will be printed as a single line in the form.

/ - This will leave a blank line in the form.

/: - This is used to specify for conditions and Box statements

For ex:

/: BOX FRAME 10 TW

/: IF V_STTXT2 IS NOT INITIAL.

TS ,,&v_sttxt2&

/: ENDIF.

/ - This is similar to * in the which we use in report program. Use to comment a line.

/E - This text element will make the variables used in the print program to be visible in the form.

For Ex:

In se38 program:

LOOP AT iafvgd.

  • Using Write_Form for values Visibility in SAP Scripts.

PERFORM write_form USING 'OPER'

'MAIN'.

END LOOP

In SAP SCRIPT:

/E OPER

plz award points if useful

Thanks,

karthik