<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Info Record Note in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-record-note/m-p/1493396#M229331</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can someone tell me from which table i will be able to extact Info Record Note.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i looked at the technical information of the field in transaction me13 but it shows RM06I-LTEX1, but this is a structure  .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Jul 2006 13:22:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-26T13:22:18Z</dc:date>
    <item>
      <title>Info Record Note</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-record-note/m-p/1493396#M229331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can someone tell me from which table i will be able to extact Info Record Note.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i looked at the technical information of the field in transaction me13 but it shows RM06I-LTEX1, but this is a structure  .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 13:22:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-record-note/m-p/1493396#M229331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-26T13:22:18Z</dc:date>
    </item>
    <item>
      <title>Re: Info Record Note</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-record-note/m-p/1493397#M229332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 13:29:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-record-note/m-p/1493397#M229332</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-26T13:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Info Record Note</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-record-note/m-p/1493398#M229333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a sample ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


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.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 13:32:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-record-note/m-p/1493398#M229333</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-26T13:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Info Record Note</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-record-note/m-p/1493399#M229334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI RICH,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANK YOU VERY MUCH, UR ADVICE HAS BEEN VERY HELPFUL TO ME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MARUTI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 13:43:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-record-note/m-p/1493399#M229334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-26T13:43:59Z</dc:date>
    </item>
  </channel>
</rss>

