Question:
Hello,
Is is possible to extract some info which was entered using standard text from ABAP program?
If yes, how?
Appreciate your assistance.
naa
Answer:
You need to make your question clearer as it's not obvious what you want to do. Well, not without asking you many questions beforehand.
Dr Sidewalk
_________________
"In the middle of difficulty lies opportunity" - Albert Einstein
"Money isn't everything in life, unless you don't have it". David King
"Fail to plan, plan to fail"
"Success is a journey, not a destination."
Answer:
I need to create an ABAP report but the data was entered in the standard text in the transaction. How do I select the data from the text in every transaction?
Thanks.
Answer:
HI Naa,
Use FM READ_TEXT.
Cheers.
Vitamin
Answer:
READ_TEXT FM is ok, but i want to know that we have to pass TDID TDOBJECT as parameter to this FM now in salesorder from VA03 we can get this info but i don't know from where in Purchase Order we can get this info of TDOBJECT and TDID?
can anyone ??
_________________
hardwork never killed anyone but why take risks.
Answer:
READ_TEXT FM is ok, but i want to know that we have to pass TDID TDOBJECT as parameter to this FM now in salesorder from VA03 we can get this info but i don't know from where in Purchase Order we can get this info of TDOBJECT and TDID?
can anyone ??
Hi parth,
In VA03, goto Header/Item text. In the text screen, click on the detail button. System will redirect you to editor, from there goto menu path > GOTO > Header. a popup will give u the info regarding the Text ID, Text Object, and Text name. So based on these info, u can now supply it to FM READ TEXT.
Note that, Text name actually contain the SD# and line item number for Item text while SD# only for Header text. So, based on the SD you read each time from here you contruct the Text name dynamically by yourself .
Hope it helps.
Cheers.
Vitamin.