<?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: SAVE_TEXT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238479#M482341</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see below code for SAVE_TEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: xthead like thead occurs 0 with header line.&lt;/P&gt;&lt;P&gt;    thead-tdid = '*'.&lt;/P&gt;&lt;P&gt;    thead-tdspras = '*'.&lt;/P&gt;&lt;P&gt;    thead-tdname+10(2) = p_parvw.&lt;/P&gt;&lt;P&gt;    thead-tdobject = 'ZECC'.&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;        header          = w_head&lt;/P&gt;&lt;P&gt;        insert          = ' '&lt;/P&gt;&lt;P&gt;        savemode_direct = 'X'&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        newheader       = w_head&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        lines           = w_tab&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;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 May 2007 15:25:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-03T15:25:37Z</dc:date>
    <item>
      <title>SAVE_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238478#M482340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using the function Module save text for saving a text for the header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i run the function module it is throwing an error saying that the Text Object does not exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The TDOBJECT i am using is VBBK and TDID is 0002.Language E.]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone tell me whats going wrong??&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_HEAD&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                     INSERT                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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_TEXT&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;                   IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;                     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;                             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;                   ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 15:19:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238478#M482340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T15:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238479#M482341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see below code for SAVE_TEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: xthead like thead occurs 0 with header line.&lt;/P&gt;&lt;P&gt;    thead-tdid = '*'.&lt;/P&gt;&lt;P&gt;    thead-tdspras = '*'.&lt;/P&gt;&lt;P&gt;    thead-tdname+10(2) = p_parvw.&lt;/P&gt;&lt;P&gt;    thead-tdobject = 'ZECC'.&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;        header          = w_head&lt;/P&gt;&lt;P&gt;        insert          = ' '&lt;/P&gt;&lt;P&gt;        savemode_direct = 'X'&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        newheader       = w_head&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        lines           = w_tab&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 15:25:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238479#M482341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T15:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238480#M482342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Are you saving the text into sales order header?&lt;/P&gt;&lt;P&gt;first manually try to create a long text in an existing sales order header&lt;/P&gt;&lt;P&gt;save it&lt;/P&gt;&lt;P&gt;double click on it&lt;/P&gt;&lt;P&gt;goto =&amp;gt; header &lt;/P&gt;&lt;P&gt;you will see the OBJECT,ID,NAME etc for that text,&lt;/P&gt;&lt;P&gt;check whether the OBJECT is VBBK or not for that&lt;/P&gt;&lt;P&gt;Because for all header texts it is VBBK only.&lt;/P&gt;&lt;P&gt;Then try  with the fun module&lt;/P&gt;&lt;P&gt;You can also use  create_Text fun module for creating the long texts in the system&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Call the Function Module to Create Text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL FUNCTION 'CREATE_TEXT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        fid         = c_best&lt;/P&gt;&lt;P&gt;        flanguage   = dl_lan&lt;/P&gt;&lt;P&gt;        fname       = dl_name&lt;/P&gt;&lt;P&gt;        fobject     = c_material&lt;/P&gt;&lt;P&gt;        save_direct = 'X'&lt;/P&gt;&lt;P&gt;        fformat     = '*'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        flines      = dt_lines&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        no_init     = 1&lt;/P&gt;&lt;P&gt;        no_save     = 2&lt;/P&gt;&lt;P&gt;        OTHERS      = 3.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      WRITE:/ 'Long Text Creation failed'(001),&lt;/P&gt;&lt;P&gt;             itab-asnum.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      WRITE:/ 'Long Text Created Successfully '(002),&lt;/P&gt;&lt;P&gt;             itab-asnum.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 15:27:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238480#M482342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T15:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238481#M482343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi supriya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did u make a check, whether there is an entry for the variant you are making in STXH table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        varalakshmi kannan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 15:43:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238481#M482343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T15:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238482#M482344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i ma saving the text not reading it!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 15:52:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238482#M482344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T15:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238483#M482345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to se16 table STXH and check whether the text exists for ur object, name, id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else, do create_text first...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 15:55:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238483#M482345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T15:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238484#M482346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot guys.got the problem solved.i helped myself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 16:08:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238484#M482346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T16:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: SAVE_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238485#M482347</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 you please address the below problem, as u had same problem before its urgent can you  please solve this or give some idea to procede....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing some problem during the recording of hader text.. Details given below...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to do this by using BDC...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;#61607; VA01 Steps as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Open VA01&lt;/P&gt;&lt;P&gt;o Enter G2 or L2 order Type&lt;/P&gt;&lt;P&gt;o Enter 9991 for Sales Org&lt;/P&gt;&lt;P&gt;o Enter 01 for Dist Channel&lt;/P&gt;&lt;P&gt;o Enter 99 for Division&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Enter Customer SAP # from spreadsheet to ship to and sold to&lt;/P&gt;&lt;P&gt;(Enter some appropriate number)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Enter Material Code from spreadsheet to Material &lt;/P&gt;&lt;P&gt;(Enter some appropriate number)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Enter target quantity as 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Enter Billing date as system date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. Go to Sales Tab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. Select Blank for billing block &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8. Enter order reason 013 for G2 type or 012 for L2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9. Goto Header, Texts, Choose Invoice header text &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10. Enter SVB# from file as well as Quarter Text from file in notes &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;11. Save&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is want i need to do in order to create invoice serivce request by using BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can able to get the fields till 8 th point ( i can able to write the program ), but from the 9 th point i m facing the problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bcz it just i need to enter some text here..( may be it's bcz of click )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is could not able to do it , can you please help me how can i do this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if i m not clear with my explanation...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking forward for your response...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 05:17:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/save-text/m-p/2238485#M482347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T05:17:05Z</dc:date>
    </item>
  </channel>
</rss>

