‎2006 Jul 26 2:22 PM
HI,
can someone tell me from which table i will be able to extact Info Record Note.
i looked at the technical information of the field in transaction me13 but it shows RM06I-LTEX1, but this is a structure .
‎2006 Jul 26 2:29 PM
‎2006 Jul 26 2:32 PM
Here is a sample ...
report zrich_0001.
data: xid like thead-tdid value 'AT'.
data: xname like thead-tdname.
data: xobject like thead-tdobject value 'EINA'.
data: begin of itxttab occurs 0.
include structure tline.
data: end of itxttab.
parameters: p_infnr type eina-infnr.
xname = p_infnr.
call function 'READ_TEXT'
exporting
client = sy-mandt
id = xid
language = sy-langu
name = xname
object = xobject
tables
lines = itxttab
exceptions
id = 1
language = 2
name = 3
not_found = 4
object = 5
reference_check = 6
wrong_access_to_archive = 7
others = 8.
loop at itxttab.
write:/ itxttab-tdline.
endloop.
Regards,
Rich Heilman
‎2006 Jul 26 2:43 PM
HI RICH,
THANK YOU VERY MUCH, UR ADVICE HAS BEEN VERY HELPFUL TO ME.
REGARDS,
MARUTI