MIGO 101 -- create one transfer requirement (TR) for several GI postings

Hi,
here is a problem I want to solve:
- When we are receiving our finished goods we do several (consecutive) postings, e.g. 2x50 for a total of 100.
- The total (100) is managed in one batch.
- Currently we get one transfer requirement (TR) for each GR posting
- Instead we want to cumulate all quantities posted into one TR (in order to create one transfer order from it).
Is there a standard SPRO setting for this?
Is there a user exit for this?
Thanks for any hints / ideas.
Andreas

The problem was resolved.
Thanks in advance

Similar Messages

  • How to create one more server node for SAP J2EE server?

    Hi,
    Can any one please suggest how to create one more server node for SAP J2EE server? I am using WAS700.
    Thanks and Regards,
    Smriti.

    Hai,
          Login into the Configtool(C:\usr\sap\SID\DVEBMGS<inst no>\j2ee\configtool) if ABAP+JAVA stack or C:\usr\sap\SID\JC<inst no>\j2ee\configtool) if JAVA stack
    click on the instance and and select the addserver button on the top to create a servernode for J2EE server.
    Thanks and Regards,

  • How does one transfer CS5 actions for use with CS6?

    CS6 installation, which was uneventful, has transferred none of my actions from my copy of CS5. The CS5 actions are located in the actions folder of the APPLICATION/PHOTOSHOP CS5/PRESETS/ACTIONS.  The "actions" folder in application support/adobe in my library is empty, and has always been so.
    Only the CS6 default actions are located in the same folder for CS6.
    I use imac i7, lion.
    Note that i also have CS3 and CS4 on my machine. This due to recent upgrade to CS5 and recent upgrade to LION, and my general paranoia.
    Must i load each action into CS6, one at a time?
    thanks to any and all.
    vince

    Re: how does one transfer CS5 actions for use with CS6?
    On a Mac - There are multiple ways to do this.  I have done them both ways. In order to do this you need to know where you have your actions stored, and you can move them all at once if you have them stored in the same location.
    1. You can load an action ONE AT TIME into your actions palette by:
         A. Open up the action palette and click on the little arrow with 4 little horizontal lines next to it on the upper right corner of the actions palette.
         B. Select "Load Actions" and a Finder window will open up and you can search your computer through this window for your actions.
         C. Click on the action from the Finder window then click 'Open' at the bottom right of the finder window.
         D. To save these so that they appear every time you open up your actions palette, go back to the little arrow at the top right of the actions palette and when the drop down window opens- click on 'Save Actions'. It will select the location where the          actions are currently stored as the place to save them. If you want to change that path, you can do it at this time in the little path window.  I just leave it, since I keep all my actions stored in the same file.
    2. TO MOVE MULTIPLE ACTION SETS AT ONCE
         A. Open up CS6 (or CS5) and move the Photoshop workspace it to the right side of your computer screen so you can see your desktop on the left side.
         B. Open up your Finder search window from your dock (the square blue head icon thingy for those who are new to photoshop). Move this to the left side of your screen so you can see the Photoshop work space on the right and the Finder window          on the left. In the Finder window, navigate to the file where all your actions are stored, select all the actions in the file (command+A will select everything in the file if you are actively inside the open file) or you can select multiple files           individually by continuously holding down the command key and clicking on the different actions you want to move.
         C. With the Photoshop workspace visible on the right, and the actions palette open so you can see that the actions actually transferred - In the Finder window, click the selected actions you want to load and drag them over to the Photoshop           workspace.  I did this without an image open, I just dragged them onto the empty workspace.  The actions should all appear immediately in the actions palette that is open.
         D. To save these so that they appear every time you open up your actions palette, go back to the little arrow at the top right of the actions palette and when the drop down window opens click on 'Save Actions'. It will select the location where the           actions are stored as the place to save them. If you want to change that path, you can do it at this time in the little path window.  I just leave it, since I keep all my actions stored in the same file.
    I hope this helps. 
    and I hope there are no typos. 

  • Planning - creating one Freight order each for one Freight unit

    Hi,
    We have a scenario where we want to create one freight order for each freight unit from automatic planning.
    Please guide me if the above scenario can be executed.
    Regards,
    Renuka

    3rd option which is kind of cool - if you set up an incompatability between this freight unit type and any other freight unit (including itself) then it will only be able to build one FU per Freight Order.
    Note that I would expect this to be more processor intensive during optimisation than the capacity constraint option, but a more flexible overall.

  • Creating one jar archive out of several jar archives

    I have a problem with jar files. What i am trying to do is:
    Build one jar archive out of several jar archives. But i always get a ZipException. I opened a JarOutputStream and tried to write JarEntry objects to the stream by using the putNextEntry() method.
    here my code:
    // finalJar is the file to with i want to write
    // final Manifest is the manifest for that jar archive
    try {
    fout = new FileOutputStream (finalJar);
    jout = new JarOutputStream(fout,finalManifest);
    } catch (IOException io) { // log }
    // curJar ... is the current jar archive as JarFile Object
    Enumeration entries = curJar.entries();
    while (entries.hasMoreElements()) {
    JarEntry curEntry = (JarEntry) entries.nextElement();
    try {
    jout.putNextEntry(curEntry);
    } catch (ZipException ze) { // log}
    I get this error: (for every entry the same error !)
    java.util.zip.ZipException: invalid entry size (expected 6010 but got 0 bytes)
    at java.util.zip.ZipOutputStream.closeEntry(ZipOutputStream.java:188)
    at java.util.zip.ZipOutputStream.putNextEntry(ZipOutputStream.java:116)
    at java.util.jar.JarOutputStream.putNextEntry(JarOutputStream.java:90)
    at GenerateData.createFinalJARArchive(GenerateData.java:361)
    at GenerateData.run(GenerateData.java:87)
    at GenerateData.main(GenerateData.java:72)
    I hope you can help me
    Thanks in advance
    Stefan Siegl

    while((c=in.read())>=0) jout.write(c);I guess you mean with '>' the bigger as '>' char
    .right ?Yes, the "greater than" sign.
    Just a standard stream copying procedure.
    >
    I use your code and set the compression to compressed
    jout.setMethod(ZipOutputStream.DEFLATED);
    jout.setLevel(8);
    jout.putNextEntry(curEntry);
    what i get is this exception:
    java.util.zip.ZipException: invalid entry compressed
    size (expected 787 but got 786 bytes)
    at
    java.util.zip.ZipOutputStream.closeEntry(ZipOutputStrea
    .java:193)
    at
    at
    at
    t
    GenerateData.createFinalJARArchive(GenerateData.java:51
    at GenerateData.run(GenerateData.java:89)
    at GenerateData.main(GenerateData.java:73)
    So there is one byte missing! But i dont know where
    ?!It seems one can't reuse the entry.
    Try to create a new one:
    //jout.putNextEntry(curEntry);
    jout.putNextEntry(new ZipEntry(curEntry.getName()));And I think it's a bad idea to try to change
    the compression level between the entries.
    At list untill you haven't got it working somehow.
    >
    But i finally want to do is to store the entries (and
    the data) uncompressed but if i read byte by byte
    there would not a uncompression, would it ?No. You read the data uncompressed.
    here I also got an exception, indicating that the read
    size was invalid.
    Exception when doing it like this:
    jout.setMethod(ZipOutputStream.STORED);
    jout.setLevel(0);The setLevel(0) is redundant here.
    jout.putNextEntry(curEntry);
    is:
    java.util.zip.ZipException: invalid entry compressed
    size (expected 2805 but got
    6015 bytes)
    at
    at
    at
    t
    java.util.zip.ZipOutputStream.closeEntry(ZipOutputStrea
    .java:193)
    at
    at
    at
    t
    GenerateData.createFinalJARArchive(GenerateData.java:51
    at GenerateData.run(GenerateData.java:89)
    at GenerateData.main(GenerateData.java:73)
    I hope someone can help me with that
    Regards
    Stefan Siegl
    So my variant is:
    jout.setMethod(ZipOutputStream.STORED);
    while (entries.hasMoreElements()) {  
       JarEntry e=(JarEntry) entries.nextElement();  
       //write the appropriate entry to jout
       jout.putNextEntry(new ZipEntry(curEntry.getName()));
       //copy the actual data to jout  
       InputStream currIn=curJar.getInputStream(e);  
       int c;  
       while((c=in.read())>=0) jout.write(c);  
       currIn.close();
    }Hope we finally took over.

  • How to create one pdf file out of several pages documents?

    I have created several seperate pages documents and want to merge them now to one pdf file. Currently if have exported only single pages documents in the pdf format to the documents app from readdle. I would prefer to order them in pages (e.g. in a folder) and convert the whole folder afterwords to a single pdf document.
    Maybe there is another and better way to do it. Your help is very welcome.

    In iOS:
    Combine the pages files into a single document, (Pages will not batch print)or
    Find an app for iOS that will facilitate combining PDF files into a singe file. (To be honest, I have my doubts about finding one).

  • How to create a central iTunes library for several Macs/PCs?

    Hi!
    I have 2 PCs, one MacBook and hopefully soon an AppleTV. I want them all to use the same Data. On PC and Mac the songs should be available with Coverflow... same for Apple TVs BackRow.
    The Audio-Files should be stored on a Synology DS207 (NAS, small Linux-Server with FTP, AFP and SMB support, as well as DAAP).
    DAAP would be great, but AFAIK it cannot handle things like cover art...
    What about storing the local iTunes library on a mounted smb device? It is not so important to add files from every iTunes client to the library, but I every iTunes should have
    a library like a local library (covers...)
    Any ideas? Or does someone know a nice tutorial?
    best regards
    Andreas

    Let me get this straight, you have an external drive of some description that all computers can access and this is where your music files will be located.
    If so, one way to use the same music files on all computers would be to link the shared music folder to each iTunes library on the seperate computers - this can be done by dragging and dropping files or folders (make sure that you've gone to preferences - general and deselected "copy to iTunes library when adding.") However - this method would mean that each computer has a different library!
    (You could always get one library linked and create all your playlists and then see if you can copy that library file and place it in the iTunes folders on the other computers - but this may not work if the file path is different - but worth a shot)

  • What software should I use to create one long movie out of several short clips?

    Hi, I'm not a future film maker.  I'm just trying to find the easiest way to stick a bunch of imported Quicktime movie clips into a single file.  Got to be an easier way than firing up iMovie and figuring that out.
    Thanks for your assistance with this n00b question.

    I'm just trying to find the easiest way to stick a bunch of imported Quicktime movie clips into a single file.  Got to be an easier way than firing up iMovie and figuring that out.
    It normally depends on what software you have available and how you plan to play the file. For 'drag 'n drop' ease I would probably use the free MPEG Streamclip app.
    1) Give the files to be joined alpha-numeric names indication the order in which you want them joined. (E.g., if you have 8 clips to join together, name them clip1, clip2, ..., clip8)
    2) Select and simultaneously 'drag 'n drop' all files to the open MPEG Streamclip wirk window.
    3) Play/scrub the playhead to ensure the clips are present and ordered as desired.
    4) Save the resulting file as required. Note: The "Save As..." option will quickly save the joined files to a new files container but, depending on audio and video compression formats used in the original clips, does not ensure all audio or all video ends up on the same audio and video tracks. If you want to ensure all all audio is flattened to single audio track and all video is flattened to a single video track, then you you may have to export the joined content. (I.e., some player apps like the TV only play one selected/defaulted audio and one video track at a time unlike apps like the QT 7 player which can simultaneously play up 99 audio and/or video tracks simultaneously.)

  • How to use one external jar (SDK) for several apps in WTK?

    Hi,
    I have one external jar (SDK) I use for developing J2ME applications.
    Every time I have no choice but to copy this JAR (SDK) into my current application lib directory.
    I am building a family of MIDlets that I dont want to put into just one huge JAR but rather to have several JAR files for each application.
    In C world I need only to tell the linker where it should pickup ".so" or ".lib" file.
    Is any way to do the same with WTK? Or any other J2ME development tool?
    Thanks in advance,
    Andrew

    Link to wtk2.5 beta has been posted to this forum
    while ago. It's worth to try it It is MSA1.0
    compliant. It has many new JSRs.TomTom,
    Thanks again.
    I tested the WTK2.5BETA and here I ahve strange fact. My application works perfectly on WTK2.1, WTK2.2 WTK2.3 BETA but it crashes with a very weird message on WTK2.5BETA
    Method............: 22482ac 'com/tinyline/app/SVGEventQueue.handleEvent (virtual)'
    Stack Chunk.......: 2216e44
    Frame Pointer.....: 2216e7c
    Current IP........: 224820b = 22481fc + offset 15
    Previous Frame....: 2216e58
    Previous IP.......: 226afd6 (offset 26)
    Frame size........: 3 (2 arguments, 1 local variables)
    Argument[0].......: 20bc0b8
    Argument[1].......: 2216d7c
    ALERT: java/lang/NoSuchMethodError: No such method dispatchEvent.(Lorg/w3c/dom/events/Event;)Z.
    So I thought, OK it was compiled under WTK2.1 may it was the reason of crash.
    I took sources and compile them under WTK2.5 BETA. I came up with the same result - crash.
    Thanks,
    Andrew

  • WM: Transfer Requirements with just one item

    Hi experts,
    does anybody know if it is possible to customize WM in order to create just one item per transfer requirement.
    My problem is that in material staging from PP, I have customized creation of transfer requirements on order release. If OF consist of three components, system create one transfer requirement with 3 items, nevertheless I need to create 3 transfer requirement.
    Thanks

    No std funcationality available but i have done in the Past using the PO item user exit to force the user to enter the one line item PO only or the same item in the next line.
    so with the developement it is possible

  • SAP WM-PP: Spit transfer requirements

    Hello,
    We are working in a WM-PP scenario with transfer requirements and transfer orders.
    For one process we need to use the "2 step picking" functionality of the SAP system.
    In the release of the production order, the system is creating the transfer requirements. SAP is creating one transfer requirement per operation, with many items, one item for each component in the operation.
    This is the problem, instead of one "big" transfer requirement with many items, we need to have many transfer requirements. This is because for the "2 step picking" process we need to have more than one "transfer requirement group" for the components of one production order operation.
    The problem is that the "transfer requirement groups" can group "transfer requirements", no "transfer requirement items". If one transfer requirement is in the group, all its item with 2 step picking belong to the group.
    Summing up, we need a way of splitting transfer requirement according to our criteria, in order to create several "transfer requirement groups" for the components of one production order operation.
    As far as I know, we can only split transfer requirements in one operation according to the destination bin of the component.
    Is there any other way of splitting transfer requirements?
    Thank you very much for your help.

    Hi all,
    Thanks for the replies.
    @ Jurgen: I have setup mail notifications, but I don't see any messages. It looks like SAP simply does not try to create a transfer order in the first place.
    @ Bala: yes this has been checked. Actually I'm part of the project team so any changes would have been done by myself most probably. Anyway, no changes made to this part of the system.
    Any suggestions?
    Regards,
    Oliver

  • User Exit / BADI for Transfer Requirement Create

    Hi All,
    I have looked into the system and i could not find any User Exit or BADI for creation of Transfer requirement. This is for manual creation through LB01 and not interface with PP or IM. I am aware of the Userexits available for those, but i could not find any for WM TR Manual creation.
    Let me know if you are aware of any.
    Thanks
    Jithin

    When you create a transfer requirement, i want to make it mandatory to enter the destination bin, for example. The Transfer Requirement should not be saved if it is not entered.
    I know we can do this by creating multiple movement types for each destination, but i want to know if there is a way where the user can enter the destination when creating a TR with a single movement type.
    Jithin

  • Transfer Requirement for Goods Receipt Item

    Hi All,
    We are trying to create Transfer Order for Goods Receipt items using an ITS mobile application.We are using the function module L_TO_CREATE_TR to create Transfer Order by passing the Transfer Requirement from the Goods Receipt as an input to the function module. Our requirement is to create one Transfer Orde per Goods Receipt item. We need to create Transfer Order for the items simulatneously from different terminals.Since we have only one Transfer Requirement for the entire Goods Receipt document, we are not able to create Transfer Orders simultaneously because of the system lock (Transfer Requirement is locked).
    Is it possible to create separate Transfer Rquirement for the individual items in the Goods Receipt via customizing/User exit.
    Your guidance in this regard will be great help for us.
    Regards,
    Shaju

    Hi Dirk,
    Thank you for your reply.
    Our enduser will be using handheld device for Transfer Order creation. The user will pick the GR item material from one storage type (902) and the Transfer Requirement will be locked at this moment.Later while placing the SU in destination bin the user will scan the destination bin and the Transfer Order will be created at the time of scanning. Till the completion of the entire process the Transfer Requirement will be locked and no one else can pick the materials of the same GR from 902 storage type.
    We are trying to create Transfer Requirements for each Goods Receipt Item and we are not able to find any user exit in Goods Receipt Creation or any customizing option.
    Can you please check and help us to resolve the same.
    Regards,
    Shaju
    Edited by: shaju tv on Apr 5, 2010 11:40 AM

  • Create a WM Transfer Requirement against Reservation

    Hello,
    I have the following request.
    Currently we use PM module and create a PM Order and then users put the components, once that is done, a reservation is created.
    I have the request to implement WM with this process.
    That they need to continue using is the reservation and against this,m create the transfer requirement.
    The question is, what steps I need to follow, I required to use mov type 261, but I cannot see the requirement type for "Reservations", I only see:
    B     Purchase Order
    D     Storage bin
    F     Order
    K     Cost center
    L     Sales document
    Should be created one for reservations like:
    R    Reservation
    what else shpould be updated? any user exit to include that?
    Thanks so much for the help.

    We have that exact scenario, and implemented WM last month. This is the process:
    - WO created in PM with Components. WO saved and Reservation created automatically.
    - In MM, Tcode MB1A to issue material out with MOv Type 201. This automatically creates a TR AND a TO. You can switch that off if you want, that was our requirement.
    - TO is confirmed when goods are actually taken out of warehouse.
    We have no developments or user exits, it's all standard and it's working perfectly.
    Check OMLR and make sure to assign your movement type , and put an X on the "Create Transfer Requirement" column (we use 201, not 261). see snapshot:

  • How to create one GR document for mutiple Purchase orders

    Can you please explain me in SAP - How to create one Goods Receipt document for reference of Multiple purchase orders.

    Dear Tanuj,
    Both Rama & Stephen are correct.
    You can take Single GR for Multiple PO either in MIGO or MB01 as long as that POs belongs to same vendor.
    In MIGO, after putting the PO press,enter,  again give the next PO of that vendor .
    If this solve your problem, close the issue.
    With Regars,
    Krishna Reddy

Maybe you are looking for

  • After updating to windows 8.1 PSE will not load

    After updating to windows 8.1 PSE will not load.  I have uninstalled and downloaded a PSE and installed several times with no success.

  • Extended Analytics Flat File extract question

    I have modified the Extended Analytics SDK application as such: HFMCONSTANTSLib.EA_EXTRACT_TYPE_FLAGS.EA_EXTRACT_TYPE_FLATFILE instead of HFMCONSTANTSLib.EA_EXTRACT_TYPE_FLAGS.EA_EXTRACT_TYPE_STANDARD I am trying to figure out where the Flat file ext

  • Issue with Deposit Advice

    Hi, Can either of you determine why an employee would be failing in the Deposit Advice process when the employee's setup is complete? They have received deposit advices previously without issue but is failing on the Feb 29 payroll process. We are hav

  • Skype 7.4 has stopped working.

    I have made sure that all my drivers are up to date and that windows is also all up to date. I've uninstalled Skype and rebooted and installed Skype again and nothing seems to work. I'm at a lose as to what to do. Here is my error message: Faulting a

  • AP541N-E-K9 2.4Ghz and 5 Ghz at same time

    Hello Everyone, I'd like to set up a 2.4Ghz and a 5Ghz SSID at the same time, using one Cisco AP541N-E-K9. But I can't figure out any way to do so. Is there a possible way? Kind Regards