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

Sapscript data declaration

Former Member
0 Likes
1,037

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
Read only

Former Member
0 Likes
449

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

Read only

Former Member
0 Likes
449

/: DEFINE &gv_var& = 'v5'