cancel
Showing results for 
Search instead for 
Did you mean: 

Table for long text in production order

Former Member

Hi,

in which table can I retrieve the long text I entered in the production order?

Thanks and regards,

Jessica

Accepted Solutions (1)

Accepted Solutions (1)

Former Member

To read the production order header text, refer to tables STXH & STXL or use FM - READ_TEXT.

If you want to read via tables then specify the below:

TDOBJECT = AUFK,

TDID = KOPF,

TDSPRAS = EN,

TDNAME = Client nos. + 12 digit order nos. (Eg: 123001000012345, where 123 is client nos. & the remaining are the order nos.)

To read via FM

CALL FUNCTION 'READ_TEXT'

EXPORTING

CLIENT = SY-MANDT

ID = 'KOPF'

LANGUAGE = 'EN'

NAME = Client nos. + 12 digit order nos.

OBJECT = 'AUFK'

  • ARCHIVE_HANDLE = 0

IMPORTING

HEADER = it_htext

TABLES

LINES = it_ltext

EXCEPTIONS

ID = 1

LANGUAGE = 2

NAME = 3

NOT_FOUND = 4

OBJECT = 5

REFERENCE_CHECK = 6

WRONG_ACCESS_TO_ARCHIVE = 7

OTHERS = 8.

Former Member
0 Kudos

Hallo Manohar,

thank you, that's perfect.

I go via the tables and I can now find the entry but I cannot see the actual text. Isn't there a field where I can see the text I entered?

Thanks, Jessica

Former Member
0 Kudos

Did you enter the 15 Digit Number..

TDNAME = Client nos. + 12 digit order nos. (Eg: 123001000012345, where 123 is client nos. & the remaining are the order nos.)

JL23
Active Contributor
0 Kudos

with SE16 you can only see whether you have an entry. but you cannot read the text as it is stored in binary.

To read the text you have to run function module READ_TEXT

Answers (0)