Error:update termination in va01

Hiee..
  While creating sales order in va01,i am getting the error "express document update terminated....".
After exectuing transaction st22,
Name of runtime error: DBIF_RSQL_SQL_ERROR
Exception:CX_SY_OPEN_SQL_DB
iN SM13,
Error in functional module rv_sales_document_add
In the include LV45UF0V,
181. UPDATE VBAP FROM TABLE DA_XVBAPU.
Throwing  an error  Database error text........: "ORA-00947: not enough values".
Checked for ranges and disk space bt there is no problem with either of them.
Can you plzz tell me the solution for the same.
Thanks in advance.

hi madhu,
code for updating:
DATA:
    BEGIN OF DA_XVBAPI OCCURS 10,
      STRU LIKE VBAP,
    END OF DA_XVBAPI.
  DATA:
    BEGIN OF DA_XVBAPU OCCURS 5,
      STRU LIKE VBAP,
    END OF DA_XVBAPU.
  DATA: VBAP_KEY(19) TYPE N.
  DATA: DA_FLAG_APODELTA.
  CONSTANTS: C_CAVE_APODELTA_APPEND LIKE RS38L-NAME
                                    VALUE 'CAVE_APODELTA_APPEND'.
  CONSTANTS: C_CAVE_APODELTA_INSERT LIKE RS38L-NAME
                                    VALUE 'CAVE_APODELTA_INSERT'.
  IF VORGANG = 'V'.
Sätze löschen
    LOOP AT FYVBAP.
      VBAPVB = FYVBAP.
      IF VBAPVB-UPDKZ = UPDKZ_DELETE.
        DELETE FROM VBLB WHERE VBELN =  VBAPVB-VBELN
                           AND POSNR =  VBAPVB-POSNR
                           AND ABRLI <> '0000'.
        DA_XVBAPU = FYVBAP.
        APPEND DA_XVBAPU.
        DELETE FROM VBEH WHERE VBELN = VBAPVB-VBELN
                           AND POSNR = VBAPVB-POSNR.
        IF NOT VBAPVB-OBJNR IS INITIAL.
        Objektnummer löschen
        CALL FUNCTION 'OBJECT_NUMBER_DELETE'     wird jetzt in Form
             EXPORTING                           CO_OBJEKT_ANLEGEN
                  OBJNR = VBAPVB-OBJNR.          bei Bedarf gelöscht
        Statusobjekt löschen
          CALL FUNCTION 'STATUS_DELETE'
            EXPORTING
              CLIENT = SY-MANDT
              OBJNR  = VBAPVB-OBJNR.
        ENDIF.
      ENDIF.
    ENDLOOP.
    DELETE VBAP FROM TABLE DA_XVBAPU.
    IF SY-SUBRC > 0.
      MESSAGE A102 WITH 'VBAP' SY-SUBRC DA_XVBAPU-STRU-VBELN.
    ENDIF.
    REFRESH DA_XVBAPU.
  ENDIF.
Sätze anlegen oder ändern
  LOOP AT FXVBAP.
ENHANCEMENT-POINT VBAP_BEARBEITEN_10 SPOTS ES_SAPLV45U.
$$-Start: VBAP_BEARBEITEN_10----
$$
ENHANCEMENT 8  OI0_COMMON_SAPLV45U.    "active version
    if VBAK-VBTYP = 'C'.     "call only if necessary            SP2 KH
    PERFORM OID_ADD_SHIP-TO USING VORGANG.             "SO3K113536 AWH
    endif.  "better readabl + performance                       SP2 KH
ENDENHANCEMENT.
$$-End:   VBAP_BEARBEITEN_10----
$$
    VBAPVB = FXVBAP.
    CASE VBAPVB-UPDKZ.
      WHEN UPDKZ_NEW.
        FXVBAP-MANDT = VBAK-MANDT.
        FXVBAP-VBELN = VBAK-VBELN.
        IF NOT FXVBAP-POSNV IS INITIAL AND
           FXVBAP-VBELV IS INITIAL.
          FXVBAP-VBELV = VBAK-VBELN.
        ENDIF.
        DA_XVBAPI = FXVBAP.
        APPEND DA_XVBAPI.
Ist das SOURCING und die APO-Verfügbarkeitsprüfung durchgeführt worden
und liegt eine Strecke vor?
        IF   FXVBAP-SRCPS EQ SRCPS_SUBITEM
            AND NOT FXVBAP-POSGUID IS INITIAL
            AND     FXVBAP-VWPOS   EQ 'APO3'.
            CALL FUNCTION C_CAVE_APODELTA_APPEND
              EXPORTING
                IV_DOC_NUMBER = FXVBAP-VBELN
                IV_ITM_NUMBER = FXVBAP-POSNR
                IV_POSGUID    = FXVBAP-POSGUID
                IV_WERKS_E    = FXVBAP-WERKS_EXT.
            DA_FLAG_APODELTA = CHARX.
        ENDIF.
      WHEN UPDKZ_UPDATE.
      Statusobjekt muß geändert werden, wenn sich der Positionstyp
      ändert
        MOVE SY-MANDT     TO VBAP_KEY.
        MOVE FXVBAP-VBELN TO VBAP_KEY+3(10).
        MOVE FXVBAP-POSNR TO VBAP_KEY+13(6).
        READ TABLE FYVBAP WITH KEY VBAP_KEY.
        IF SY-SUBRC = 0.
          IF FXVBAP-PSTYV NE FYVBAP-PSTYV OR    "Änderung Positionstyp
             FXVBAP-KZVBR NE FYVBAP-KZVBR.      "Änderung in Einzelfert.
            READ TABLE FYVBAP INDEX SY-TABIX.
            IF NOT FYVBAP-OBJNR IS INITIAL.
            Objektnummer löschen
            CALL FUNCTION 'OBJECT_NUMBER_DELETE'  wird jetzt in Form
                 EXPORTING                        CO_OBJEKT_ANLEGEN
                      OBJNR = FYVBAP-OBJNR.       bei Bedarf gelöscht
            Statusobjekt löschen
              CALL FUNCTION 'STATUS_DELETE'
                EXPORTING
                  CLIENT = SY-MANDT
                  OBJNR  = FYVBAP-OBJNR.
            ENDIF.
          ENDIF.
        ENDIF.
        DA_XVBAPU = FXVBAP.
        APPEND DA_XVBAPU.
    ENDCASE.
  ENDLOOP.
  UPDATE VBAP FROM TABLE DA_XVBAPU.
  IF SY-SUBRC > 0.
    MESSAGE A101 WITH 'VBAP' SY-SUBRC DA_XVBAPU-STRU-VBELN.
  ENDIF.
  INSERT VBAP FROM TABLE DA_XVBAPI.
  IF SY-SUBRC > 0.
    MESSAGE A100 WITH 'VBAP' SY-SUBRC DA_XVBAPI-STRU-VBELN.
  ENDIF.
Tabelle APODELTA füllen
  IF DA_FLAG_APODELTA = CHARX.
    CALL FUNCTION C_CAVE_APODELTA_INSERT
      EXCEPTIONS
        NO_INSERT = 1
        OTHERS    = 2.
    IF SY-SUBRC <> 0.
      MESSAGE A100 WITH 'APODELTA' SY-SUBRC DA_XVBAPI-STRU-VBELN.
    ENDIF.
  ENDIF.
ENDFORM.

Similar Messages

  • Update termination in VA01

    Hi,
    While I am creating a Sale order & when I save it. I am getting a message Sale Order xxxxx is saved.
    But I could not fine the sale order. I have found that Update terminations are happening with
    Function Module MCV_STATISTICS_UPD_V1_ORDER
    Status Update was terminated
    Report LMCS0U32
    Row 17
    Error details Class: 00 Number: 671
    00 671: ABAP/4 processor: SYNTAX_ERROR
    Please can anyone advise
    Thanks
    vinod

    Hi Vinod,
    Any way standard progam/function modules are causing the update termination. So even you find some issue, bt we can't solve that one, we have to implement oss notes ( If  issue is not in the user exit ).
    I can see some oss notes available referring this issue. you can check those. even you can see SM13 , where you can get even more details for update termination.
    you cn check the below Oss Note: 16966
    https://service.sap.com/sap/support/notes/16966
    When you create or change a document (VA01, VA02, VL01, VL04, VL02, VF01, VF04, VF02 etc.) update terminations occur in the ABAP processor: DBIF_RSQL_SQL_ERROR <table> in function modules
    MCV_STATISTICS_UPD_V1_ORDER   or MCV_STATISATICS_UPD_V2_ORDER   or
    MCV_STATISTICS_UPD_V1_DELIVER or MCV_STATISATICS_UPD_V2_DELIVER or
    MCV_STATISTICS_UPD_V1_INVOICE or MCV_STATISATICS_UPD_V2_INVOICE.
    A table from one of the following information structures is involved: S001 through S006 or S500 through S999.
    Additional key words
    Cause and prerequisites
    DB parameters NextExt and MaxExt of the table are not sufficient.
    Solution
    Change the DB parameters of the involved table:
    Increase NextExt by a factor of 10 and increase MaxExt to < 500. For detailed information on the procedure, please refer to the "Data Dictionary manual".
    Source code corrections
    Regards,
    Naveen Veshala

  • Error Update terminated

    Hi All,
    While revoking the SES acceptance I am shown a message the document XXXXXXXXX posted. immediately after this a POP UP comes which says Update was terminated. When I checked the details of this in T code SBWP it shows the Error INFO as " ME 803 - Quantity not completely distributed"
    What could be reason for this

    Hi,
    According to your error message, its like you're using multiple account assignment, try to check the qty / value distribution, you can correct it first than try to repost/save again the SE.
    There're some tcode to check the error, one is ST22, check also to SM21 and SM13.
    Regards,
    w1n

  • UPDATE termination in VA01 transaction.

    Hello Experts,
       I am stuck in one place. could you please help me for the same.
    I am uploding data in ZVA01 transaction using batch input session.
    while uploading 82-83 line items, and save it, i am getting the error. "SAPSQL_ARRAY_INSERT_DUPREC".
    i checked the error. it is from the include :LV45UF0K and this is the standard code.
    the code is given below :
    FORM KONV_BEARBEITEN.
      CHECK: FKONV_GEAENDERT NE SPACE OR
             VORGANG = CHARH.
      IF VORGANG NE 'H'.
        DELETE FROM KONV WHERE KNUMV = VBAK-KNUMV.
      ENDIF.
      LOOP AT FXKOMV.
        FXKOMV-MANDT = VBAK-MANDT.
        FXKOMV-KNUMV = VBAK-KNUMV.
        MODIFY FXKOMV.
      ENDLOOP.
      INSERT KONV FROM TABLE FXKOMV.
      IF SY-SUBRC NE 0.
        MESSAGE A100 WITH 'KONV' SY-SUBRC.
      ENDIF.
    ENDFORM.
    . error is : it is try to insert the duplicate entry in the KONV table.  i dont know why the error is comming and in which code the error is.
    i splitted the line items into 2-3 parts and then uploaded, this time it is uploading properly.
    i want to upload all line items in one time (82-83 line items).
    could you please suggest, what is the error ?.
    Thnaks in advance.
    RH

    Hi,
    the key for table KONV contains five fields:
    MANDT
    KNUMV
    KPOSN
    STUNR
    ZAEHK
    The code you included fills the first two and deletes the entries for these values first. So the problem is not in that value. The other three values are:
    KPOSN     Condition item number
    STUNR     Step number
    ZAEHK     Condition counter
    Where the last one is added just to make the whole key unique. Chances are that this field is not filled correctly in some user exit making the transaction fail at the point you indicated. Check in the dump if you can find out what the values are in this table and which ones generate the duplicate key error. Also investigate if the FXKOMV table is changed in user exits or custom pricing routines and check that code for bugs. It will be pretty hard to debug it all since you get the problem in BDC processing...
    Good luck,
    Gert.

  • Update Terminated Express document error triggered in VA01 Transaction

    Hi to All,
    I am facing problem when Sales Order is creating in VA01 Trasaction when document get created but after going to Va02 it is throwing error 'Update Terminated' I studied the Dump analysis and Update Analysis in ST22 and SM13 it is due to GETWA_NOT_ADSSIGNED. I cant understand what may be the problem. Can any one help me, Its urgent
    Please help

    > > check short dump in ST22 it will show more info on
    > > which variable/table is causing this error.
    > > one of the posisble reasons - WRONG vlaue in UPDKZ
    > > field.
    > > to check - set breakpoint to
    > > USEREXIT_SAVE_DOCUMENT_PREPARE and at the end of
    > this
    > > userexit check the value of UPDKZ field in XVBAP,
    > > XVBEP,... tables.
    > > It should NOT have 'U' in VA01
    >
    > Thanks,
    > Yes what u told is correct, after the
    > userexit_save_document_prepare the updkz is becoming
    > 'U' n how can we overcome this,  i have to harcoded
    >  with 'I' when that is 'U'.
    When i change XVBAP-updkz with 'I' then its not getting error but another error is coming of update termination. Error is 'sapsql_insert_duprec' but i check there are not Duplicate sales order and i also check the number intervals they are fine. Whay may the problem????
    Can any one help. plzzzzzzzz.

  • Express Document Update was Terminated in VA01 Transaction

    Hi to All,
        I am facing problem when Sales Order is creating in VA01  Trasaction when document get created but after going to Va02 it is throwing error 'Update Terminated' I studied the Dump analysis and Update Analysis in ST22 and SM13 it is due to GETWA_NOT_ADSSIGNED. I cant understand what may be the problem. Can any one help me, Its urgent
    Please help

    > > check short dump in ST22 it will show more info on
    > > which variable/table is causing this error.
    > > one of the posisble reasons - WRONG vlaue in UPDKZ
    > > field.
    > > to check - set breakpoint to
    > > USEREXIT_SAVE_DOCUMENT_PREPARE and at the end of
    > this
    > > userexit check the value of UPDKZ field in XVBAP,
    > > XVBEP,... tables.
    > > It should NOT have 'U' in VA01
    >
    > Thanks,
    > Yes what u told is correct, after the
    > userexit_save_document_prepare the updkz is becoming
    > 'U' n how can we overcome this,  i have to harcoded
    >  with 'I' when that is 'U'.
    When i change XVBAP-updkz with 'I' then its not getting error but another error is coming of update termination. Error is 'sapsql_insert_duprec' but i check there are not Duplicate sales order and i also check the number intervals they are fine. Whay may the problem????
    Can any one help. plzzzzzzzz.

  • "Update Termination" error when TECO is been done to Workorders in IW32

    Hi Everyone,
    I am facing some problem with IW32, what has happened is when I create a notifiaction and simulatenously do a TECO(technically completed) to a workoder in IW32, i get a error Update terminated.
    I problem is it is not cretaing th notification too, after when i create a notification and click on TECO icon, it leave the IW32 screen and says Order#XXXX and Notification %000000000001 saved.
    Note that recently the support pack has been applied to the system(ECC 6.0)
    so when i freshly create a WO# and create a notification and do teco immediately i do not have any problem and notification too gets created.
    I have problem only those WO# s which was created before support pack and notification and teco done now(i.e. after supprot pack is applied) .
    Please help me on this, every day this seems to be a problem i get a couple tickets on this and unable to rectify this error
    Regards,
    Raj

    Hi Everyone,
    I forgot to add the error that causes Upadte terminte,
    when i looked in SM13, it says Notification Missing,  Since notification and teco happening simulataneously this is happening, but why is that when notification created and done Teco before and after Support pack works..
    where as the WO# create before and notification and teco done later  has problem..
    is it some cofig problem..

  • UPDATE TERMINATED

    Namaste Guru,
    While raising an invoice for an sales order after doing delivery. While entering the T code VF01 I am getting the error "UPDATE TERMINATED BY AUTHOR".
    I used the T.code SM13 where there was an error and when I have clicked on the REPEATE UPDATE icon
    got message records could not be updated and when clicked on it it shows an error in the module RV_DELIVERIES_SAVE Type V1 Status error after repeating the update also I am getting the same error.
    Have used ST22 t code also
    Please help me with this I have been trying all the ways to rectify the error.
    Please help.
    With regards,
    madhav

    Dear Allie Barboni  ,
    A friend of mine had the same error and tried t codes SM13 and ST22 by which his problem was solved but the error appeared again.
    I have tried all the possible ways even used the help of an ABAPer but no solution had come so i had to reload SAP in my system.
    Hope your error gets through.
    With regards,
    Madhav

  • Update Terminated" on FB01

    Hi there,
    Can someone please help,
    I get the error "Update Terminated" on transaction FB01.
    The error only comes up if one the customer's cards (in FD02->Payment Transaction->Payment Cards)  is marked as a default card then otherwise the transaction goes through.
    On ST22 and the error message is as follows
    Nested call of Perform On Commit:
    Caller SAPLT X_HANDLER
    Program     SAPLT X_HANDLER
    Form SAVE_REG
    Form %_ORDER_FORM_LEVEL is also mentioned somewhere in the error message.
    One more strange thing about this is that the error only comes up in our QA system. The development
    system is ok.
    Is there anyone who has come accorss this or have an idea of what need to be fixed?

    Two possibilities that I can think of:
    A) Missing config in QA.
    2) Missing transport.
    Rob

  • Update Terminated Error in Va01-Help Appreciated

    Hi ,
        When I create Sales Order in Va01  for order type ZCS,ZCD, and when i try to view that in Va02- It gives "UPDATE Terminated " from author .
    I have already posted this in sdn before and i got the solution to check in ST22.
    I have found the FM that caused the error.This parameter ord_pre_imp was empty as there were no order number.
    CALL FUNCTION 'CO_BH_ORD_HEADER_PRE_READ'
           EXPORTING
                client              = client
                number_of_tasks     = number_of_tasks
                flg_ordnet_exploded = explode_ord_net
                flg_enq_set         = flg_set_enq
                import_message_id   = import_message_id
                caufv_single_imp    = caufv_single_imp
                trtyp_net           = trtyp_imp
                flg_no_gos          = flg_no_gos
                flg_called_to_copy  = flg_called_to_copy
           IMPORTING
                flg_ordnet_read     = flg_ordnet_read
           TABLES
                aufpl_tab           = aufpl_tab
                ord_pre_tab         = ord_pre_imp
                bedid_tab           = bedid_tab
                rsnum_tab           = rsnum_tab
                number_tab          = number_tab
                autab_tab           = autab
           EXCEPTIONS
                not_found           = 01.
      IF NOT sy-subrc IS INITIAL.
        RAISE not_found.
      ELSE.
    Need to know whether error due to configuration or technical.  what i should do in this case.
    U'r Help will be appreciated. Thanks in advance

    Hi,
    Check the error analysis in the ST22. Here you get the complete error analysis.
    Furthermore if you want to check the updation error, then go to SM13 and see the update error analysis.
    Hope this information helps you.
    Regards.
    Deepak SHarma.

  • Error 'Update Was Terminated' - While clearing an open item

    Hi,
    We are facing a problem where we receive an error - "Update Was Terminated" when we try to clear some entries for 3-4 vendors (posted in period 12 of year 2006. it happens only for those 3-4 vendors). We have identified the problem as follows:
    1) We ran program SAPF190 and found that there is a defference in the 'debit balance' and Total of line items' for these vendors. I ran program SAPF71 (in Quality server) which rectified some entries. However, some entries still remain incorrect and these entries that still remain incorrect are ones - "which have a posting date of 10 oct 2006, but the posting period picked up by the document header is period 12, instead of period 7". Now, some other documents posted for the same vendor on the same date have picked up the correct posting period i.e. 7. I am really baffled at how this actually happened and howcome the system allowed it??
    2) After running program SAPF190, there were some entries that got corrected (these entries were just not captured by the system in the balance field, and did not have the same problem as the entries mentioned above where the wrong posting period was picked by the system). When i tried to clear the line items for the vendors whose entries had been rectified, it still gve the update error. When i checked the number range status, i noticed something very odd:
    "The number range status shows a number much higher than what the system is automatically picking for the documents (e.g system picks 230 as the document number when posting, but the number range staus in FBN1 shows current number as 256). Also, once 256 is reached (i posted 26 documents for it) and we post the 257th document, the error remains and the status number now moves up 100 places to 356). At this time if i post another document it picks the number 258 instead of 356...and if i keep posting documents till 356 is reached, im sure when i post the 357th document, the status will jump to 456)
    Can someone please help me here!! I dont understand how and why this is happening!!
    Thanks!!
    Regards,
    Angad

    >
    Ravi Sankar Venna wrote:
    > Hello,
    >
    > Please let me know the ERROR name you are getting and what is the transaction code you are using to clear. (F.13 or F-44)
    >
    > Try to analyze the dump in ST22.
    >
    > Regards,
    >
    > Ravi
    Hi,
    The error is "Update was terminated" . It sends this message to my inbox!! After searching a bit i found about the two reports - SAPF190 and SAPF071. After running them i found some balance mis-match. I ran the two programs and it rectified those mis-matched entries!! However, even after that, it is giving me the same "update was terminated" error. We are using F-44 for clearing.
    This error is coming only for those entries which we had posted using a user-exit. Basiaclly these are entries for late payment which were programmed to be posted directly at the time of invoicing. I just checked the code of the exit, and these entries were (astonishingly) made directly into the BKPF and BSEG tables (infact the posting period was hard-coded to '12', which is why even when my posting date for these documents is 10.10.2006, it still enters posting period '12' in the header instead of '7'.). Therefore, there were balance mis-match when we saw the monthly balance in FK10N and compared it with the line items total for that month. However, on running report SAPF071, it corrected those entries, but the update error problem still persists!!
    The exact error:
    Update was terminated
    System ID....   QAS
    Client.......   100
    User.....   MOHGYA323233
    Transaction..   FB1K
    Update key...   4A206A2D00E5001202000000C0A80A35
    Generated....   04.06.2009, 11:24:59
    Completed....   04.06.2009, 11:24:59
    Error info...   F1 805: Clearing: Line item 001

  • Update termination error at the time of order creation and chamge?

    Dear gurus,
    Facing an error at the time of creation of order.
    system is giving update termination error & when we are going in change mode of that order system is giving an error message " SD document XXXX is not in the database or has been achieved"
    please treat on priority
    regards,
    krai

    Hi,
    Goto ST22 T.Code and analyse the error.The error message why it is terminated will be displayed here.
    Or go to SBWP T.Code in the user where you got this error and check the inbox.
    It will display why the error is appearing.
    Show the same to the ABAPer and ask them to work on it.
    I think your server may be slow and it will take some time to update the order created by you.But I am not sure.Check the error message.
    Regards,
    Krishna.

  • Update termination error at the time of order creation

    Dear gurus,
    Facing an error at the time of creation of order.
    system is giving update termination error & when we are going in change mode of that order system is giving an error message " SD document XXXX is not in the database or has been achieved"
    please treat on priority
    regards,
    krai

    Hello ,
    "Update terminated " error has two reasongs.
    First is system update  was not active and hence terminated
    For this to check Goto the transaction code SM13  and  check whether the SYSTEM UPDATE is active or not.
    If it is active ,
    Then click on the Option TOBE updated in the status  and execute, then in the next screen you can find some list of documents that are not updated and causing error .
    Click on MODULES in the screen and find the erro which causing this error.
    Most this kind of error will happen if something in the Funcion Module or USER EXIT is missing.
    Please check and revert back if you need further details
    Also check the link
    http://help.sap.com/saphelp_nw04/helpdata/en/e5/de870535cd11d3acb00000e83539c3/frameset.htm
    regards,
    santosh

  • STATUS_UPDATE error to update USER STATUS - Update termination error

    Hi All,
    I am using status_update FM in sales order user exit MV45AFZZ in a perform routine for updating user status in line item for sales order. There are 4 custom statuses created for the sales order line item. 1,2 3, and 4 by configuration. My job is to select one of those based on user selection.
    Scenario: During change order process using  VA02, I have to change the existing status to a third status when user selects the second one. That is for example, in VA02, user selects status 4 from previous status 3, and save, I have to make the status 4 inactive and save the new status 2 instead of 3 though user selected 3. How do I achieve this.?  ????Any programming example is really appreciated. Thanks!!!
    I am right now using STATUS_READ and reading the existing status 4. Then making it inactive using status_update FM. And updating the new status 2 as active one and 3 as inactive again. Two inactive updates and one active update is throwing an update termination error while saving the sales order.
    Any help is really appreciated. 
    Thanks
    Ricky

    Hi ricky,
    For saving any changes you need to have a Z-table.
    In programs we can't store the user selection. In your case you can create a z-table and store the status there and delete the last status. The process would be faster as you will always have one record in the table.
    . One more advantage is you can even track the changes through the Z-table(User who is changing it.)
    Hope this solution will surely help you.
    Cheers
    Suvi

  • Integrating SD with FSCM using WS-RM - Update Termination error

    Hello experts .
    We are trying to integrate SD with FSCM ( credit management) using WS-RM (without PI).
    Details of the issue and steps followed so far.
    Ideal Scenario :
    Once we create / change a sales order ( in SD ) , the interface Creditworthinessquery_out (WS Consumer ) gets triggered (in SD) and the subsequent response CREDITWORTHINESSQUERY_IN(Provider) is triggered from FSCM (with the details of creditworthiness).Once the query response in received an notification is triggered from SD to FSCM (asynchronous service).
    After receiving the query response the functionality of credit check happens while creating / changing the sales order .
    Configuration steps followed in SOAMANAGER
    We have created end points for all the relevant service interfaces (Providers) , and also created logical ports for the respective consumers.
    During the creation of  logical ports -  for the consumers we used the WSDL (of the providers) as the inbound message action.
    (This has been done to all the services query , notification that are relevant in our integration).
    Current behavior / issue .
    While creating sales order the sales order is not getting saved (getting updated in the database).System allows us to complete the sales order creation process and also we get a message as sales order saved successfully. But then there is a update terminated express document that pops up. Sales order is not getting updated  in the database.
    When I see the logs/traces in SOAMANAGER I see that the query out is successful , query in has the right response (in warning state though) . But no notification is being triggered ?? 
    How to overcome this update termination issue ?
    When we see the SM13 log , it points to SLD issue (LCR 010: Internal error in SLD API). why do we need a SLD without PI ?

    Hi ,
    Can you tell me more details of how you are testing this ? I was successfully able to impilment this solution (credit management using ws-rm in ehp5). If you can give me more details i can surely try to help .

Maybe you are looking for

  • Authorization Error while extracting data after applying SAP upgrade patch

    Hello All, Recently we have updated the SAP BW patch to 24 and ECC patch to 22. I have the access to perform extraction in RSA3 tcode in ECC. However, While performing the data load in BW, the process is failing at the Infopackage step with the follo

  • [Solved] High power consumption of eth0

    Hi everyone, i successfully installed Arch on my new Acer Travelmate P653-MG a few months ago with the Gnome DE. Everything worked fine until a few weeks ago, when i discovered a really hard power regression due to my network interface. Before i had

  • Inserting photo in iMovie, becomes still frame of video before it.

    When I insert a photo into my iMovie it creates a still frame of the video before. Doesn't matter where in the clips I put it and I've tried dragging a photo in from Finder and using the iPhoto in the iMovie application. And, if I put a photo after a

  • How to create contacts group on iphone5

    Hi How can I set up a contacts group on my iphone 5? All the help I can find online is outdated... I'm using itunes 11 OS X 10.8.2 (new imac)

  • Master Data Management in JAPAN ECC 6 Deployment

    Deployment of SAP ECC 6.0 in Japan. We are located in USA and are in the process of deploying FI, SD, MM in our Japan branch in Tokyo.  We are trying to find other companies that had similar deployment in Japan and learn from their experiences as to