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

data in iw33

Former Member
0 Likes
1,259

hello guys,

I am doing a sapscript report, and I need to show some data wich is shown in transaction IW33. If you open iw33 you will a see a button next to description, this button shows and hides some long text.

I can't find where that long text is stored, and how to read it. I think is something about a special function to read it, but can't find how.

thanks,

Javier

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,031

HI,

Use READ_TEXT function module.

Thanks

Mahesh

hello guys,

I am doing a sapscript report, and I need to show some data wich is shown in transaction IW33. If you open iw33 you will a see a button next to description, this button shows and hides some long text.

I can't find where that long text is stored, and how to read it. I think is something about a special function to read it, but can't find how.

thanks,

Javier

4 REPLIES 4
Read only

Former Member
0 Likes
1,032

HI,

Use READ_TEXT function module.

Thanks

Mahesh

Read only

0 Likes
1,031

how do I use this function? what do the following fields mean in the function? id, name, object

Read only

0 Likes
1,031

ID give the order type..

Name give the number of the maintenance order

Object give the table name where this Maintenance order is stored.

Thanks

Mahesh

Read only

0 Likes
1,031

Dear Mahesh,

Just for test, I am doing this:

call function 'READ_TEXT'

exporting

id = '30' field aufk-autyp in database

language = 'S' we are in spanish language

name = '000009000000' field aufk-aufnr

object = 'AUFK' is the table where the order is stored

tables

lines = ltext.

But, i get the message there is no text id 30 for object text aufk.

what am I doing wrong?? 000009000000 is the order id wich I use in TX iw33

thanks for your help