Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Info Record Note

Former Member
0 Likes
946

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 .

3 REPLIES 3
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
752

That is actually stored as long text. You can read it using READ_TEXT function module. Use EINA as the Object and AT as the id.

Regards,

Rich Heilman

Read only

0 Likes
752

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

Read only

0 Likes
752

HI RICH,

THANK YOU VERY MUCH, UR ADVICE HAS BEEN VERY HELPFUL TO ME.

REGARDS,

MARUTI