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

Texting in Sapscript

Former Member
0 Likes
497

Hi develeopers,

I'm modifying a Sapscript and I have to display a field &field_name& that is filled with a percentage.

This field is a CURR of 11 and I don't want to show all the field like 15,000%, but only the percentage

15% without zeros.

How can I do that? May be this is a really silly question but I'm a beginner!!

Thanks,

Simone

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
456

&symbol(Z)&--->Remove leading zeros

&symbol(.N)&

&symbol(I)&

Try any of these.

Regards,

Gurpreet

2 REPLIES 2
Read only

Former Member
0 Likes
457

&symbol(Z)&--->Remove leading zeros

&symbol(.N)&

&symbol(I)&

Try any of these.

Regards,

Gurpreet

Read only

0 Likes
456

Problem solved... the correct one was (.N)

Thanks!!

Simone