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: 

data in iw33

Former Member
0 Kudos

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

Former Member
0 Kudos

HI,

Use READ_TEXT function module.

Thanks

Mahesh

4 REPLIES 4

Former Member
0 Kudos

HI,

Use READ_TEXT function module.

Thanks

Mahesh

0 Kudos

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

0 Kudos

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

0 Kudos

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