‎2012 Aug 21 7:20 AM
Hello to everyone!
Please help me with such question!
How to find from wich field of database or transaction code below get the long text
CALL FUNCTION 'READ_TEXT'
EXPORTING
ID = '0001'
LANGUAGE = SY-LANGU
NAME = TDNAME1
OBJECT = 'BELEG'
IMPORTING
HEADER = THEADER
TABLES
LINES = TLINES
EXCEPTIONS
ID = 1
LANGUAGE = 2
NAME = 3
NOT_FOUND = 4
OBJECT = 5
REFERENCE_CHECK = 6
WRONG_ACCESS_TO_ARCHIVE = 7
OTHERS = 8.
As I understood I can search in transaction FB03 but where I don't see. For Example in VA43 if we go to long potion text we can see in which object it is store and by which ID we can find it. In future with fuction READ_TEXT we can get it
But how to know only object name to find out in which transaction long text is ?
‎2012 Aug 21 8:05 AM
Hi
go to FB03 ,give your document no , company code & year . Press enter.
Then on this screen, goto extras & then texts. then double click on Correspondence & here you comes ur screen . you can check the text there . Thanks
‎2012 Aug 21 8:05 AM
Hi
go to FB03 ,give your document no , company code & year . Press enter.
Then on this screen, goto extras & then texts. then double click on Correspondence & here you comes ur screen . you can check the text there . Thanks
‎2012 Aug 21 8:09 AM
Hi Maria,
If you go to the include top of the function group STXD ( Which is the function group of READ_TEXT) you can find the the tables declaration which will give you an idea from which table it is picking up.
Tables are as below:
TABLES: T000,
T002,
T002C,
TTXCT,
TTXOB,
TTXID,
THEAD,
TLINE,
*STXH,
STXH,
STXL,
STXB,
TFDIR,
PSTXT.
With regards,
‎2012 Aug 21 8:54 AM