PP-WM integration - staging pick parts across two different plants

Hi,
My requirements are as follows,
I have a manufacturing plant A and a Sales plant B. For the vast majority of cases goods are manufactured in A, transferred to B and then sold. However in a minority of cases finished goods are transferred from B back to the manufacturing plant A to be consumed in the manufacture of a different finished good e.g. relabelling to another material number etc. Plant B is full WM HU managed.
I want to enable pick parts staging via WM-PP. I am aware of the PP/WM integration steps in customizing but I am having difficulty in staging from plant B to A.
I have set up a WM HUM managed storage location for the production supply area in plant A and assigned to the same warehouse as plant B
Production Supply area is defined in Plant A
Replenishment movement type is defined for storage type
Storage Bin created in Plant A exact same type as bins in plant B
Control cycle created to link Production Supply Area and Storage bin for component materials
Process steps
Create process order in plant A, list component material storage location as per production supply area storage location
Process order staging creates the transfer requirement correctly
However transfer requirement cannot convert to transfer order for staging. It does not appear to be able to recognise the stock in plant B and returns an error 'negative stocks not allowed in storage type'
My challenge is as follows, is it possible to setup staging of pick parts between two different plants using WM transfer orders?
Thanks in advance

Hi,
This is not possible. You can only stage from one plant and storage location - based on the supply area. The supply areas are maintained per plant and storage location and this is what the system will use for staging.
Regards,
Sinéad Curran

Similar Messages

  • Can a single server instance (Ip Port combo) be part of two different clusters?

    Hello,
              Is it possible for a single Weblogic 7.0 server instance to be a part of two different clusters?
              Thanks,
              Rajan
              

    Invoke a SLSB in a different cluster which will call invalidate() ?
              "Rajan" <[email protected]> wrote in message
              news:3d88a5b6$[email protected]..
              >
              > We have a requirement to synchronize in-memory data between the machines
              in different
              > clusters.
              >
              > Invalidate() propagates only within a cluster. I was wondering if there is
              a standard
              > way to update in-memory data on a different cluster if the underlying data
              stored
              > in a database, has changed.
              >
              > Thanks for help.
              >
              > Rajan
              >
              > "Cameron Purdy" <[email protected]> wrote:
              > >Rajan,
              > >
              > >> Is it possible for a single Weblogic 7.0 server instance to be a part
              > >> of two different clusters?
              > >
              > >No. Is there something specific that you are trying to accomplish?
              > >
              > >Peace,
              > >
              > >Cameron Purdy
              > >Tangosol, Inc.
              > >http://www.tangosol.com/coherence.jsp
              > >Tangosol Coherence: Clustered Replicated Cache for Weblogic
              > >
              > >
              > >"Rajan" <[email protected]> wrote in message
              > >news:[email protected]..
              > >>
              > >
              > >
              >
              Dimitri
              

  • Assign multiple internal parts (materials of different plants) to one MPN

    HI
    I have a requirement to assign multiple internal parts (materials of different plants) to one manufacture part number.
    but in HERS material type it allows to assign to only one .
    can  any body suggest how can I do this.
    Sreeram

    You can do that.
    1:Assign the new plant to the sales org / distribution channel - Enterprise structure
    2:DO the shipping point determination for the new plant.
    3:Extend the materials to the new plant.
    4:If there is intercompnay process, please check "Assignmnet of organizational units to plants" in navigation SD - Billing - Intercompany billing.
    5: Check if there are any pricing records, output records....et cwhich has Plant as parameters. if yes maintain the entries for the new plant.
    These are the things I could think of.
    Before deleting the existing plants, make sure there are no open documents existing for these plants, else system will not allow to delete.
    Regards
    Sai
    Edited by: Sai on Jun 1, 2010 4:19 PM

  • Playing two sound waves across two different sound cards simutaneously?

    Hello all.
    With the help from old board posts and the example VIs packaged with Labview 2009 SP1, I was able to get part of the way.
    The goal is to simutaneously play two .wav files, to two different sound cards. So far:
    1) I can play one wav file to either sound card
    2) I can generate two sine waves of different tones, and push each out to the two cards seperately simutaneously.
    But when I replace those two tones from #2 with .wav files, the wave files play alternately. So wav_1 plays to sound_card_1, THEN wav_2 plays to sound_card_2, not simutaneously.
    Is it even possible to play 2 wav files simutaneously out to different cards?
    I've included a VI of the attempt in #2 above. Disclaimer: my labview skills are minimal and this vi was very experimental so it's probably terrible form.
    Solved!
    Go to Solution.
    Attachments:
    sample_code.vi ‏23 KB

    Tzoom84,
    Since there is no way to buffer your sound output on the sound card and use hardware triggering you will be limited to software start timing.  You could use semaphores as you said, or simply wire both of the Sound Output writes in parallel inside a single while loop.  Since windows is nondeterministic the best you will likely achieve is the two outputs starting within tens of milliseconds of one another.  The time between the two starting will be affected by all other processes running on your system and may take much longer.  
    Regards,
    Sam K
    Applications Engineer
    National Instruments
    www.ni.com/support

  • How to merge 2 part of two different Domdocument

    Hi,
    I try to copy on subtree from a first DOMdocument to a second DOMDocument and I receive a java null pointer exception. How can I copy one part of a DOM to another ?
    CREATE OR REPLACE PROCEDURE testDom IS
    BufferString VARCHAR2(32767) := '<TEST>test to add</TEST>';
    BufferToAdd VARCHAR2(32767) := '<ADDED>Added</ADDED>';
    CurrDoc XMLDOM.DomDocument;
    BuffDoc XMLDOM.DomDocument;
    CurrDocNode XMLDOM.DomNode;
    ToAddNode XMLDOM.DomNode;
    ToAddTextNode XMLDOM.DomNode;
    ResultString VARCHAR2(32767);
    IntermediateString VARCHAR2(32767);
    BEGIN
    CurrDoc := XMLDOM.NewDOMDocument;
    CurrDocNode := XMLDOM.MakeNode(CurrDoc);
    CurrDocNode := XMLDOM.AppendChild(CurrDocNode,XMLDOM.MakeNode(XMLDOM.CreateElement(CurrDoc,'AddedTag')));
    CurrDocNode := XMLDOM.AppendChild(CurrDocNode,XMLDOM.MakeNode(XMLDOM.CreateTextNode(CurrDoc,'Add')));
    BuffDoc := XML.parse(BufferString);
    ToAddNode := XMLDOM.CloneNode(XSLPROCESSOR.SelectSingleNode(XMLDOM.MakeNode(BuffDoc),'/TEST'),TRUE);
    CurrDocNode := XMLDOM.AppendChild(CurrDocNode,ToAddNode);
    XMLDOM.WriteToBuffer(CurrDoc, IntermediateString);
    XMLDOM.WriteToBuffer(BuffDoc,ResultString);
    DBMS_OUTPUT.PUT_LINE('IntermediateDoc '||IntermediateString);
    DBMS_OUTPUT.PUT_LINE('Result '||ResultString);
    XMLDOM.FreeDocument(CurrDoc);
    XMLDOM.FreeDocument(BuffDoc);
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE(SQLERRM);
    END testdom;
    sho errors

    You should use importNode().

  • Load balancing within the same ACE across two different contexts residing on the same vlan

    I'm working on a design that requires traffic be sent to a different context in the same ACE. The question I have is can this be done when both reside on the same VLAN. Would the traffic in this case be handled at layer 2 instead of layer 7. Would I have to create a seperate subnet in order to provide loadbalancing?
    |__________________|
    |   | vlan 5         |         |
        |                  |
        |                  |
    Context A        |
                           |
                           |
                        Context B
    Thanks, Jerilyn

    by design, two contexts on the same box in the same vlan can't communicate. You have to use an external L3 device.
    A workaround may be to use two diferent vlans and then bridge between them with a loopback cable.

  • Sales organization for two different plant

    Hi,
    We have one company code , one plant as mfg.   and one sales organization  it is in live  we do all activity in those plant,  now in development along with this plant  we have created one new depot plant  and assign to exsting compnay code, we in this company we want to do both mfg  as welll as trading activity  now we have two Plant  so it is necessary  to create  two differenmt sales organization  for this,
    or with single sales organization we can do both the activity  , in case of sales order  how we can give the ref.  of Plant   thorugh which we want to dispatch the materils,  we have material  , vendor , custom commom in both plant.
    regards,
    zafar

    Hi Zafar,
    You dont have to create two sales organization for mfg plant and trading plant. With one Sales organization you can do all the activaity.
    Ie sales from mfg plant, sales from trading plant, Stock transfer from one plant to another plant. all the sales related transaction you can cover with one sales organization.,
    Like different vendor, material and custom can be handle with one sales organization.
    In terms of report SD will have all kings of report from which you can easily identify from this plant how much sales has been done. All the details you can get it.  
    Try with one sales org only, if any problem ur facing then let me know.
    Regards,
    Nagesh
    Edited by: Nagesh MS on Dec 7, 2011 11:37 AM

  • Restrict selecting multiple items across two ListBoxes

    Hello,
    I'd like to know, how to restrict user from selecting multiple items across two different ListBoxes.
    Reason I need this is I want to pass that selected item forward using only one button.
    Something like
    if Lb_Regular.hasSelected = true then
    passfunction(Lb_Regular.SelectedItem)
    elseif Lb_Patch.hasSelected = true then
    passfunction(Lb_Patch.SelectedItem)
    else
    Debug.WriteLine("Nothing is selected")
    Thanks in advance,
    TheCreepySheep

    Hi,
     You can try it like this.
    Public Class Form1
    Private Sub ListBox1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged
    If ActiveControl Is ListBox1 Then
    ListBox2.SelectedIndex = -1
    End If
    End Sub
    Private Sub ListBox2_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ListBox2.SelectedIndexChanged
    If ActiveControl Is ListBox2 Then
    ListBox1.SelectedIndex = -1
    End If
    End Sub
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    If ListBox1.SelectedIndex > -1 Then
    MessageBox.Show("Listbox1 has item selected - " & ListBox1.SelectedItem.ToString)
    ElseIf ListBox2.SelectedIndex > -1 Then
    MessageBox.Show("Listbox2 has item selected - " & ListBox2.SelectedItem.ToString)
    Else
    MessageBox.Show("No Item Is Selectd")
    End If
    End Sub
    End Class
    If you say it can`t be done then i`ll try it
    Thanks! Just what I wanted!

  • Using iCloud across two devices

    We have 2 Apple devices - a Macbook pro and an iPad mini. My wife has made the macbook hers using her own apple id. The mini is mine and I used my apple id, different from hers. How can we use iCloud across both devices with different ids?

    Hello lincolnbooth
    You would not be able to sync across two different iCloud accounts. Buy you can use her iCloud account to do everything iCloud data syncing and then use your Apple ID for purchases. Check out the article below for more information on what you can do for syncing purchases.
    Using your Apple ID for Apple services
    http://support.apple.com/kb/ht4895
    Regards,
    -Norm G.

  • Marking an event as part of two calendars?

    Is there any way to mark an event as part of two different calendars or am I limited to one?

    Hi Colin,
    Due to the way iCal works events can only be in one calendar.
    You can duplicate an event in another calendar by selecting the event, copying it (command-c), selecting the destination calendar from the calendar list and pasting (command-v). Incidentally, once you have copied the event details you can paste them into other applications as text.
    Best wishes
    John M

  • Consignment Pick up despatched from 2 plants should be picked up to single

    Hi All,
    Our client has specific required on consignment pick up process, company despatched the consignment stocks( fillup) to stores from 2 different plants, but while taking the consignment pickup, they needs to inward in to single plant, pls suggest is there any process to meet the requirement. stores sends the materials pertaing to both the plants which can not be differianciated.
    regards
    Murali

    hi
    consignment dispatch to two different plants to create the sale order for two different plants , but when you go to the delivery the its comes to deliverers, one invoice and ofter you can do the excise invoice , in single invoice comes at sale order partner function are same ,
    ofter you can do the consignment pick up, with reference to the consignment dispatch , in this you can select the one plant quantity , then you can do the your process,
    let me tell one thing , in sale order sold to party , is same or different ,
    please check this

  • How to handle transactions when two different databases are involved.

    consider two tables namely Table-A and Table-B part of two different databases namely ORACLE and MYSQL.
    Now the project requirement is updating the Table-A(ORACLE) and Table-B (MYSQL) as one transaction. i.e. either update both the tables or rollback both the tables.
    Now my question is how could i handle this situation using JDBC(Type-4) driver.Because i think at a time only one JDBC driver can be loaded into the JVM.

    NareshAnkuskani wrote:
    Now my question is how could i handle this situation using JDBC(Type-4) driver.Because i think at a time only one JDBC driver can be loaded into the JVM.No, that is not true.
    But anyway, you need to use distributed (XA) transactions. i believe that the latest version (5.0) of mysql actually has support for XA transactions. you need to use a to setup a distributed transaction and attach the connections for the two databases to that transaction. then it should function as you desire.

  • Same FGmaterial manufacturing in two difeerent plants

    Hi all,
    same FG material is manufacturing in two different plants andat the time of production planning ,how to evaluate the capacity of the each plant.
    But the plannning will be done based on the available capacity of the each plant.
    example,
    for the FG materail 'XYZ' , planning plant is 'A' and the the production plants are 'A and B'.And the Fg inventory stovck is keeping as stock in the plant 'A'.
    How to can i take a decission, how much quantity to be planned for the plant 'A' and for plant 'B'.
    Scenario is MTS.
    please provide the appropriate solution.
    Thanx in advance.
    Regards
    Srinivas

    Hi,
    If you want to consider stock from more than two plants, you can use Quota arrangement.
    Special procurement key 40 is not useful in this situation. Because in 40, you can assign one alt plant only.
    Quota arrangements you can use it for,
    1. Individual vendor
    2. Another plant
    3. Production version.
    Hope you you are well known in Quota arrangements. In tcode MEQI assign the plant.
    Regards,
    Dharma

  • Material Staging for Pick part from MF60

    Hi,
    I would like to do material staging for a Pick part from MF60.
    During staging I get the error as
    WM material staging for production order reservation not possible
    Message no. RMPU311
    Kindly can you tell me how is it possible to perform tthis action using MF60.
    Using LP10 I am able to perform this staging for pick part. But Business requires to perform if from MF60.
    Thank You

    HI,
    It is possible to do staging for pick parts using MF60.
    I am setting up this for a plant, and the existing plants are able to do staging with MF60 for Pick Parts.
    Do you know the configuration that are required for doing staging using Pull List..

  • Staging of PICK parts ....

    Hi Friends ....
    I am doing staging of pick parts against a Process order.As per my undrstanding for pick parts, system only stage material qty what is reqd for a Process Order.While for Crate it picks in the entire qty availale in Case.
    Here i have a queries, would appreciate if u could help me out.
    1) I have created a Process order qty for 1 in which 1 pc of the Component (child item) is required. I have 1000 pcs of inventory available in warehouse.
    As soon as I released my process order , TR gets created for 1 pcs but when I conveted it to Transfer Order , it picks all inventory available for child material (i.e 1000 pcs) for staging.
    Therefore wondering why it is picking the entire qty , I checked by Source Storage type settings for FULL STOCK REMOVAL but is not set.
    I am using Batch mgmt and entire inventory 1000 pcs lying in single batch , is it because of that ??
    Regards
    shrey

    Hi,
    When PrdOrd is released it generates TR for pick parts (generally, it is based on your settings - LP10 can also be used).
    I don't think the TO would be generated for 'whole inventory', maybe it is generated for the whole bin-qty, SU. Is your storage type SU managed? Maybe SAP wants to remove the whole SU. If partial picking is not allowed it will remove the whole SU.
    Another thing: Are you using pick-point in this process?
    Is your problem this?
    Csaba

Maybe you are looking for

  • I would like to purchase the latest version of Lightroom for students and teachers

    I am a primary school teacher and amateur photographer and I like to buy the version for students and teachers as I have been waiting for this latest version as I've worked with version several times but did not possess in my personal computer. Thank

  • Idvd cleaning up...still...

    Okay, i burnt a handfull of pictures and video clips on a dvd using idvd, took forever, left the computer on over night so it would finish, woke up in the morning dvd had popped out of the drive, but idvd still running, saying cleaning up, and wont l

  • Troubleshooting broken link

    This is my first try - I managed to upload my new website onto the server (netpark.net, not .Mac), but then needed to change one of the photo files. I somehow broke the link between the thumbnail and the full-size image. I've redone the iWeb file twi

  • Installing JSR014 on Mac OS X

    I'm trying to install the prototype for JSR014 in Mac OS X, but I am having trouble with the $J2SE14 environment variable I am supposed to setup for the scripts to work. I set it to point to /System/Library/Frameworks/JavaVM.framework/Home/, but that

  • Don't upgrade to Sun Storage 7000 Series 2009.04.10.2.1!

    The latest release of AmberRoad firmware (Sun Storage 7000 Series 2009.04.10.2.1) leads to a performance regression. It's recommended not update at this time. See the Fishworks Documentation for more information: http://wikis.sun.com/display/FishWork