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

Header text

Former Member
0 Likes
335

hi all,

I am new to abap, i need to know in which table the header text of purchase order is stored, and how to find it .

thanks

shreya.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
285

Shreya,

The LONG TEXTS that you are searching for stored in STXH and STXL tables in a RAW format. These cannot be read by SELECT statements. You will have to use the READ_TEXT function module with specific parameters for each of the texts that you want to read.

TDOBJECT - For PO, I guess this would EKKO

TDID - For PO, this would be F01 (For Header Text)

TDNAME - This will the PO Number.

You can pass these to the function.

The best way to find out the parameter values is to open a PO, go to the Header Text that you want to see, double click on the text which will open the text editor in full screen mode. Here in the menu, Go To-->Header, you can find all the parameter values that you will have to pass to the function.

Here is a example from the system

Text Name 5500000178

Language EN

Text ID F01 Header text

Text object EKKO Purchasing doc. header tex

Regards,

Ravi

Note :Please mark the helpful answers and close the thread if the question is answered

Message was edited by: Ravikumar Allampallam

1 REPLY 1
Read only

Former Member
0 Likes
286

Shreya,

The LONG TEXTS that you are searching for stored in STXH and STXL tables in a RAW format. These cannot be read by SELECT statements. You will have to use the READ_TEXT function module with specific parameters for each of the texts that you want to read.

TDOBJECT - For PO, I guess this would EKKO

TDID - For PO, this would be F01 (For Header Text)

TDNAME - This will the PO Number.

You can pass these to the function.

The best way to find out the parameter values is to open a PO, go to the Header Text that you want to see, double click on the text which will open the text editor in full screen mode. Here in the menu, Go To-->Header, you can find all the parameter values that you will have to pass to the function.

Here is a example from the system

Text Name 5500000178

Language EN

Text ID F01 Header text

Text object EKKO Purchasing doc. header tex

Regards,

Ravi

Note :Please mark the helpful answers and close the thread if the question is answered

Message was edited by: Ravikumar Allampallam