2007 Jun 26 11:30 AM
Hi All,
Is there any way to define text symbols in SAP Scripts without using DEFINE command.
Regards,
Sai
2007 Jun 26 11:36 AM
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
2007 Jun 26 11:32 AM
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
2007 Jun 26 11:36 AM
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