cancel
Showing results for 
Search instead for 
Did you mean: 

scripts

Former Member
0 Kudos

what are the symbols used in scripts

Accepted Solutions (1)

Accepted Solutions (1)

0 Kudos

there are 4 types of symbols used sap scripts

1. standard symbols(stored in TTDTG table ex. are &MFG&

2. Program symbols( these are used to out put data from work area to windows)

3. text symbols( these are used(maximum of the cases) when using subroutines in scripts

:/DEFINE &LW_MTART& = ' '.

4.system symbols ( &time& &date& etc&.

if helpful reward points.

Answers (2)

Answers (2)

varma_narayana
Active Contributor
0 Kudos

Hii

In SAP Script layout set we can use the SYMBOLS to print any variable data.

All symbols must be enclosed in &<Sym>&

Based on the Source from where the Symbol gets data the symbols are 4 types.

1. System symbols: Values are assigned by runtime like &PAGE& &DATE& etc

2. Program symbols : Variables of Print program

3. Standard symobls: maintained in DB table TTDTG.

4. Text symobls: created within the layout set using

/: DEFINE &SYM1& = 'INDIA'

you can find all the Symbols in the menu path:

INSERT->SYMBOLS in the Text editor of Text elements .

<b>reward if helpful</b>

Former Member
0 Kudos