cancel
Showing results for 
Search instead for 
Did you mean: 

Small Question Scripts

Former Member
0 Kudos

Hi,

Can anyone plz explain me what does

/E mean when we write code in editor

In main window we have 520 530 .....580.what does those mean

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

/E is nothing but Text Element

Text Elements

Any text that needs to be written on the output document should be placed within a text element. This includes constant text as well as variable data like internal table data coming from the ABAP program.

It is advisable to group logically related data within one text element.

The fields of various tables defined in the ABAP program will be included under these text elements. These fields are carriers of data. Every field should be included in a pair of & characters. (e.g. &aufk-aufnr&)

valter_oliveira
Active Contributor
0 Kudos

Hello.

/E means element. For example, /E 520, means element 520. It's like a write block in your script. Everything that is after that /E and before the next one, belongs to that block.

In the print program, you will have a FM WRITE_FORM, element 520. That means, you will print what is in /E 520 in your script.

Hope this helps you.

Best regards.

Valter Oliveira.