Outbound packing status is "Completed" before we pack in work centre

Hi,
Once picking is completed (source and destination HU is same) immediately system says "packing completed" , in fact the next step is packing.
Is it a right behavior in EWM?
If i use outbound without storage process, how the packing status in ODO would be set as completed without any HU.
Thanks,
Ganesan

Hi Ganesan,
I believe that the packing status is just dynamically determined based on the HU data in the delivery. The status does not consider the process oriented storage control. Therefor I think the behaviour is right.
Best regards,
Christian

Similar Messages

  • Unable prospects once campaign status is COMPLETED

    Hi!
    Our client needs to unable leads related to a campaign which status is COMPLETED.
    Tried by changing status with WF but though changing it, I still can convert the lead into an oppty.
    Any suggestion??
    Thanks in advance!

    Hi Ganesan,
    I believe that the packing status is just dynamically determined based on the HU data in the delivery. The status does not consider the process oriented storage control. Therefor I think the behaviour is right.
    Best regards,
    Christian

  • How to delete a PS network with status 'Technically Completed' (TECO)?

    Dear all,
    We have Webdynpro application, which will create a PS network in background. In the past it was working fine and many PS network  are created. Now we have a scenario where some of the networks which are with status 'Technically Completed' (TECO) needs to be deleted from system. I tried to delete it from CJ20N, but it was not possible as the status is set to TECO. Please let me know how to delete a PS network which is with status 'Technically Completed'  (TECO).
    Thanks in advance.
    Regards,
    Vijay

    The cluster goes out and finds all networks that are available.  This is an automatic process.  As long as there is a network there, it will show it.  If you don't want it to show, disable the interface and it will disappear.
    . : | : . : | : . tim
    Thanks a million Tim! Disabling the correct interface made it disappear!
    Actually, I had disabled the interface before I started this thread. When you posted the suggestion, I went back and looked at the network connections again and found out that I had disabled the wrong interface! My bad!
    However, here is the interesting thing:
    After I disabled the NIC and it disappeared from the FCM I physically disconnected its cable (actually I disconnected all unused / unconfigured NICs) ....then I re-enabled it. Now I see that FCM does NOT pick it up again.
    I think FCM picked up those NICs because at one time I had put that NIC in the production VLAN (from the switch side).
    One observation:
    If you have NICs in a HV machine which are not connected to a switch, they do NOT show up in FCM. Once you connect them to some network, they start showing up. I guess by connecting them to a network, they are able to see NICs in other HV nodes.
    Take a look at this screenshot. I have 6 NICs in there which are disconnected, none show up in FCM
    -Rajeev rajdude.com

  • Web and Design Premium pack stopped working

    Ever since yesterday, my Web and Design Premium pack from Adobe has stopped working. Upon starting the program, it tells me that I'm using a trial-version and that I need to buy a license. This is not true, I bought my license at a real store and I would like it to work properly like it did before. Re-entering my serial number did nothing, and it tells me that my 'serial number is invalid'.
    Something that might be a contributing factor to the problem is the fact that I switched internet modem yesterday. Does this have something to do with my Adobe pack not working anymore? If so, what can I do about it?
    I really hope I can get my pack working again, as I need it for my job.
    Greetings,

    http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    Mylenium

  • Re: Sales Order Output trigger after Overall status is Complete

    Hello Friends,
    We have a requirement where in , we want to trigger the Sales Order Ouput once the overall status is completed.
    Basically , the print program should trigger only when Overall status of Sales Order is Complete.
    Can anyone suggest any way to achieve this requirement ?
    Thanks in advance.
    Julie.

    Hi,
    For this we have to go for ABAP development/a "Z" program.
    This program/conditions will be maintained at the smart form level.
    This has to be triggered only when the over all status is complete.
    This thing we have to check in table "VBUK".
    Pass your order number into "VBELN" and check for the field "GBSTK".If it is "C" then only it should be triggered.
    We have to write a small line before this triggering program or condition is to be maintained in smart form if you are using it.Contact your ABAPer.
    Regards,
    Krishna.

  • Calling an applescript inside a Javascript, waiting for it to complete before moving on.

    I've got a handly little applescript compiled as an app that performs an Adobe Illustrator action which exports the current file's artboard #1 to a specific location at 300ppi. I can even call it from a javascript... which is great because I want a javascript that will loop x times, changing text and exporting on each each loop. But, each loop will export a file with the same name... not a problem, I'll rename the file after each loop, and javascript will wait patiently for me the export to complete before moving on to the next step, right? Wrong! Javascript just keeps moving through the script.
    So, how do I get Javascript to wait until the AppleScript completes the export? I can't have it wait a specific amount of time...export might take between 2 and 180 seconds.
    My ideas:
    1) can the applescript fire some sort of event letting Javascript know to move on?
    2) Is there a Javascript equivalent to AppleScripts "do javavscript " command, which would allow me to move the Applescript code into my core javascript?
    3) I could kludge a stopwatch on the first loop, checking every 10 milliseconds to see if the exported jpg file has been written... then using that as a baseline timer to pause later loops (not great, because the file will exist while AI writes it, and JS may rename it and try to export the second loop before the first is done).
    for (z =0; z<copyArray.length; z++) {
    var jpgExt = "-01.jpg";
    var newExt = ([z] + jpgExt);
    var exportASfile = File('/Applications/Adobe Illustrator CS5.1/Presets.localized/en_US/Scripts/VCS_Specialty Scripts/StandardExport.app');
    exportASfile.execute();  // export the file
    renamedFile = new File(exportFile); //variable exportFile is a reference to the jpg being written by the export
    renamedFile.rename (exportFile.name.replace(jpgExt, newExt)   ); // replaces part of the filename with a new

    I'd love to stay in one language, but since we're stuck on CS5 here, I have to make do.
    My task for the script:
    1) pop up a window to collect: 1a) number of copies, 1b) custom text, 1c) choice of three radio buttons -- I can't figure out how to do this in AS besides popping up three separate dialogs, I have it working great in JS
    2) loop step 1, write a named text frame with an array value containing a concatenation of 1a, 1b, 1c  -- pretty easy in either
    3) loop step 2, export the file at a higher than 72ppi resolution with artboard -- currently controlled by an action, can't be done programmatically in either AS or JS using CS5
    4) loop step 3, rename the file to match what was written to the text frame -- again, pretty easy in either
    In CS5, neither JS or AS have the ability to control the resolution of a jpg when exporting.... just the scale. So an action is required.
    My window JS has some of the basic edittext, statictext, buttons, panels elements, not too tricky:
    var win = new Window ("dialog","Cover Copy Builder");
        win.orientation = "column";
        win.add ("statictext", undefined, "Copy and Format Instructions");
        var input = win.add('panel', [0,0,320,300],  undefined, {borderless:true} );
        win.add ("statictext", undefined, "Output Summary");
    etc.
    Is there an AS equivalent to this sort of window building construction?

  • Is there a way that you can have two different text fields (email, phone) that one at least one of them must be completed before submitting the form? Can it be done using javascript in the validation tab? if so, how?

    Is there a way that you can have two different text fields (email, phone) that one at least one of them must be completed before submitting the form? Can it be done using javascript in the validation tab? if so, how?

    Here is one solution:
    // mouse up action for submit button;
    function GetField(cName) {
    // get field object for cName field with error checking;
    var oField = this.getField(cName);
    if(oField == null) app.alert("Error accessing field named " + cName + "\nPleae verigy field name, spelling and capitalizeation.", 1, 0);
    return oField;
    } // end GetField function;
    var oPhone = GetField("phone");
    oPhone.required = oPhone.value == oPhone.defaultValue;
    var oEmail = GetField("email");
    oEmail.required = oEmail.value == oEmail.defaultValue;
    if(oPhone.required && oEmail.required) {
    app.alert("Missing required fields.", 1, 0);
    } else {
    app.alert("Submitting form", 3, 0);
    // additional code for submission;

  • How to restart WorkItem if the status is completed

    Hello,
    Due to my mistake in PRD not in DEV i changed the WI status from started to completed.
    Now i have 110 WI affected and i dont know how to restart them, or make them finish normaly the right path.
    In the LOG i can see: Execution was ignored (work item has final status)
    Area: SWF_RUN
    Msg: 568
    Regards
    Laurynas Prikockis
    Edited by: Laurynas Prikockis on Apr 15, 2009 7:59 AM

    Resetting the status of a completed workitem? I think it is not possible , because you can reset the status of a workitem which is in in process state to ready state or the workitem which is in error state( May be not sure) but the status of completed workitem , not possible, because the workitem will not be in any of the users inbox.
    But will let you  know , if there is any possiblity
    Check this error when I tried to reset the status of workitem which is completed by using the FM
    SAP_WAPI_SET_WORKITEM_STATUS
    Status change from COMPLETED to READY is not allowed/possible

  • How to reverse/change SRM PO with status "transaction completed"

    We use Extended Classic scenario in our company.      There is a PO has outstanding G/R balance,   but user accidently hit the button "complete"on this PO  in SRM ,   in result the PO has been completed with status "transaction completed".    And nothing can be performed on this PO.   
    G/R balance is out there and now it has financial impact as it blocked the funding thru internal order. 
    Anyone have idea how we can resolve this problem.    Can we reverse/change the PO status?   Please note G/R canu2019t be entered in ECC as restricted.  
    Thanks,
    Frieda

    I think it was CRM_JEST. But the way to easily select the correct entries:
    1. Go to transaction BBP_PD
    2. Enter BUS2201 and the order number
    3. Double click on the status table, this will take you to SE16 with all the different status for the PO
    4. Select the entry to delete
    5. Enable debugging by putting /h into the transaction field
    6. Double click "CODE" and change this to "DELE"
    7. F8 (leave debugging)
    8. Click on the delete icon and save.
    Done.

  • Sales order status shows complete

    Hi Experts,
    I found a issue in Sales Cycle that is..
    Sales order overall status shows complete but actually only some material has been delivered and so many materials are pending. Can any one help Why it is happening?

    Hi,
    check, if there are allready delivery for the "pending material".
    The sales order is only checking if there are deliveries - not it the PGI is done.
    Regards
    Manuel

  • Change Report Status from "completed / passed" to "Completed"?

    With Captivate 5, is it possible to change the Report Status from "completed / passed" to "Completed"? The "completed / passed" given is causing issues with my LMS thus need "Completed" only. Is this possible with version 5 or even version 6?
    Thank you in advance for any help!

    Hi There,
    Thank you for reaching Adobe Community.
    You can select the below settings from Edit > Preferences >  Quiz > Reporting panel. You can change the Status representation to Incomplete > Complete.
    Here is the screen shot frm ScormCloud LMS:
    Thanks!

  • Set order status to completed if subsequent document is a proforma invoice

    Dear Experts,
    I created a debit memo request to create as subsequent document a proforma invoice only. This special business case has to do with customs purposes and should stop after the creation of the proforma..
    Now the debit memo request is still open and the next batch run is picking up the DMR again and create another proforma invoice.
    What I have to do to set the order status to completed after the first proforma invoice is issued?
    Thanks for your help.
    Kind regards
    Frank

    Hello,
    Check for the possiblilies of the following.
    In VOV8, slect the debit memo request order type, make the Order related billing type as F5 (Proforma - Order related).
    Check the item category for the Debit memo request item, standard is L2N. Maintian the billing relevency field as
    D-Proforma , maintain the completion as Colpleted after the first reference , if required.
    Prase

  • Close PO's with status Transction complete programatically

    Hi all,
    We are on SRM 5.0..I need to programatically close some PO's in the system which are in status "Transaction complete".Is there any std FM which can be used to close such PO's?
    Thanks!

    Hi
    Try these two FMs BBP_PROCDOC_GETDETAIL,  BBP_PROCDOC_UPDATE  and BBP_PROCDOC_STATUS_CHANGE
    Regards
    Virender Singh

  • Mass Change to activities status to complete

    Hi All,
    We have a requirment to Mass Change to CRM activities status to complete. How can we change status from open to complete?
    Thanks in advance.

    Hi Mark,
    In CRM , T code "MASS" is available in CRM GUI for mass changes to any field.
    You will have to select the business transaction object.
    Check if the status field is availble for changes. You will see two tabs one is Table & other is field.
    Select the particular field & execute. Then add the list of transaction. And execute & save.
    It will carry out mass change.
    Please let me know if you need further details.
    Regards,
    Rahul

  • How prevent movie from loading completely before playing?

    Hi,
    how do I prevent an swf from loading completely before
    starting to play in the browser? When simulating a download in the
    Flash application, several preload stages work perfectly, but not
    in the browser. Preload stages don't appear, instead it takes ages
    for the 3.5 mb file to completely load before displaying the first
    frame of the movie.
    I have tried inversing the load order in export settings and
    different flash versions, but just can't get it to work.
    Can someone help? Thank you!

    hi kglad
    I thought it should be that way; the point is that I don't
    want to add code that loads the entire movie before starting to
    play the first frame, but only a certain number of frames (i.e. 11
    out of 35, for example). I'm trying to do this with this code in
    the first frame:
    ifFrameLoaded (11) {
    gotoAndPlay("start");
    in the simulation, it works perfectly, but when uploading the
    movie and viewing it in html, the entire thing loads, and the
    preloader doesn't appear.
    Many thanks for your help.

Maybe you are looking for

  • SAP ECC 6.0

    Hi All,     Please give the more Information on SAP ECC 6.0. I don’t know any thing about this but have knowledge on SAP-ABAP, MM, ---etc. Please clarify below Questions     What is it. How it is work at Real Time. Thanks, Durga

  • Slow mid-2010 iMac

    I have a mid-2010 21.5" iMac (3.06GHz Intel Core i3 machine). It has 12 GB 1355MHz DDR, and a 500 GB HD. I've had this system for nearly 5 years, and it has easily been the best computer I've ever owned. It has also operated flawlessly for almost tha

  • Can I check texts my kids make if we share an Apple ID?

    Hello, can I check my kids texts through our Apple ID, even if I don't have the phone? I have suspicions.

  • Product Hierarchy and COPA

    Can any one tell me what is a prodcut heirarchy and how it is related to Controlling ( specially with COPA and Product costing). If the product heirarchy is changed, what are the things need to be adjusted in configuration for COPA and Product costin

  • Message Status Table

    what is the main use of the message status table in abap?