Handling Unit Change Document does not exist

I have created a Handling Unit and made changes to the Handling Unit. When I go into HUMO > GOTO > Chnge docs, the screen is blank. Further to this if I display the status of the Handling Unit, the change documents is not ticked. Basically, I would like to see all change documents relating to a Handling Unit. Your assistance is appreciated. Txs Poobie

Hi,
You've checking the @ correct place to see Change Documents but why you're not able to see those ?
Are you sure that you've changed HU?
Check if any 'Data Changed' exists in Tab-General Info of HU. If any Changed  Date & By exists, then it should display in Change Docs.
Revert back.
Regards,
Anup

Similar Messages

  • Billing document does not exist in VF22

    Dear Experts,
       We are working on Invoice list it gives output with LR00.
    but we have created a new output type ZPGR and assigned in
        SD>Billing>Billing document>Invoice List>Maintain Output for Invoice list
         Prgram-RLB_INVOICE and smart form ZS_INVOICE_PACK_2_GRP
    and VF21 i was able club billing documents. but in VF22 while issuing output it give error 'Billing document does not exist'
    checked and found because VBTYP in VBRK for invoice list document(LR) it is 3. but RLB_INVOICE program checking values MNOPSU56.
    any idea how to deal with, is there any other program instead of RLB_INVOICE to assign smart form
    Please suggest
    Regards
    Siva

    Hi Sunkesula,
    below is the sample Z print program.
    i copy some of the code from RLB_INVOICE and change the sapscript calling method to smartform calling method.
    REPORT Z_TEST.
    INCLUDE XXXX. "you may define any include you want
    INCLUDE XXXX. ""you may define any include you want
    *       FORM ENTRY
    FORM entry USING return_code us_screen.
      DATA: lf_retcode TYPE sy-subrc.
      CLEAR retcode.
      xscreen = us_screen.
      PERFORM processing USING us_screen
                         CHANGING lf_retcode.
      IF lf_retcode NE 0.
        return_code = 1.
      ELSE.
        return_code = 0.
      ENDIF.
    ENDFORM.                    "ENTRY
    *       FORM PROCESSING                                               *
    FORM processing USING proc_screen
                    CHANGING cf_retcode.
      DATA: lf_formname           TYPE tdsfname,
                lf_fm_name            TYPE rs38l_fnam.
    * SmartForm from customizing table TNAPR
      lf_formname = tnapr-sform.
    * determine smartform function module for invoice
        CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
          EXPORTING
            formname           = lf_formname
    *       variant            = ' '
    *       direct_call        = ' '
          IMPORTING
            fm_name            = lf_fm_name
          EXCEPTIONS
            no_form            = 1
            no_function_module = 2
            OTHERS             = 3.
        IF sy-subrc <> 0.
    *   error handling
          cf_retcode = sy-subrc.
          PERFORM protocol_update.
        ENDIF.
      ENDIF.
    "call the fm of the smartform. You may pass in any data you would like to display here
    CALL FUNCTION lf_fm_name
    ENDFORM. " processing

  • Error "Account assignment 00 for  purchase document does not exist " when u

    Hai,
    I am encountering the following problem when posting a PO based Invoice using BAPI_INCOMINGINVOICE_CREATE.
    The error says " account assignment 00 for purchasing document does not exist".
    The scenario is very simple.  I need to raise an Invoice against a PO. the PO has a single line item of quantity 10 net price 10.  Tax code is U2 ( 7% tax).
    I am passing the following at header level.
    Invoice_indicator ( as 'X'),company code,doc date , posting date, gross amount (107, currency USD, calc tax indicator as 'X'.
    At line item i am passing Invoice document item 000001, po number , po item number, tax code(U2) item amount (100),
    Does this error has got any thing to relate configuration matters?
    Regards,
    Upender

    Hi Upender,
    In some cases, depending on the type of PO / Posting,
    you might have to populate the accounting data itab and pass in the BAPI parameter.
    you can select the accounting data from EKKN for the PO.
    Again it depends on the PO category, wether you need to populate Qty & Unit in accounting data.
    Further, the accounting data should be exactly the same as there in EKKN ( all the fields except Qty & Unit ).
    Thanks,
    Ram

  • How to handle "The specified resource does not exist" exception while using entity group transactions to purge WADLogs table

    Hi,
    We have a requirement to purge the Azure WADLogs table on a periodic basis. We are achieving this by using Entity group transactions to delete the
    records older than 15 days. The logic is like this.
    bool recordDoesNotExistExceptionOccured = false;
    CloudTable wadLogsTable = tableClient.GetTableReference(WADLogsTableName);
    partitionKey = "0" + DateTime.UtcNow.AddDays(noOfDays).Ticks;
    TableQuery<WadLogsEntity> buildQuery = new TableQuery<WadLogsEntity>().Where(
    TableQuery.GenerateFilterCondition("PartitionKey",
    QueryComparisons.LessThanOrEqual, partitionKey));
    while (!recordDoesNotExistExceptionOccured)
    IEnumerable<WadLogsEntity> result = wadLogsTable.ExecuteQuery(buildQuery).Take(1000);
    //// Batch entity delete.
    if (result != null && result.Count() > 0)
    Dictionary<string, TableBatchOperation> batches = new Dictionary<string, TableBatchOperation>();
    foreach (var entity in result)
    TableOperation tableOperation = TableOperation.Delete(entity);
    if (!batches.ContainsKey(entity.PartitionKey))
    batches.Add(entity.PartitionKey, new TableBatchOperation());
    // A Batch Operation allows a maximum 100 entities in the batch which must share the same PartitionKey.
    if (batches[entity.PartitionKey].Count < 100)
    batches[entity.PartitionKey].Add(tableOperation);
    // Execute batches.
    foreach (var batch in batches.Values)
    try
    await wadLogsTable.ExecuteBatchAsync(batch);
    catch (Exception exception)
    // Log exception here.
    // Set flag.
    if (exception.Message.Contains(ResourceDoesNotExist))
    recordDoesNotExistExceptionOccured = true;
    break;
    else
    break;
    My questions are:
    Is this an efficient way to purge the WADLogs table? If not, what can make this better?
    Is this the correct way to handle the "Specified resource does not exist exception"? If not, how can I make this better?
    Would this logic fail in any particular case?
    How would this approach change if this code is in a worker which has multiple instances deployed?
    I have come up with this code by referencing the solution given
    here by Keith Murray.

    Hi Nikhil,
    Thanks for your posting!
    I tested your and Keith's code on my side, every thing worked fine. And when result is null or "result.count()<0", the While() loop is break. I found you code had some logic to handle the error "ResourceDoesNotExist" .
    It seems that the code worked fine. If you always occurred this error, I suggest you could debug your code and find which line of code throw the exception.   
    >> Is this an efficient way to purge the WADLogs table? If not, what can make this better?
    Base on my experience, we could use code (like the above logic code) and using the third party tool to delete the entities manually. In my opinion, I think the code is every efficient, it could be auto-run and save our workload.
     >>Is this the correct way to handle the "Specified resource does not exist exception"? If not, how can I make this better?
    In you code, you used the "recordDoesNotExistExceptionOccured " as a flag to check whether the entity is null. It is a good choice. I had tried to deleted the log table entities, but I used the flag to check the result number.
    For example, I planed the query result count is 100, if the number is lower than 100, I will set the flag as false, and break the while loop. 
    >>Would this logic fail in any particular case?
    I think it shouldn't fail. But if the result is "0", your while loop will always run. It will never stop. I think you could add "recordDoesNotExistExceptionOccured
    = true;" into your "else" block.
    >>How would this approach change if this code is in a worker which has multiple instances deployed?
    You don't change anything expect the "else" block. It would work fine on the worker role.
    If any question about this issue, please let me know free.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Excise Invoice creation error -Billing document does not exists

    Dear Experts,
    I have created supplementary sales order, billing with refernece through sales order by VF01.
    Now I want to create Excise Invoice but system gives error Billing Document does not exists
    I have checked billing document in VBRK table & it is showing in table.
    My item categroy is L2N -and set it to C
    I have assigned Billing type under Outgoing excise invoice ->Assign billing type to delivery type still my excise invoice is not generating.
    Pl. guide me.
    Thanks
    Trupti

    Resolved my problem.
    Actually in Billing item categroy if you put SD Doc. Catg. as M you can do excise invoice even if you have not created the
    outbound delivery.
    So cycle will be Supplementary Sales Order->VF01 with ref. to SO->J1IIN -Excise invoice creation.
    Thanks to all.
    Trupti.

  • "Document  does not exist" exception when updating a Purchase Order, Agentry

    Hello Gurus,
    I updated a PO in SAP by calling the Bapi. It displays the error:
    com.syclo.sap.mm.steplet.POUpdateSteplet::throwExceptionToClient::1513::POUpdateSteplet - Document  does not exist |
    I checked on SAP and found the PO there. And in the log file, the PONumber, Company code are sent to the server. Then  why It throws the above exception.
    I spent a day but cannot find out what happen to the PO. Please help me. Thank you very much.
    Edit: Even though I hard coded the PO Number, it still display the error.
    JCO.Structure header = _imports.getStructure("IS_POHEADER");
      String poNumber = user.getString("transaction.PONumber");
      setValue(header, log, "PO_NUMBER", poNumber);
      String companyCode = user.getString("transaction.CompanyCode");
      setValue(header, log, "COMP_CODE", companyCode);
      String purchaseOrg = user.getString("transaction.PurchaseOrganization");
    JCO.Structure headerX = _imports.getStructure("IS_POHEADERX");
    setValue(headerX, log, "PO_NUMBER", poNumber);
    setValue(headerX, log, "COMP_CODE", "X");

    Jason,
    I checked the SAP error log and found the issue in the log. I am not sure if it is the cause of "Document doesnt exists. Please help me figure it out. Thank you very much.

  • Document does not exist (Message 06 619) in creation of PO

    Hi All
    Can any one help on this below issue:
    The error is 'Document does not exist' on each item that was on that RFQ to wrong vendor.
    That is because I sent them out on an RFQ with different vendor.
    Now I wish to process and save the PO to correct vendor.
    How do I get rid of those errors that do not allow me to save PO?
    Thanks
    Sada

    issue resolved

  • PO Print Preview  Error 06019 "Document  does not exist"

    Hi people , i`ve the following issue. I`ve noticed that when creating a PO if the user clicks con the "Print Preview" BEFORE Holding or Saving the document , the system will give the following error msg :
    Document  does not exist
    Message no. 06019
    And then the system will hang , you won`t be able to go back and the whole PO is lost . Does anyone knows how to solve this ? thanks a lot for any help .

    Issue already discussed in this link Re: Unable to Save RFQ and PO.

  • Shopping cart Document does not exist error while PO creation

    Hi Friends,
      We are in SRM 5.0 Extended Classic and ECC6.0. I am experiening a issue while sourcing. After shopping cart is created and ends up in sourcing cockpit, I try to create PO, I get the error 'Shopping cart Document does not exist'. I verified Number ranges, org structure, and config settings but unable to find a solution.
    This is at a critical stage where I am not able to create PO and hence process is not complete. I am not able to proceed further and need advise on how or where to look for possible issues. I did look at the other SDN postings but was not pertaining to mine.
    Thanks
    Rao

    hI
    Did you get below error message  **** pit.
    Data not found
    Document does not exist
    i believe the error message will not stop you to do sourcing.
    select and assigned to work area and assign source of supply and create a Purchase order.
    i also faced this error long back.
    br
    Muhtu

  • Error at the time of J1IFQ(Sub Contracting) "The Document does not exist."

    Dear All
    At time of Quantity Reconciliation for Sub-Contracting Challan (J1IFQ) i am getting the error " The Document does not exist."
    But 103 & 105 already made without any error.
    Please help me out.
    Chandrashekhar

    Hi,
    Could you please let us know process which you are following for it ?
    I hope it goes like this.
    - Create PO
    - Transfer posting goods to subcontractor
    - Create sub contracting challan
    - Receipt of goods
    - Quantity re concilliation
    - Closing the challan
    If it is with the above process..it should work..
    Thanks and Regards
    Deepak Gupta

  • 'Purchasing document does not exist' error while testing Inbound PO Idoc

    Hi experts,
    i am working on Inbound PO Idoc scenario. I am testing Idoc in WE19 with ORDRSP mesage type.
    Idoc type:ORDERS05
    Process code:ORDR
    FM:IDOC_INPUT_ORDRSP
    while trying to create PO it is giving an error 'Purchasing document does not exist' in we05.
    please suggest me how to resolve this???
    Regards,
    Bhuvan.

    Hi,
    first time i am testing this IDoc and i don't find any field in Idoc structure to provide purchase order value.
    any more inputs plz??
    regards,
    bhuvan.

  • CProjects Phase Approval : Approval Document does not exist

    Hello,
    I am trying to approve a phase in cProjects 4.0 (WD ABAP Based).
    When I goto Approval Tab --> Approval Document, it displays:
    Approval Document does not exist
    I have checked the configuration and everything looks correct.
    For Project Type I have activated the Form DPR_APPROVAL_HIER
    The ADS is configured properly.
    I also checked Note 874054 - You cannot start approval w/o approval document, and the config is as per this note.
    What else can be likely reasons for this problem.
    Any help is appreciated.
    Regards,
    Shubham

    Hi Shubham,
    As per SAP, ADS is supported by the following servers only:
    Windows server 2003 on IA32 32 bit
    Linux Suse SLES 9 on x86_64 64 bit
    Linux Red Hat EL 4 on x86_64 64 bit
    AIX 5.2, 5.3 64 bit
    HP-UX 11.11 on PA-RISC 64 bit
    HP-UX 11.23 on PA-RISC 64 bit
    Solaris 9 on SPARC 64 bit
    Solaris 10 on SPARC 64 bit
    Refer http://service.sap.com/pam - Netweaver 2004s - Additional Components.
    Check the Server on which your cProjects has been installed.
    Regards,
    Reema.

  • BAPI_PO_CREATE1 document does not exist

    Hi All,
    I'm creating P/O using BAPI_PO_CREATE1.
    But, below messgae returned and not created P/O.
    Type    Message
    E     Document   does not exist
    E     No instance of object type PurchaseOrder has been created. External reference:
    W     "Latest acceptable GR" date exceeded by a schedule line
    W     Effective price is XXXXXX USD, material price is XXXXXXX USD
    W     Can delivery date be met?
    W     Can delivery date be met? (Realistic delivery date: 2010.08.02)
    W     "Latest acceptable GR" date exceeded by a schedule line

    Hi SUNGJIN LEE
    Kindly check the dates provided form ur side and the functional config for the scheduled line and for creating the PO form it .
    Error would come if u have not provided the data as per your configuration ..
    Regards
    Swapnil

  • Document does not exist in the calender year 2006

    Hi,
    I am getting an error message while posting MIGO stating that "Document "XXXXXXXXX" does not exist in the calender year 2006" Please help to resolve this issue...
    Thanks in advance....
    Senthil Kumar

    Hi Senthil
    Try these steps
    Go to TCode SU01 ==> In that go to the change tab with your loging Name
    ==> go to Parameters tab ==> give Parameters MMPI_READ_NOTE with
    date
    format as YYYYMMDD (say today 20060612) and SAVE.
    Go to MMPI T-code and open the old periods which you want to post into,
    But one thing the period opening will be valid for only for the
    particular day only. After you complete the posting you have to close
    the periods through MMPV accordingly,
    Regards,
    Sachendra Singh

  • How to correct CIF error Base unit of measure does not exist?

    Dear experts,
    I'm trying to cif a location product with base unit of measure KG in R/3 and alternative unit of measure well maintained.
    it gives me a CIF queue saying that
    "Base unit of measure ZXX does not exist (Product 0000000000000XXXXXX has not been created)"
    I do not understand why, the unit ZXX does not exist in the alternative unit of measure for any of the materials managed
    I also checked CUNI table and ZXX is not there neither in R/3 or APO,
    Thanks for your help
    E

    Looks like the Alternate UOM --Zxx is not maintained in APO.
    2 ways to do this:
    (1) program- RSIMPCUST
    Re transfer all your UOM settings from R3 to APO
    (2) Manual Maintenance in APO:
    SPRO>SAP NETWEAVER>GENERAL SETTIGNS>Check UNits of Measurement
    Thanks
    Kumar

Maybe you are looking for

  • How do you get deleted app back

    Hi I've deleted my app to make phone calls please can anyone help to get it back

  • History Palate?

    I realize that this question is probably very "photoshop basic," but I can't figure it out to save my life! In school we learned how to use Photoshop CS3 for Macs, which had a history palate on the right side of the screen.  It was way easy to undo a

  • Folder will not open

    Please help. Whenever I try to open a personal folder on my desktop, the whole screen blinks and nothing happens. Similarly, when I try to use Finder, and click on the folder, Finder quits and the whole screen blinks. Any thoughts appreciated.

  • Swapping LR from one computer to another.

    I uninstalled Lightroom off one PC to install it on another.  I have a serial number but it doesn't recognize it when I try to register on the new computer.

  • CC for photographers does not work

    Bought CC for Photographers today (OSX version, macbook pro 4gb). After installing the software, Photoshop CC keeps asking for a serial number. Looks-like a 30 days trial version is installed. Adobe Chat couldn't help me. Any one some ideas? Thanks,