Document Update Error

Hello Everyone,
                              When i update my document form (UDO) i get the following error
"Violation of primary key constraint  KPACK_PR. Cannot insert  duplicate key in object @PACK doument".
Sometimes i get error as
Corrupted Data Rows
I have more than 11 child table for an UDO 
I am Using SAP B1 2007 B PL14
Please Suggest
Regrads Manish

Hi ,
"Violation of primary key constraint  TalbeName_PR. Cannot insert  duplicate key in object @TalbeName doument".
I m also facing the same  problem. Please help me out from this problem.
Some times  "Corrupted Data's in Rows. Error.
I have created Master UDO 9 Child table [ 1 Header Table , 8 Master Line Table ]
Thanks & Regards
Madhubalan.R

Similar Messages

  • Express document update error in me21n

    Hai
       Iam working on 000 client, Iam not able to see my PO in the list.
    The error is "document update terminated by the user"
    In SM13 ,i have checked the error log and it is showing the cause as
    Module name -
    >me_create_document
    Type----->V1
    Status----->Error
    Please help me in resolving this error.
    Regards
    Anu

    Hi Anushka..
    Did u find the solution for this error ?(Express document update error in me21n) .. while creating PO.
    I am having the same issue now.. need ur support @ the earliest.
    Thanks in advance.

  • Document Updation error

    Dear Friends,
    Update was terminated
    System ID....   PRD
    Client.......   901
    User.....   KISHORE
    Transaction..   VL01N
    Update key...   F1BCFADF90BDF127B244001F29C866BA
    Generated....   28.11.2010, 12:29:10
    Completed....   28.11.2010, 12:29:11
    Error Info...   SSFCOMPOSER 018: Device type SAPWIN
    Please help me on this issue
    Regards
    Satya

    Please try to give more information as much as possible so that it will be easy for the members to give a suitable suggestion. I could see only VL01N which I presume, while trying to execute delivery, you were facing some issue.
    Anyhow,  for information, "Device type SAPWIN" relates to print output and hence, I have a feeling that your issue also relates to delivery output.  Take the help of your basis team and try the following:-
    Go to SPAD, select "Device Types" tab, key in SAPWIN against the field Delivery type, click Display.  Now from top click "Formats" icon.  If my assumption is correct, some delivery related output is configured which should be missing in this screen.  To know more about what is device type SAPWIN used for, go through note 21738
    thanks
    G. Lakshmipathi

  • I have Microsoft Word for Mac 2011, version 14.3.1.  When I try to open a document, an error occurs, says file type is "blocked from opening in this version."  This was NOT immediately after a version update.  Any ideas?  Thank you.

    I have Microsoft Word for Mac 2011, version 14.3.1.  When I try to open a document, an error occurs, says file type is "blocked from opening in this version."  This was NOT immediately after a version update.  Any ideas?  Thank you.

    Take a look here:
    http://support.microsoft.com/kb/953266
    If that doesn't help, I'd suggest you take up the question in Microsoft's own forums or with Microsoft support.
    Regards.

  • 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.

  • 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.

  • Earmarked funds - Express document "Update was terminated" error

    Hi,
    When i create a contract(RECN), a earmarked funds document getting created and it updates the table KBLK with single primary key BELNR.
    I see in the Tcode OK60, the number range assinged is '05' - 0200000000 to 0299999999.
    KBLK table has entries created from 0200000000  to 0299994311 which were created earlier.
    From this financial year, when i am creating a contract, the new BELNR is started again from 0200000000 series, hence it throws an error message "Express document "Update was terminated" since entries are already exist in the KBLK table.
    Finally i understand we have to change number range assignment.
    Where can i do this? Please help if my understanding is wrong, how can i rectify this issue.
    Thanks,
    Bharath.

    Hi,
    U can change the number range for the contract for this fical year and make it start from  0299994312 to 0299999999.
    But it seems u have already used most of the numbers, so go for a new number range for both the documents.
    Hope this helps
    Deepak

  • FMBBC Express document " Update was terminated error"

    Hi ,
    while saving data FMBBC i am getting saved message , after that if i come out of the Tcode i am getting message as
    Express document " update was terminated".I was debugging the standard code found that the error comes from SXOP table entry, This table is get filled from FM SO_EXPRESS_FLAG_SET. But this FM is called from background I think. There is no job also created.After displaying the message automatically the SXOP table entry is get deleted. I want to debug this FM or wht is the reason for displaying message.
    Regards,
    siva kumar

    Following steps may help you.
    1. GO to SM13 transaction.
    2. Check your update request.
    3. You can see exact point in the standard program where you are getting this message

  • 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.

  • 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

  • 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

  • When releasing PO error  occured Express Document " Update Terminated"

    hi all
         i am getting a strange problem ,
    while doing release of PO(purchase order) by t.code ME29N, i am able to release  and SAVE it properly with out any error.
    But when returning back to ME22N t.code to see that PO .
    i am getting this error :
    Note : - this error is coming for a particular TYPE of PO's and with
                in that TYPE all PO are not giving ERROR,
                Please tell me what can be reason,
    Express Document "Update Terminated"
    Runtime Error          POSTING_ILLEGAL_STATEMENT                           
           Occurred on     15.07.2008 at   11:03:24                                                                               
    Statement "CALL DIALOG" is not allowed in this form.                                                                               
    What happened?                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "SAPLSTXW " had to be terminated because one of the
    statements could not be executed.                                                                               
    This is probably due to an error in the ABAP program.                      
    Information on where terminated                                                                               
    The termination occurred in the ABAP program "SAPLSTXW " in "DISPLAY_OTF".
    The main program was "RSM13000 ".                                                                               
    The termination occurred in line 82 of the source code of the (Include)  
    program "LSTXWU02 "                                                     
    of the source code of program "LSTXWU02 " (when calling the editor 820). 
    The program "SAPLSTXW " was started in the update system.                                                                               
    000710                                                                           
    000720     if ( sy-binpt = false and                                             
    000730        ( ( cl_gui_object=>www_active = true or                            
    000740            itcpp-tdscreen = 'ITS' ) or                                    
    000750          ( cl_gui_object=>javabean = true and                             
    000760            itcpp-tdscabap = false ) ) ).                                  
    000770                                                                           
    000780       perform cc_display_pdf.                                             
    000790                                                                           
    000800     else.                                                                 
    000810                                                                               
    >       call dialog 'DISPLAY_OTF'                "ABAP-List-Preview         
    000830              exporting otf itcpp 0                                        
    000840            importing itcpp.                                               
    000850                                                                           
    000860     endif.                                                                
    shall i concern this with BASIS person , coz every PO not having this problem,
    i think it is related to time taken by SERVER for UPDATE is more then this error comes .
    OR is there any technical issue related to ABAP.
    regards
    sachin

    This problem will be caused by an output which will be triggered when releasing the PO. Check the messages in the PO for which one is causing the update error.
    Regards,
    John.

  • Error Msg: Express Document 'Update was Terminated'  in VF02 t-code

    Hi all,
    When I click on save in VF02 transaction I am getting message that ' Express Document 'Update was Terminated'  received from author 'XYZ'.
    After saving when I am seeing in header -output the output type not appearing.
    Please Help me Its an urgent requirement.
    Regards,
    vinod

    Hi Vinod,
    there is two reasons
    1) Number range is not specied limit define billing document number range.
    path- img sd- billing -define number range and see diffenettly i hope your problam willbe solved.
    2) t.code NACE  whether you have maintained the condition record or not check other wise please maintain it.
    i hope you have understood
    if your problam is solved don't forget to reward.
    thanks& regards
    surya

  • Open Delivery value update error in credit management

    Hi
    We have credit management active at delivery level. The value of open deliveries is not getting updated correctly for items with material substitution (material determination). For all other items, its getting updated correctly.
    E.g Let say the credit limit set in FD32 is 10000 and the credit limit used % is 98 and the credit exposure value is 9800.
    Now when I create an order with qty 10 for mat A, it creates a sub item B due to material determination and the value of the item is Rs.1200. In our system, the sub item with TAPS item category is relevant for pricing.
    Then I create a delivery in VL01N and save it.
    Now if i check in FD33, the credit limit used should be 101% and the credit exposure value should be 11000, but its not updating the open delivery value correctly. Its not considering the value of the new delivery.
    However, If I add a normal item (TAN) in the same sales order and create a delivery for that item and save it, its updating the credit exposure based on the value of the normal item in the delivery correctly.
    How to make the system update the open delivery values correctly by taking the items with material determination also into account.??
    Please advise if any specific settings need to be done.
    Regards
    Madhu

    Hi,
    the system updates open values for credit management. These are:
    Open sales order credit value (S066-OEIKW)
    Open delivery credit value (S067-OLIKW)
    Open billing document credit value (S067-OFAKW)
    The system updates the open values in standard SIS structures S066 and S067. Technically, the structures are transparent tables. You can display the contents using transaction SE16 or using table maintenance.
    The S067-OLIKW will give the open delivery credit values credit.Check in you system whether this table is updated with the delivery values for the credit account(customer number)
    RVKRED77 u2013 Reorganize SD credit data
    When updating errors occur, it enables you to reorganize the open credit, delivery and billing document values.
    If the table is not updated run this report in background.
    Regards,
    Saju.S

Maybe you are looking for

  • GifImageDecoder,  UnsatisfiedLinkError Exception

    Hello there I am getting the following exception during rendering pdf with fop and java. The stack trace is attached at the end of this message. It seems that the gif images could not be decoded because of a missing native library. The application is

  • DATE functions - Weekly report

    Please take a look at this loop that sort of plays with dates. The values returned are as follows lv_wreport_end_date = 04-APR-04 lv_wreport_start_date = 03-APR-04 I was expecting to get the first week of April ie, 01APR04 to 04Apr04. IF (To_Char(lv_

  • Wont read ipod

    When i got to update my ipod, it comes up with 'The ipod(my ipods name here) cannot be updated. The disk could not be read from or written to.' Can anyone help?

  • Ideas for Apple

    Hello know someone where you can sign ideas for Apple?

  • ECC SR2 install with SWPM

    Hi, We are running SAP ECC 6.0 SR2 system as non-unicode. Now we need to install this system on new server with OS- MS Windows Server 2012 and DB as MS SQL Server 2012. Can we use SWPM to install ECC 6.0 SR2 system. We can not install our system as S