‎2009 Jun 28 11:40 AM
Hi how to use read_text function module to read purchase order header text .what are all tht things to pass in ID,Name and Object
thanks,
Mahe
‎2009 Jun 28 12:07 PM
Hi, Sky
First of all Welcome to SDN
Please do search before posting have a look at [Forum Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
[Click here for Search Results|https://forums.sdn.sap.com/search.jspa?threadID=&q=%22read_text%22&objID=f50&dateRange=all&numResults=30&rankBy=10001]
Regards,
Faisal
‎2009 Jun 28 12:07 PM
Hi, Sky
First of all Welcome to SDN
Please do search before posting have a look at [Forum Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
[Click here for Search Results|https://forums.sdn.sap.com/search.jspa?threadID=&q=%22read_text%22&objID=f50&dateRange=all&numResults=30&rankBy=10001]
Regards,
Faisal
‎2009 Jun 28 12:10 PM
Hi,
Refer to this link..[READ_TEXT Function Module|http://www.erpgenie.com/sap-technical/abap/abap-readtext-functions-to-read-the-sap-long-text]
‎2009 Jun 28 12:24 PM
Dear,
Use below code.
DATA:IT_LINE LIKE TLINE OCCURS 0 WITH HEADER LINE,
V_TDNAME LIKE THEAD-TDNAME.V_TDNAME = PO_NUMBER.
CALL FUNCTION 'READ_TEXT'
EXPORTING
* CLIENT = SY-MANDT
ID = 'F01'
LANGUAGE = 'EN'
NAME = V_TDNAME
OBJECT = 'EKKO'
TABLES
LINES = IT_LINE.Thanks and Regards,
‎2009 Jun 28 1:04 PM
hi,
the object is EKKO,
id is F01,
language is E
name is the PO number
regards
kanishak
‎2013 Mar 08 3:16 PM
"language is E" - Kanishak Gupta
Very pertinent remark! I couldn't understand what i was missing before seeing your message.
Thank you!