<?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: About BAPI:  BAPI_SALESORDER_CHANGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379068#M1642686</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi madhurao123 ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK....I think I know what you mean , and I'm sure the new value what I set is conform the consistency of the characteristics ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so I don't know why occurs the error message...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me tell more details, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example , there are two order item 10, 20 , and they are THE SAME MATERIAL, but different characteristic values ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(suppose item 10 - characteristic value is A , item 20 - characteristic value is B) ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so I use "BAPI_CHANGE_CHARACTERISTIC"  want to modify item 20 to characteristic value A , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so I  copy  the characteristic value of item 10  to item 20 , like this&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IBAPICUVA-VALUE     = ICUVA-VALUE.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The detail code as the code which I raise this question post , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I supose if there are any UPDATEFLAG is losing? so the new value is not update?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yacoa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Dec 2011 09:06:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-12-05T09:06:31Z</dc:date>
    <item>
      <title>About BAPI:  BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379057#M1642675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to  use "BAPI_SALESORDER_CHANGE" to modify characteristics of sales order item ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it doesn't work , it still the old value , my program code is like follows,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help me how to  modify it or other suggestions and thanks a lot in advanced.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------------------------------" /&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: IBAPIVBAP  TYPE BAPISDITM  OCCURS 0 WITH HEADER LINE,
           IBAPIVBAPX TYPE BAPISDITMX OCCURS 0 WITH HEADER LINE,
           IBAPICUVA  TYPE BAPICUVAL  OCCURS 0 WITH HEADER LINE,
           IBAPICUCFG TYPE BAPICUCFG  OCCURS 0 WITH HEADER LINE,
           IRETURN    TYPE BAPIRET2   OCCURS 0 WITH HEADER LINE.

              IBAPICUVA-INST_ID   = ICUVA-INST_ID.
              IBAPICUVA-CHARC     = ICUVA-CHARC.
              IBAPICUVA-CHARC_TXT = ICUVA-CHARC_TXT.
              IBAPICUVA-VALUE     = ICUVA-VALUE.
              IBAPICUVA-VALUE_TXT = ICUVA-VALUE_TXT.
              IBAPICUVA-AUTHOR    = ICUVA-AUTHOR.
              IBAPICUVA-VALUE_TO  = ICUVA-VALUE_TO.
              IBAPICUVA-VALCODE   = ICUVA-VALCODE.

              READ TABLE ICUCF WITH KEY SD_DOC = PC_ITAB-VBELN
                                                                POSEX  = PC_ITAB-NPOSNR.
              IF SY-SUBRC = 0.
                 MOVE-CORRESPONDING ICUCF TO IBAPICUCFG.
                 APPEND IBAPICUCFG.

                 IBAPICUVA-CONFIG_ID = ICUCF-CONFIG_ID.
                 APPEND IBAPICUVA.

                 IBAPIVBAP-ITM_NUMBER  = PC_ITAB-NPOSNR.
                 IBAPIVBAP-PO_ITM_NO   = PC_ITAB-NPOSNR.      
                 APPEND IBAPIVBAP.
                 IBAPIVBAPX-ITM_NUMBER = PC_ITAB-NPOSNR.
                 IBAPIVBAPX-PO_ITM_NO  = 'X'.                 
                 IBAPIVBAPX-UPDATEFLAG = 'U'.
                 APPEND IBAPIVBAPX.

                 PERFORM BAPI_CHANGE_CHARACTERISTIC USING PC_ITAB-VBELN
                                               CHANGING L_ERRFLAG.

  &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM BAPI_CHANGE_CHARACTERISTIC  USING    P_VBELN
                                 CHANGING P_ERRFLAG.
     CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
       EXPORTING
         SALESDOCUMENT               = P_VBELN
*        ORDER_HEADER_IN             =
         ORDER_HEADER_INX            = IORDHDX
       TABLES
         RETURN                      = IRETURN
         ORDER_ITEM_IN               = IBAPIVBAP
         ORDER_ITEM_INX              = IBAPIVBAPX
         ORDER_CFGS_REF              = IBAPICUCFG
         ORDER_CFGS_VALUE            = IBAPICUVA
               .

     READ TABLE IRETURN WITH KEY TYPE = 'E'.
     IF SY-SUBRC = 0.
        P_ERRFLAG = 'X'.
        CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
     ELSE.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            WAIT = 'X'.
        DO 50 TIMES.
        ENDDO.
     ENDIF.

ENDFORM.                    " BAPI_CHANGE_CHARACTERISTIC


  &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2011 08:57:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379057#M1642675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-02T08:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: About BAPI:  BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379058#M1642676</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;Could you debug and check what values are being populated in &lt;/P&gt;&lt;P&gt;both IORDHDX and P_VBELN.&lt;/P&gt;&lt;P&gt;I think the UPDATEFLAG in IORDHDX should be set to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U:     Change an existing sales document&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;-Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2011 09:54:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379058#M1642676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-02T09:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: About BAPI:  BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379059#M1642677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yocoa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In IORDHDX, set the UPDATEFLAG to 'U'. This is to Update the sales order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sindhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2011 10:32:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379059#M1642677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-02T10:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: About BAPI:  BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379060#M1642678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sandeep2719 , sindhu157 ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply , and  there had does this setting , but still the situation....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;are there have other losing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 IORDHDX-UPDATEFLAG = 'U'. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2011 01:50:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379060#M1642678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-05T01:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: About BAPI:  BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379061#M1642679</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;Do you want to change characters name or characters value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2011 05:42:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379061#M1642679</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-12-05T05:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: About BAPI:  BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379062#M1642680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi madhurao123 ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, I want to modify the characteristic values .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And..In IORDHDX, it show the error message as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type: E&lt;/P&gt;&lt;P&gt;ID : V4&lt;/P&gt;&lt;P&gt;number: 248&lt;/P&gt;&lt;P&gt;message: there occurs error in ITEM_IN 000031&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type: A&lt;/P&gt;&lt;P&gt;ID : CU&lt;/P&gt;&lt;P&gt;Number: 13&lt;/P&gt;&lt;P&gt;message: Internal error , 31, 000031, CFG_IS_INCONSISTENT_OR_INCOMPLETE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yacoa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Yacoa Chen on Dec 5, 2011 6:49 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2011 05:47:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379062#M1642680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-05T05:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: About BAPI:  BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379063#M1642681</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;type: A&lt;/P&gt;&lt;P&gt;ID : CU&lt;/P&gt;&lt;P&gt;Number: 13&lt;/P&gt;&lt;P&gt;message: Internal error , 31, 000031, CFG_IS_INCONSISTENT_OR_INCOMPLETE{quote).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is showing that there is an inconsistency in characteristics check the combination of characteristic values in cus50 with out any incomplete then it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: madhurao123 on Dec 5, 2011 11:42 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2011 06:12:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379063#M1642681</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-12-05T06:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: About BAPI:  BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379064#M1642682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi madhurao123,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right , the new value of characteristic value which I want to set is different from the setting in CU50,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do I still could set the new value  , and  never mind the setting of CU50 ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes , kindly help me how to do it and  thanks you very much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yacoa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2011 07:19:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379064#M1642682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-05T07:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: About BAPI:  BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379065#M1642683</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;&lt;EM&gt;You are right , the new value of characteristic value which I want to set is different from the setting in CU50&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;This is ok because you want to change the characteristic values &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;do I still could set the new value , and never mind the setting of CU50&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Here you take that material that want to use in sales order.Enter that material and see the characteristic names and it is values.Change the vales and just simulate it.This is a transaction to simulate the values.This will give you an idea what the combination of values to pass.Example :motor values 1 for one characteristics then you have only option to check the body from  fanooc value 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2011 07:25:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379065#M1642683</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-12-05T07:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: About BAPI:  BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379066#M1642684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi madhurao123,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, I guess you misunderstanding my meaning , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wanna modify the characteristic values by my customerize program code which opening is 'Z' , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not through transaction code VA02 to modify it one by one.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yacoa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2011 08:11:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379066#M1642684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-05T08:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: About BAPI:  BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379067#M1642685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yacoa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understood that. I am asking you check cu50 to get the an idea about the consistency of the characteristics.The same bapi you can use to change the characteristics values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2011 08:14:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379067#M1642685</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-12-05T08:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: About BAPI:  BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379068#M1642686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi madhurao123 ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK....I think I know what you mean , and I'm sure the new value what I set is conform the consistency of the characteristics ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so I don't know why occurs the error message...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me tell more details, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example , there are two order item 10, 20 , and they are THE SAME MATERIAL, but different characteristic values ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(suppose item 10 - characteristic value is A , item 20 - characteristic value is B) ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so I use "BAPI_CHANGE_CHARACTERISTIC"  want to modify item 20 to characteristic value A , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so I  copy  the characteristic value of item 10  to item 20 , like this&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IBAPICUVA-VALUE     = ICUVA-VALUE.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The detail code as the code which I raise this question post , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I supose if there are any UPDATEFLAG is losing? so the new value is not update?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yacoa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2011 09:06:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379068#M1642686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-05T09:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: About BAPI:  BAPI_SALESORDER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379069#M1642687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the same problem during update the characteristics.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get the same error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you found a solution for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Arnfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2012 08:05:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-bapi-bapi-salesorder-change/m-p/8379069#M1642687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-25T08:05:35Z</dc:date>
    </item>
  </channel>
</rss>

