Application Development 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: 

Sapscript data declaration

Former Member
0 Kudos

Experts!!

help me, how to declare data in sapscript form.

I want to declare this in my sapscript form(window text element).

&gv_var& = 'v5'.

how would I do that?

Please help me..

2 REPLIES 2

Former Member
0 Kudos

Hi

using the DEFINE command you can define the variable

/: DEFINE &WS_RATE& = &TAX_SUMM_C&

here you are moving the &TAX_SUMM_C& value into a defined variable

&WS_RATE&

Regards

Anji

Former Member
0 Kudos

/: DEFINE &gv_var& = 'v5'