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

Variable value truncation inSAPScript

Former Member
0 Likes
474

Hi all,

I am calling a perform from the SAPSCript with a changing variable.In the perform the variable is concatenated with different values.

But on checking the layout the value is shown truncated.I checked the values in debug mode to find the entire value in the program and also in the itcsy structure while passing the value from the perform to sapscript.

But when checked in the debug mode of the sapscript the value comes out to be trimmed.The value fits in the 255 maximum characters of the itcsy structure.

Any ideas why its trimmed in the sapscript while passed entirely by the program.

Pls help.

Thanks,

stock

3 REPLIES 3
Read only

Former Member
0 Likes
446

Hi,

In script I think each line will take not more than 132 charcters.

So may be 132 and 133 characters are getting trimemdup together.

so while passing from program itself, split the lines of text into not more than 132 characters and see, whether it comes correctly or not. Or try to reduce it further and see.

reward points if useful

regards,

ANJI

Read only

0 Likes
446

Hi,

I checked on the characters and 81 characters are displayed, while the value is of 94 characters.

Is 81 the maximun a line can take ?

Pls help.

Thanks

Stock

Read only

Former Member
0 Likes
446

Hi,

Try this way &field(99)&

Regards

Sudheer