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: 

Text printing

Former Member
0 Kudos

Hi,

Hi I am facing one problem regarding the fetching of texts in my standard program the code has been written like this

import tline to rt_lines

from database stxl(tx)

client rt_client

id stxl_id

IGNORING CONVERSION ERRORS.

In debugging once if i press F5 button at the above piece of code the rt_lines is populating with 6 records as shown below.

• * |#ord#

• * |#cust#

• .

• .

• MADE IN INDIA.

So I want to check from where the internal table rt_lines is picking MADE IN INDIA. As per requirement I need to change that made in India to made in America only for MY set up so I want to check from which table that 'made in India' is coming or where it is maintained at the transaction level. I have checked stxl stxh also but that made in India was not there in those tables. Please guide me in this I will give points.

Thanks a lot in advance.

1 REPLY 1

Former Member
0 Kudos

if a understood you correctly you want to change

the sentence 'Made in India' into 'Made in America'

and you have a problem with finding this sentence.

I think you can solve it via

loop at rt_lines into rs_line

where rs_line-sentence CS 'INDIA'

rs_line-sentence = 'MADE IN AMERICA'.

update rt_line from rs_line transporting sentence.

endloop.