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

Dunning Standard text dynamic values

VijayCR
Active Contributor
0 Likes
1,525

Hello Experts,

                I have maintianed a dunning text for body of dunning letter in so10 transaction with text ID FIKO.I have given a dynamic varaible &name& but the same vaiable is filled in the script for the logo.So instead of the dynamic text i am getting the logo name.Let me know how i can find the where the name variable filled.And i can check in debugging that its happening in  some conversion in FM

  CONVERT_ITF_TO_ASCII.

Thanks,

Vijay.

Hello Experts,

                I have maintianed a dunning text for body of dunning letter in so10 transaction with text ID FIKO.I have given a dynamic varaible &name& but the same vaiable is filled in the script for the logo.So instead of the dynamic text i am getting the logo name.Let me know how i can find the where the name variable filled.And i can check in debugging that its happening in  some conversion in FM

  CONVERT_ITF_TO_ASCII.

Thanks,

Vijay.

3 REPLIES 3
Read only

Venkat_Sesha
Product and Topic Expert
Product and Topic Expert
0 Likes
959

Ok good.

Where were you passing the &variable& data to the Script.

Is that passed by a Script Command code or In-program code.

Did you tried to debug the script and see the data passed to that variable.

One more thing is that. you know these Images or Barcodes in SAP Scripts depends on Printers.

So you should also see the Print Commands in SPAD Printer Devices.

Hope this helps

Read only

0 Likes
959

I am actually passsing the varaible before the script is called that is in the exit 00001040.But its overwriting the variable in script that is &Name& which is used for some other pourpose.

Thanks,

Vijay.

Read only

Venkat_Sesha
Product and Topic Expert
Product and Topic Expert
0 Likes
959

oh ok.

So did you tried going to the Script where the variable is getting override.

Goto RSNAST00 and put a break point at line number around 900(may differ from sys to sys). you will find this code

   PERFORM (TNAPR-RONAM) IN PROGRAM (TNAPR-PGNAM) USING RETURNCODE
                                                         US_SCREEN

Put a break point here and execute the Output type via RSNAST00. to see where and how the data is getting changed.

Hope this helps