Error :Display document : Update was terminated.While displaying the PO

Hi All,
I am creating a PO with respect to contract in SAP 4.6C system using ME21.PO is getting created successfully.But when I want to display the same in ME23 it giving me a message 'Display document : Update was terminated'.( an express message is getting generated to view in SBWP transaction code ).
I went through some of SDN forums and checked the tcode SM13 to resolve the issue .I found that there is no ABAP dump got generated for the same .
Please help me to resolve the issue ..
Regards,
Praveen GB.

Hi Lakshman.
I did that, systesm is showing below  error :
   1      ME_CREATE_DOCUMENT              V1 NORMAL         Err
when click on that ,I got one more window with an option to check ABAP dump,But there is no ABAP dump exists for the same.
I cheked in ST22 also there is no DUMP available for the above issue.
Please let me know how to crack this issue.
Regards.,
Praveen GB

Similar Messages

  • Express Document:Update was terminated while processing the Order via VA02.

    Hi,
        User was trying to process order for orderlines say for Eg POSNR 20 to 400 for a particular order,He ended up with Express document :Update was terminated error.When i Checked in SM13 for the update termination errors,I got the following error.
    VI: 200 Item status (document &, item &) is missing.
    I checked the order (POSNR 20 to 400 ) in VBUP  table and the entries were missing for this order (Posnr 20 to 400 ).
    Appreciate you'r Inputs.
    Thanks
    Rakesh.

    Hi,
    Can you please send the detail message in express document.
    Apps

  • Error message "update was terminated" while cancelling  the billing documen

    Hi Experts,
    Kindly can you advise on the following issue. We are getting the error message  "update was terminated" while cancelling the billing document using transaction code VF11.
    Note: The accounting document associated with the billing document is not posted and also note that we have done a check with the Basis team who has confirmed back stating they are seeing the udpate error for the user "    ". The log says that the  update was terminated because the user was trying to enter some duplicate records into the database.
    We could observe that the cancellation document is not created and also we have confirmed with the FI that they still continue to have the billing document open in the customer balance statementu2026
    Thanks for your help,
    Mithun

    HI Mithun ,
    Check if that billing document is there in VFX3 . If it is there then try to clear it from there and then try to reverse it.
    Hopefully it will be done.
    Regards,
    Nikhil

  • MRKO Error : Express document "update was terminated" received from author

    Hi Gurus,
    When settling Consignment through MRKO we are getting error 'Express document "update was terminated" received from author xxxx' in ECD system.
    At workplace inbox, the error shows "Error Info...   XS 007: Address invalid".
    Please note that I am not getting any short dump at ST22 for the same error.
    My queries are:
    1. How can I create a short dump for this error....this will help in analyzing the issue.
    2. What are the probable reasons for this error can be.
    Thanks in advance for helping.
    Regards,
    MC

    Hi,
    I have tried SM13 and getting ERROR XS007(Address Invalid).
    Diagnosis says:
    The address specified is invalid or initial (address value, address type INT).
    Procedure:
    Enter a correct address that is suitable for address type INT.
    The formats are:
      1. INT (Internet Mail Address): <name>@<domain> or comment<name>@<domain> or  <name>@<domain>(comment)
      2. FAX(fax addresses): <country><number>
    ETC
    Now as already told, I have properly maintained mail-id in "Email" field & "StandardComm.Mtd" field as E-Mail  of the Vendor Master.
    The mail ID is my official ID and working.
    Please advice further.
    Regards,
    MC.

  • Error : Express Document "update was terminated" by XYZ.

    Hi,
    When I am trying to process one output type that I have created, I am getting an error
    Express Document "update was terminated" by XYZ.
    Here XYZ represents my userid .
    I have linked the output type to one printprogram. If I execute the print program standalone,
    it is working fine. But if I try to process the output , I am getting the above error.
    Please suggest the needful.
    Regards
    Rudra

    Hi..
    thnx for ur reply....I got the reason for error

  • Error:express document "Update was terminated" received from author

    Hi All,
    I m creating shipment frm the transaction VL01.
    While creating the shimpment i am assigning one Z output type and clicking on the planning phase on the shipment.
    After that i am saving my shipment.
    At this point of time my shimpmnet is created but after this(after saving the shimpment) if i am trying to do anything it is giving me the below error.
    Express document "Update was terminated" received from author "Sachin Yadav".
    Kindly help why i m gettng this error. How to remove this error.
    Regards
    Sachin

    SAP is telling you that the transaction failed and a rollback has been executed, due to some catastrophic error in the system.  These often arise from errors in exit coding....check ST22 to see if you can find anything...there may be a clue there....otherwise start looking at the changes you just made for the source of the error.
    This error occurs, most likely, because during the actual save to database operation, or because of something in follow-on processing launched during the save step (like a new background task for form output or something like that) an fatal error is occurring and SAP is detecting that and rolling back the body of work that was just committed to the database.

  • SmartForm error: Express document "update was terminated" received from aut

    Hi friends
    we requirement to send PO smartform through Print out as well as through mail.
    after creating PO i am getting popup box saying that :
    " Express document "update was terminated" received from author "XXXX".
    Please help me.
    my code as follows:
        IF sy-subrc = 0.
          CLEAR g_outop.
          SELECT  SINGLE ldest dimme FROM nach INTO (g_outop-tddest,
         g_outop-tdimmed) WHERE knumh EQ knumh.
          CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
            EXPORTING
              formname           = 'YNZ_PO'
            IMPORTING
              fm_name            = sf_name
            EXCEPTIONS
              no_form            = 1
              no_function_module = 2
              OTHERS             = 3.
          w_ctrlop-getotf = 'X'.
          w_ctrlop-no_dialog = 'X'.
          w_compop-tdnoprev = 'X'.
          CALL FUNCTION sf_name
            EXPORTING
              output_options     = g_outop
              user_settings      = 'X'
              wa_ynz_po_head     = wa_ynz_po_head
              control_parameters = w_ctrlop
           IMPORTING
             job_output_info    = w_return
            TABLES
              t_ynz_po_item      = t_ynz_po_item
            EXCEPTIONS
              formatting_error   = 1
              internal_error     = 2
              send_error         = 3
              user_canceled      = 4
              OTHERS             = 5.
    for mail
          CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
            EXPORTING
              formname           = 'YNZ_PO'
            IMPORTING
              fm_name            = sf_name
            EXCEPTIONS
              no_form            = 1
              no_function_module = 2
              OTHERS             = 3.
           CLEAR g_outop.                   " Commented by sharma
           g_outop-tddest = nast-ldest.
           g_outop-tdimmed = nast-dimme.
          w_ctrlop-getotf = 'X'.
          w_ctrlop-no_dialog = 'X'.
          w_compop-tdnoprev = 'X'.
          CALL FUNCTION sf_name
            EXPORTING
              output_options     = w_compop
              user_settings      = 'X'
              wa_ynz_po_head     = wa_ynz_po_head
              control_parameters = w_ctrlop
            IMPORTING
              job_output_info    = w_return
            TABLES
              t_ynz_po_item      = t_ynz_po_item
            EXCEPTIONS
              formatting_error   = 1
              internal_error     = 2
              send_error         = 3
              user_canceled      = 4
              OTHERS             = 5.
      i_otf[] = w_return-otfdata[].
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
          max_linewidth         = 132
        IMPORTING
          bin_filesize          = v_len_in
        TABLES
          otf                   = i_otf
          lines                 = i_tline
        EXCEPTIONS
          err_max_linewidth     = 1
          err_format            = 2
          err_conv_not_possible = 3
          OTHERS                = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Convert PDF from 132 to 255.
      LOOP AT i_tline.
    Replacing space by ~
        TRANSLATE i_tline USING ' ~'.
        CONCATENATE w_buffer i_tline INTO w_buffer.
      ENDLOOP.
    Replacing ~ by space
      TRANSLATE w_buffer USING '~ '.
      DO.
        i_record = w_buffer.
    Appending 255 characters as a record
        APPEND i_record.
        SHIFT w_buffer LEFT BY 255 PLACES.
        IF w_buffer IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
      REFRESH: i_reclist,
      i_objtxt,
      i_objbin,
      i_objpack.
      CLEAR w_objhead.
    Object with PDF.
      i_objbin[] = i_record[].
      DESCRIBE TABLE i_objbin LINES v_lines_bin.
    Object with main text of the mail.
      i_objtxt = 'Find attached the output of the smart form.'.
      APPEND i_objtxt.
      i_objtxt = 'Regards,'.
      APPEND i_objtxt.
      i_objtxt = 'Narasimha'.
      APPEND i_objtxt.
      DESCRIBE TABLE i_objtxt LINES v_lines_txt.
    Document information.
      w_doc_chng-obj_name = 'Smartform'.
      w_doc_chng-expiry_dat = sy-datum + 10.
      w_doc_chng-obj_descr = 'Smart form output'.
      w_doc_chng-sensitivty = 'F'. "Functional object
      w_doc_chng-doc_size = v_lines_txt * 255.
    Pack to main body as RAW.
    Obj. to be transported not in binary form
      CLEAR i_objpack-transf_bin.
    Start line of object header in transport packet
      i_objpack-head_start = 1.
    Number of lines of an object header in object packet
      i_objpack-head_num = 0.
    Start line of object contents in an object packet
      i_objpack-body_start = 1.
    Number of lines of the object contents in an object packet
      i_objpack-body_num = v_lines_txt.
    Code for document class
      i_objpack-doc_type = 'RAW'.
      APPEND i_objpack.
    Packing as PDF.
      i_objpack-transf_bin = 'X'.
      i_objpack-head_start = 1.
      i_objpack-head_num = 1.
      i_objpack-body_start = 1.
      i_objpack-body_num = v_lines_bin.
      i_objpack-doc_type = 'PDF'.
      i_objpack-obj_name = 'Smartform'.
      CONCATENATE 'Smartform_output' '.pdf'
      INTO i_objpack-obj_descr.
      i_objpack-doc_size = v_lines_bin * 255.
      APPEND i_objpack.
    Document information.
      CLEAR i_reclist.
    e-mail receivers.
      i_reclist-receiver = '[email protected]'.
      i_reclist-express = 'X'.
      i_reclist-rec_type = 'U'. "Internet address
      APPEND i_reclist.
    Sending mail.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = w_doc_chng
          put_in_outbox              = 'X'
           commit_work                = 'X'
        TABLES
          packing_list               = i_objpack
          object_header              = w_objhead
          contents_bin               = i_objbin
       contents_hex               = i_objbin
          contents_txt               = i_objtxt
          receivers                  = i_reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
      IF sy-subrc <> 0.
        WRITE:/ 'Error When Sending the File', sy-subrc.
      ELSE.
        WRITE:/ 'Mail sent'.
      ENDIF.

    Hi ashok
    thanks for your reply.
    i got the error at commit in the below Func module.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = w_doc_chng
    put_in_outbox = 'X'
    commit_work = 'X'
    TABLES
    packing_list = i_objpack
    object_header = w_objhead
    contents_bin = i_objbin.
    if i remove commit = 'X'.  no error but mail is not sending.
    please advice.

  • Error :  "Express Document  Update was terminated"

    Hi All,
               When creating a PO & after saving, I get a message PO number successfully created. But when I press "Back" button I immediately get a SAP mail "Express Document Update was Terminated".
    In SM13 - the following error is shown:-
    FM:- RV_MESSAGE_UPDATE Error:- TD 427: Element PO_TERMS_AND_CONDITIONS.
    I had read all the previous threads relating to this issue.
    Based on the above threads I checked the number range & it seems to be correct. So, I'd like to know what causes this error and also how to solve it.
    Any inputs related to this would be of great help.
    Thanks
    Ramky.G

    Hi Deivakaniraja,
                         Thanks for the response.
    Option 1 - the flag is already unchecked only.
    Option 2 - What should be checked in Terms & Conditions?
    Hi Volkan,
                      Thanks for the response.
    Actually am an ABAPer and am posting this message on behalf of my Functional.
    After double clicking the error line in SM13 only I'm getting this one below:-
    FM:- RV_MESSAGE_UPDATE Error:- TD 427: Element PO_TERMS_AND_CONDITIONS.
    Thanks & am currently debugging the error in program and also kindly let me know if there's any other solution that could be possible.
    Regards
    Ramky.G

  • Getting "Express Document Update was terminated" while creating BP..

    HI All
        I am creating Business Partner using HR Pernr using following BAPI's.
    1. BUPA_CREATE_FROM_DATA - To create BP.
    2. BUPA_ADDRESS_ADD - To create address..
    3. BUPA_ROLE_ADD_2 - To create role.
    4. BUPR_RELATIONSHIP_CREATE - To create relationship.
    5. BUPA_BANKDETAIL_ADD - To create acounts.
    6. BUPA_STATUS_ADD - To create status.
    BP is creating fine...along with I am getting the Error like "Express Document update was terminated received from author ......" . Error descriptin looks like below.
    Error Info...   CD 328: DUPREC:POS&BUPA_ADR&DP00243572.
    I have verified in SM13 T code...It is showing in BUPA_ADR_WRITE_DOCUMENT.
    Please suggest me how we can resolve this issue...
    Thanks in advance..
    Rama

    Hi Rama Krishna,
    This can also happen when your number ranges are incorrectly defined.
    Try checking number range assignment for BP and check in table if number already exist.
    We faced similar problem when migrated data from prod server and someone change the number ranges for PO.
    Regards,
    Mohaiyuddin

  • Error 'Express document "update was terminated" from the author'.

    Dear All,
      I have created a delivery doc(PGI) with ref to sales doc, it gave the
      del doc no. while creating billing do with ref to this del doc I am getting
      an error " update was terminated". when I cheched Vlo2n it says that the doc does not exist.
      Even I have done PGI the stock is not deducted( MMBE).
       Please help me to rectify this error.
       Thanx and Regards
        Narender.N

    Check if number range is maintained for accounting document to be generated at PGI level. You will have to consult an FI consultant for the same.
    Also check the document flow & there is high possibility that PGI is not saved, but number range utilized during the transaction.
    Regards,
    Rajesh Banka
    Reward points if helpful

  • MM01 -- Update Was terminated while copying the material from one plant

    Hi Experts,
    While I am trying to copy the material from one plant like ETPE to another plant ETPZ , its telling that material created.
    But when we try to display the created material in MM02 for plant ETPZ , it says that material does not exist.
    Note : After creating the material , if we try to move any transaction code it shows the error message box and  says that Update was terminated .
    Kindly help us to resolve this.
    Regards,
    Vijay

    Hi rob,
    we have put the debugging , if there is any badi , enhancement the debugger would have gone to exit or enhancement line but its not going to any where.
    and I have checked in sm13 ..
    its giving the error like update was terminated
    from funtion module : MATERIAL_UPDATE_DB
    Report name :      LGRAPU37
    row : 360.
    ABAP/4 processor: POSTING_ILLEGAL_STATEMENT
    but if we go and see in the row 360 ...
    CALL SCREEN 100 line only
    is there , even if we put the breakpoint in this line , while we are debugging , debugger is not going to that line .
    Note : if we see the screen 100 it shows the empty screen.

  • Express document "update was terminated received from the author

    Hi
    While I am posting the MIRO getting the same error. Once I post the miro system creating the document no and go back the screen system thronging the same error. if i edit the same no not finding the document.
    I have no problem with test server i,e duplicate of production server.
    SAP Patch level & kernel patch level on PRD & Test servers are same
    PRD server database patch is on 10.2.0.2
    Test server database patch is on 10.2.0.4
    Regards
    kamulugari Laxman

    Hi Jurgan
    I am getting the beloe message in SM13
    Update key      4C188E58E26B36FBE10000000A0A0119
    Client          500
    User            INDERSAIN
    Date            18.06.2010  Time       16:44:57
    Language        EN
    Account
    Report          SAPLMR1M
    Transaction     MIRO
    Enqueue key     20100618164614963680000200MDPRDCI.........................
    Context         :E:
    Information     (50) =  VB_WITH_ENQUEUE, VB_ENQUEUES_RELEASED,
    UD Ret. Code    9
    Status          Update was terminated
    Update server   MDPRDCI_MDP_00
    UD Client       MDPRDCI_MDP_00
    Local time zone INDIA
    Time Offset     1
    Error details   Class:     00         Number:    671
    00 671: ABAP/4 processor: SAPSQL_ARRAY_INSERT_DUPREC
    Report     LTAX4U04             Row        44
    Regards
    Laxman

  • Express Document "Update was terminated" while doing MFBF

    Dear All ,
    We are facing one critical issue while postion GR/GI document through MFBF t.code. We are getting above subject message .
    We can able to see the document created but when we go back.. it put this DUMP.
    Some experts saying may be it is due to Outform issue .. unit of Measure mismatch or Number ranges etc.....
    one strange thing is it is only occur on a particular plant which is go live recently.
    Please if anyone face such kind of issue ..pls do me know let know
    Many thanks
    Neeraj ...

    Hello,
    Update terminated.... this error can be of temperory data base updation problem also. If it was a number range issue, it would have gone for dump. Wait for a while, if the issue is persisting, then check with your ABAP expert, he will debug the transaction and find out.
    Prase

  • Express document "Update was terminated" in CS62 order BOM change

    Hi All,
    I am creating one sales order BOM with reference to Material BOM. While creating BOM, we have setup BOM creation in such a way that while creation BOM status will be inactive.
    While changing status to active using CS62 transaction, I am getting error Express document "Update was terminated" from author. And after BOM created in CS61 is getting deleted automatically.
    Regards,
    Sachin

    Hi,
    There could be a database related problem. Contact your Basis Pople.
    Regards,
    Siva

  • Express document "Update was terminated" received from author

    HI experts,
               while creating commercial invoice(F2) i am getting an error Express document "Update was terminated" received from author  i checked in SM13,  Error Updating Table J_1IPART2 this is the error i am getting, one more error iam getting while creating commercial invoice Excise invoice created for Billing document xxxxxxxx, and one more thing i didn't tick in excise group excise invoice during billing and i maintained dispatch number ranges for part2 also,
    Thanks
    seshu

    HI
    while creating invoice(F2) i am getting Excise invoice created for billing document,
    I think you have given the Check the option "Excise Invoice during billing " in excise group " that is the reason excise invoice is generating automatically
    1. My invoice is saving but not updating in document flow
      Excise Invoice number we can't see in  document flow in  the standard SAP
    2. after saving i am getting this error Express document "Update was terminated" received from author
    Ask your ABAPer debug the program based the error and find where you are getting the error exactly i think its number ranges issue
    3. one more thing i can create invoice again with same delivery number and invoice number range is updating, i checked accounting number range also, all those are fine
    Once invoice is done for full qty of delivery we can't create one more invoice
    4. I checked in SM13 Error updating table J_1IPART2
    5. I maintained J_1IINTPR2 number rangers for dispatch
    what is you mentioned in the point 4 & 5 table names are different make sure that which table you are maintained
    if i am wrong please correct me
    Regards,
    Prasanna

Maybe you are looking for