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

text symbols

Former Member
0 Likes
479

Hi All,

Is there any way to define text symbols in SAP Scripts without using DEFINE command.

Regards,

Sai

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
456

Hi,

No, there is no other way. The only way to define text symbols is through DEFINE statement.

Define is a control command which is used to define text symbols that can be used in sap scripts.

The text symbols are declared and assigned to within the SAPscript code.

/: DEFINE &V_FNAME& = ‘Sai’

/: DEFINE &V_LNAME& = 'Prasad'.

Hope this helps.

Regards,

Kate

Hi All,

Is there any way to define text symbols in SAP Scripts without using DEFINE command.

Regards,

Sai

2 REPLIES 2
Read only

Former Member
0 Likes
456

Hi

No

You can define only using DEFINE statement

Text symbols

A text symbol is declared and assigned to within the SAPscript code, and so obviously applies only to the current document. The command DEFINE is used, requiring /: in the tag column, as in the following examples.

/: DEFINE &COMP_NAME& = ‘University of Warwick’

/: DEFINE &WS_RATE& = &TAX_SUMM_C&

Reward points for useful Answers

Regards

Anji

Read only

Former Member
0 Likes
457

Hi,

No, there is no other way. The only way to define text symbols is through DEFINE statement.

Define is a control command which is used to define text symbols that can be used in sap scripts.

The text symbols are declared and assigned to within the SAPscript code.

/: DEFINE &V_FNAME& = ‘Sai’

/: DEFINE &V_LNAME& = 'Prasad'.

Hope this helps.

Regards,

Kate