<?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 Re: problem with text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text/m-p/964480#M68241</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;EKKO is only for the header text--you will also need to call READ_TEXT for the item texts as well using object type EKPO and object id of the PO# concatenated with the item#.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, you also need to know the text id, or TDID for the text you want to read.  You can get this by searching table TTXID using either EKKO or EKPO to match the text description and obtain it's relevant ID that way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Sep 2005 15:43:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-09-02T15:43:32Z</dc:date>
    <item>
      <title>problem with text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text/m-p/964478#M68239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi budys,&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;  plz solve my issue and gain full points imm,we are working on an interface, where the Purchase order will send to other system as Sales order.every thing is fine.but the text(header and item) is not moving from PO to SO,i'm not able to look the text even in the sending system idoc.actually we are writng the text in text type which was created by my functional guy.thanks to all for spending ur time.plz help me out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2005 11:24:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text/m-p/964478#M68239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-02T11:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: problem with text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text/m-p/964479#M68240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear danny,&lt;/P&gt;&lt;P&gt;          Well you have to use the function module 'Read_text' to get the text in the Header and item of a particular PO. In this function module you have pass the PO number along with object type 'EKKO'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2005 11:30:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text/m-p/964479#M68240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-02T11:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: problem with text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text/m-p/964480#M68241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;EKKO is only for the header text--you will also need to call READ_TEXT for the item texts as well using object type EKPO and object id of the PO# concatenated with the item#.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, you also need to know the text id, or TDID for the text you want to read.  You can get this by searching table TTXID using either EKKO or EKPO to match the text description and obtain it's relevant ID that way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2005 15:43:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text/m-p/964480#M68241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-02T15:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: problem with text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text/m-p/964481#M68242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, Joel Falk is right.&lt;/P&gt;&lt;P&gt;You can call the function like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    
       CALL FUNCTION 'READ_TEXT'
         EXPORTING
            ID                      = 'XXX'
            LANGUAGE                = SY-LANGU
            NAME                    = FNAME
            OBJECT                  = 'EKPO'
       TABLES
            LINES                   = IT_TLINE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;ID is the text id in TTXID, every ID associated with a TEXT.&lt;/P&gt;&lt;P&gt;OBJECT: if header, OBJECT is EKKO, NAME is PO number&lt;/P&gt;&lt;P&gt;        if item, OBJECT is EKPO, NAME is PO concatenate Item number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2005 16:14:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-text/m-p/964481#M68242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-02T16:14:25Z</dc:date>
    </item>
  </channel>
</rss>

