<?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 long text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/2414473#M538820</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to all ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my requrement is to get the po data from 4.7 and put into flate file .&lt;/P&gt;&lt;P&gt;then , i have to upload from falt file into ecc 6.0.&lt;/P&gt;&lt;P&gt;problem is when i am getting the data from 4.7 to flate file , i am unable to find where  header long text and   item long text will  be there and also which table . based on table only , i have to code to get the data from database . how to get that . which table it will there.&lt;/P&gt;&lt;P&gt;pls.advise me very urgent .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jun 2007 14:38:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-25T14:38:06Z</dc:date>
    <item>
      <title>long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/2414473#M538820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to all ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my requrement is to get the po data from 4.7 and put into flate file .&lt;/P&gt;&lt;P&gt;then , i have to upload from falt file into ecc 6.0.&lt;/P&gt;&lt;P&gt;problem is when i am getting the data from 4.7 to flate file , i am unable to find where  header long text and   item long text will  be there and also which table . based on table only , i have to code to get the data from database . how to get that . which table it will there.&lt;/P&gt;&lt;P&gt;pls.advise me very urgent .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 14:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/2414473#M538820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T14:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/2414474#M538821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to read_text FM to read the data and use gui_download FM to download.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            id                      = 'PRUE'&lt;/P&gt;&lt;P&gt;            language                = tdspras&lt;/P&gt;&lt;P&gt;            name                    = tdname&lt;/P&gt;&lt;P&gt;            object                  = 'MATERIAL'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            lines                   = int_tline&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            id                      = 1&lt;/P&gt;&lt;P&gt;            language                = 2&lt;/P&gt;&lt;P&gt;            name                    = 3&lt;/P&gt;&lt;P&gt;            not_found               = 4&lt;/P&gt;&lt;P&gt;            object                  = 5&lt;/P&gt;&lt;P&gt;            reference_check         = 6&lt;/P&gt;&lt;P&gt;            wrong_access_to_archive = 7&lt;/P&gt;&lt;P&gt;            OTHERS                  = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then if you want upload the long text use SAVE_TEXT FM &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SAVE_TEXT'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            CLIENT                = SY-MANDT&lt;/P&gt;&lt;P&gt;            HEADER                = t_header&lt;/P&gt;&lt;P&gt;            SAVEMODE_DIRECT       = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     OWNER_SPECIFIED       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     LOCAL_CAT             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     FUNCTION              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     NEWHEADER             =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          TABLES&lt;/P&gt;&lt;P&gt;            LINES                 = t_long&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;           ID                    = 1&lt;/P&gt;&lt;P&gt;           LANGUAGE              = 2&lt;/P&gt;&lt;P&gt;           NAME                  = 3&lt;/P&gt;&lt;P&gt;           OBJECT                = 4&lt;/P&gt;&lt;P&gt;           OTHERS                = 5&lt;/P&gt;&lt;P&gt;                  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 14:47:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text/m-p/2414474#M538821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T14:47:48Z</dc:date>
    </item>
  </channel>
</rss>

