cancel
Showing results for 
Search instead for 
Did you mean: 

ZEILE Field of FB03 present in which table

aamna
Participant
0 Kudos

Hi Sir,

Please check ZEILE field of FB03 long text in document line item is present in which table

its structure is EENO_DYNP


Can we get the table directly or do we need to get or do we need to extract value in different way

Accepted Solutions (0)

Answers (3)

Answers (3)

raymond_giuseppi
Active Contributor
0 Kudos

Table is STXL, the data is stored in a cluster, not human readable.

Look at FM SAVE_TEXT which executes an EXPORT

DATA:
  BEGIN OF stxl_id,
    tdobject LIKE stxl-tdobject,
    tdname   LIKE stxl-tdname,
    tdid     LIKE stxl-tdid,
    tdspras  LIKE stxl-tdspras,
  END OF stxl_id.

EXPORT tline FROM wt_lines
    TO DATABASE stxl(tx)
       CLIENT   wt_client
       ID       stxl_id.

So use READ_TABLE (or import from database) to get a table of text lines. (the first line is displayed in the transaction)

NB: To find values of tdobject or tdid, navigate to full screen editor and then in the menu, goto, header

Jigang_Zhang张吉刚
Active Contributor
0 Kudos

same as this : )

TammyPowlas
Active Contributor
0 Kudos
aamna
Participant
0 Kudos

This link did not meet my requirement , i want to know the table where long text in document line item is saved.