<?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 Shipping text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-text/m-p/3026199#M715561</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to get the shipping text for order number. &lt;/P&gt;&lt;P&gt;To make it more clear, if we go to VA02 tcode, give an order number and once you are in the order, there will be an icon for header...just above the tabs.once you hit that icon, it takes us into headerdata. go to texts tab and on the left you can find shipping instructions. My question is......Which table contains this shipping instructions? or is there any function module to get this text. This is urgent, please reply. Thank you. Regards. Prathima.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Nov 2007 17:33:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-07T17:33:29Z</dc:date>
    <item>
      <title>Shipping text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-text/m-p/3026199#M715561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to get the shipping text for order number. &lt;/P&gt;&lt;P&gt;To make it more clear, if we go to VA02 tcode, give an order number and once you are in the order, there will be an icon for header...just above the tabs.once you hit that icon, it takes us into headerdata. go to texts tab and on the left you can find shipping instructions. My question is......Which table contains this shipping instructions? or is there any function module to get this text. This is urgent, please reply. Thank you. Regards. Prathima.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2007 17:33:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-text/m-p/3026199#M715561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-07T17:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Shipping text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-text/m-p/3026200#M715562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can read the text by "READ_TEXT" funciton module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But to use this FM, you will need the object, name and id for that text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get these information.. &lt;/P&gt;&lt;P&gt;Select the shipping text and click on the "magnifying" button on the screen where you want to enter the text...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the subsequent screen ... Go to &amp;gt; Header.. here you will find out the information like Text Name &lt;/P&gt;&lt;P&gt;Language  &lt;/P&gt;&lt;P&gt;Text ID   &lt;/P&gt;&lt;P&gt;Text object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the FM like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA:       v_id   LIKE thead-tdid,
      v_lang LIKE thead-tdspras,
      v_name LIKE thead-tdname,
      v_obj  LIKE thead-tdobject,
      int_lines LIKE tline OCCURS 0 WITH HEADER LINE.


  CALL FUNCTION 'READ_TEXT'
    EXPORTING
      id                      = v_id
      language                = v_lang
      name                    = v_name
      object                  = v_obj
    TABLES
      lines                   = int_lines
    EXCEPTIONS
      id                      = 1
      language                = 2
      name                    = 3
      not_found               = 4
      object                  = 5
      reference_check         = 6
      wrong_access_to_archive = 7
      OTHERS                  = 8.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2007 17:41:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-text/m-p/3026200#M715562</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-07T17:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Shipping text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-text/m-p/3026201#M715563</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;In the same screen of text there will be toolbar button the bottom "Call Log" click on that and search for your text id . Then using fm READ_TEXT you can get the values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2007 17:44:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-text/m-p/3026201#M715563</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-11-07T17:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Shipping text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-text/m-p/3026202#M715564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;Check this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; l_f_id41 = 'ZX41'.&lt;/P&gt;&lt;P&gt;  l_f_name = p_vbeln.&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                            = l_f_id41&lt;/P&gt;&lt;P&gt;        language                      = g_f_langu&lt;/P&gt;&lt;P&gt;        name                          = l_f_name&lt;/P&gt;&lt;P&gt;       object                        = 'VBBK'&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;       lines                         = g_t_lines41&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;   &lt;/P&gt;&lt;P&gt;Also check table tvsbt  if it helps you .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps .&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 02:08:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-text/m-p/3026202#M715564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T02:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: Shipping text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-text/m-p/3026203#M715565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all for the inputs. It helped me a lot. &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prathima.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 10:14:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-text/m-p/3026203#M715565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T10:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Shipping text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-text/m-p/3026204#M715566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;test&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 10:49:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shipping-text/m-p/3026204#M715566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T10:49:40Z</dc:date>
    </item>
  </channel>
</rss>

