<?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 saving EDIT_TEXT_INLINE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044685#M1611262</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In that form, the SAVE_TEXT doesn't work. BUT it works in another place ... Class "/BEV1/CL_IM_SR_SALES_ORD_1" methid "IF_EX_BADI_SD_SALES~SAVE_DOCUMENT_PREPARE" where the "EXPORT" is &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Jul 2011 15:19:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-07-28T15:19:06Z</dc:date>
    <item>
      <title>problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044672#M1611249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SAP gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having a problem.&lt;/P&gt;&lt;P&gt;I need to create / change an order VA01/VA02 and change the header/position texts in the mean time.&lt;/P&gt;&lt;P&gt;After allot of debugging and messing around, I've come to the conclusion that I can't SAVE the text. Here is a part of the code positioned in "MV45AFZZ" / "FORM USEREXIT_SAVE_DOCUMENT_PREPARE"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
   CONCATENATE sy-uname sy-tcode INTO lv_export_id.
   IMPORT lt_all_msgs FROM MEMORY ID lv_export_id.
   IF lt_all_msgs[] IS INITIAL.
     IMPORT t1 TO lt_all_msgs FROM MEMORY ID lv_export_id.
   ENDIF.

   LOOP AT lt_all_msgs INTO ls_all_msgs.
     lv_tabix = sy-tabix.

     IF ls_all_msgs-tdline+0(3) &amp;lt;&amp;gt; 'VA0'.
       APPEND ls_all_msgs TO lt_text_lines.
     ENDIF.

     ADD 1 TO lv_tabix.
     READ TABLE lt_all_msgs INDEX lv_tabix TRANSPORTING NO FIELDS.

     IF ls_all_msgs_old IS NOT INITIAL AND ( ls_all_msgs-tdline+0(3) = 'VA0' OR sy-subrc IS NOT INITIAL ).
       SPLIT ls_all_msgs_old-tdline AT ';' INTO ls_data-trx ls_data-posnr ls_data-lines.
       ls_head_text-tdobject   = 'VBBP'.
       CONCATENATE vbak-vbeln ls_data-posnr INTO ls_head_text-tdname.
       ls_head_text-tdid       = 'ZP17'.
       ls_head_text-tdspras    = '4'.
       ls_head_text-tdform     = 'SYSTEM'.
       ls_head_text-tdversion  = '00001'.
       ls_head_text-tdfuser    = sy-uname.
       ls_head_text-tdfreles   = '701'.
       ls_head_text-tdfdate    = sy-datum.
       ls_head_text-tdftime    = sy-uzeit.
       ls_head_text-tdluser    = sy-uname.
       ls_head_text-tdlreles   = sy-saprl.
       ls_head_text-tdldate    = sy-datum.
       ls_head_text-tdltime    = sy-uzeit.
       ls_head_text-tdlinesize = '120'.
       ls_head_text-tdtxtlines = ls_data-lines.
       ls_head_text-tdtranstat = '0'.
       ls_head_text-tdmacode1  = 'VA02SAPMV45A'.
       ls_head_text-mandt      = '200'.

       CALL FUNCTION 'EDIT_TEXT_INLINE'
        EXPORTING
          header       = ls_head_text
          inline_count = '0'
          save         = 'X'
        IMPORTING
          newheader    = ls_head_textn
        TABLES
          inlines      = lt_inlines
          lines        = lt_text_lines.

       IF ls_data-trx = 'VA01'.
         ls_head_text = ls_head_textn.
       ENDIF.
*       *
       CALL FUNCTION 'SAVE_TEXT'
         EXPORTING
           client          = sy-mandt
           header          = ls_head_text
           insert          = ''
           savemode_direct = 'X'
           owner_specified = 'X'
         IMPORTING
           function        = lv_function
         TABLES
           lines           = lt_text_lines
         EXCEPTIONS
           id              = 1
           language        = 2
           name            = 3
           object          = 4
           OTHERS          = 5.

       CALL FUNCTION 'COMMIT_TEXT'
        EXPORTING
          object          = 'VBBP'
          savemode_direct = 'X'
        IMPORTING
          commit_count = count.

       CLEAR lt_text_lines.
     ENDIF.

     IF ls_all_msgs-tdline+0(3) = 'VA0'.
       ls_all_msgs_old = ls_all_msgs.
     ENDIF.
   ENDLOOP.
 ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't seam to find a place where to put this code (which in other cases works just "perfect", executed in a program or whatever) because the COMMIT_TEXT, COMMIT, SAVE_TEXT functions do not work. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The limitations I have are:&lt;/P&gt;&lt;P&gt;vbak-vbeln HAS to be not initial (I use the same code for VA01 and for VA02), ergo ... I need the document number&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;IMPORT FROM MEMORY statement doesn't work if I move it, for example in "FORM USEREXIT_SAVE_DOCUMENT.".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I actually need some solutions and not guesses or "thinks" ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you allot in advance,&lt;/P&gt;&lt;P&gt;Marius&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: Places in which this code has been ...&lt;/P&gt;&lt;P&gt;/BEV1/CL_IM_SR_SALES_ORD_1&lt;/P&gt;&lt;P&gt;/BEV1/CL_IM_TS_SD_SALES&lt;/P&gt;&lt;P&gt;/DSD/CL_IM_SL_BADI_SD_SALE&lt;/P&gt;&lt;P&gt;/SAPTRX/CL_IM_SD_SALESORD&lt;/P&gt;&lt;P&gt;CL_IM_CMPD_BADI_SD_SALES&lt;/P&gt;&lt;P&gt;CL_IM_CMP_BADI_SD_SALES&lt;/P&gt;&lt;P&gt;CL_IM_FOAP_BADI_SD_SALES&lt;/P&gt;&lt;P&gt;CL_IM_IMP_EHS_SVT_CHECK&lt;/P&gt;&lt;P&gt;CL_IM_IM_CORE_CHECK&lt;/P&gt;&lt;P&gt;CL_EX_BADI_SD_SALES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or enhancements all over the SAPMV45A. If the save_text works .... the IMPORT doesn't work (I receive the sy-subrc = 0 value but the memory isn't read &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 13:39:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044672#M1611249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T13:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044673#M1611250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you write commit work and wait?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i know that commit_text needs to be used to save it. just try with an extra statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i experienced the similar kind of issue, i resolved it by using commit work and wait statememt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 13:49:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044673#M1611250</guid>
      <dc:creator>Shahid</dc:creator>
      <dc:date>2011-07-28T13:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044674#M1611251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just add the "commit work and wait" at the end ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: Nope .. that ain't it :(. I added the commit work, commit work and wait .... nothing ... the text isn't there in the new order &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; (I'm testing still with VA01)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 13:50:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044674#M1611251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T13:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044675#M1611252</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;Try to place your code in a your own fm placed in form USEREXIT_SAVE_DOCUMENT, here you should know the order number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your fm should be called in UPDATE TASK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 13:54:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044675#M1611252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T13:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044676#M1611253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No. Still doesn't work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 14:22:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044676#M1611253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T14:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044677#M1611254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do NOT put a COMMIT WORK in user_exit_save_document_prepare!!   WRONG advice.  We don't ever put commit work in these exits, since you would flush the update queue to the database tables before SAP is ready to do so.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 14:23:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044677#M1611254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T14:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044678#M1611255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. But how do I solve the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 14:25:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044678#M1611255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T14:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044679#M1611256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See Max's post.  That's what I would try...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 14:44:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044679#M1611256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T14:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044680#M1611257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did. I doesn't work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 14:45:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044680#M1611257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T14:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044681#M1611258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay... have you tried just a function module that would put the text into the tables?  If that works, then calling that FM in update task in USER_EXIT_SAVE_DOCUMENT will do that same thing.  That's all that exit is for, e.g., firing off additional processes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you say it doesn't work, it take it that means that after you do this, you don't find the entry in table STXH with the id, object, name, langu you specified?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And, sorry for the obvious question, but I don't see a check to see if the import from memory was successful and if what was imported contains any rows/data?    You are certain that after import you have data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 14:49:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044681#M1611258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T14:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044682#M1611259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to check the abap code of fm CREATE_TEXT (it's called in fm SD_SALES_DOCU_MAINTAIN): here the fm COMMIT_TEXT is called, but the text name is also transfered, not only object type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 15:00:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044682#M1611259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T15:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044683#M1611260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; Yes Dave, that's true. I don't find my ID, OBJECT, LANGU etc in the table, nor in the document at the given position.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And YES I'm 100% sure that the IMPORT is successful. If I remove the "IN UPDATE TASK" statement, the debug shows me the lines in the text table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've found a work around ... if you guys can advise about it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT SINGLE * FROM TVAK WHERE AUART = US_AUART. "the sales document type
data: da_rc like inri-returncode.
call function 'NUMBER_GET_NEXT'
  EXPORTING
    nr_range_nr = TVAK-NUMKI
    object      = 'RV_BELEG'
  IMPORTING
    returncode  = da_rc
    number      = vbak-vbeln.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I get the document number ... a bit in advance than the standard SAP program does. Ergo, I can use it where the standard SAP program allows me to use the current programming.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 15:05:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044683#M1611260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T15:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044684#M1611261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the form USER_EXIT_SAVE_DOCUMENT you know the number of sales order, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This exit is just to save some data in own custom table, so you don't need to use that code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 15:14:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044684#M1611261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T15:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044685#M1611262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In that form, the SAVE_TEXT doesn't work. BUT it works in another place ... Class "/BEV1/CL_IM_SR_SALES_ORD_1" methid "IF_EX_BADI_SD_SALES~SAVE_DOCUMENT_PREPARE" where the "EXPORT" is &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 15:19:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044685#M1611262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T15:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044686#M1611263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is very strange&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know that BADI (I suppose it's a standard one) but that method is called just before or after the form USEREXIT_SAVE_DOCUMENT_PREPARE, so here you don't know the number and you can use the code to get the number because the sales order number will be go twice:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- The first time by you&lt;/P&gt;&lt;P&gt;- The second time by the standard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result will be you'll have a different number, not one will be assigned to document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 15:32:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044686#M1611263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T15:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044687#M1611264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah ... saw the number thingy. In debug worked like a charm .... have to study some more the solution &lt;SPAN __jive_emoticon_name="grin"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 15:35:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044687#M1611264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T15:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044688#M1611265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's complicated .... if I run the FM ... the text isn't saved ... if I input manually, instead of the FM for the next document, the text is saved ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 15:40:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044688#M1611265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T15:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: problem saving EDIT_TEXT_INLINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044689#M1611266</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;After getting the number the standard program  call the fm SD_COMMIT_TEXT, try to check the code of this fm:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include MV45AF0B_BELEG_SICHERN:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; * Texte sichern
      append vbak-vbeln to da_text_vbeln.
      call function 'SD_COMMIT_TEXT'
        exporting
          fi_caller = gc_text_appl_id-sales_document
          fit_vbeln = da_text_vbeln[]
          fi_keep   = 'X'
        exceptions
          others    = 1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 15:43:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-saving-edit-text-inline/m-p/8044689#M1611266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T15:43:54Z</dc:date>
    </item>
  </channel>
</rss>

