‎2006 Jun 03 5:05 PM
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.
‎2006 Jun 03 5:11 PM
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
‎2006 Jun 03 5:11 PM
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