Stock Transfer from one location to another through outbound deliveries

Dear GURUS n EXPERTS,
We have 5 warehouse and one manufacturing plant. Till this time we use two step Stock Transfer method to transferring stock from plant to ware houses.
Now, we want to use Shipping & Transportation System to to calculate transportation cost. But this system consider only outbound deliveries. So, our requirement is:
1. Create the outbound deliveries, but no billing.
2. Receive the material at warehouse against this outbound delivery but do not go for invoice booking.
How can we achieve it. Please guide us.
Thanks,
DSC

Hello,
You may see the IMG path SPRO->Materials Management->purchasing->Purchase Order->Setup Stock Transport Order.  Here, the most important ones are Assign Delivery Type and Assign Purchasing Document Type. Availability check, Delivery tolerances etc. are optional. You need shipping point to be created using transaction OVLZ.
Thanks,
Venu

Similar Messages

  • Sales Order Stock Transfer from one plant to another plant

    I am transfering sales order stock from one plant to another, using movement type 301E MIGO.
    But when i go to Detail Data tab i found the Dst tab gray and only special stock field is appearing in grey there. So when I input all the data in from box it also copied in destination box. I also went to where tab page but the same data is appearing in both area from and destination.
    In my opinion both area should be writeable, how can I make the detination detail available in there and should be writeable.
    Please advice.
    Best regards

    Hi,
    Please go to MB1B in that give movement type as 301 and SP Stock as E and provide Plant Storage location and press enter...
    as well in MIGO select the Transfer Posting and provide Movement type as 301E and press enter If in OMBW the plant and Storage location is Mandatory then it will not go ahead for Posting.s
    Try at your end.
    Regards,
    Ninad Kshirsagar

  • Stock Transfer from one plant to another

    Hi Gurus,
    We have this scenario
    My client is doing Make to Order business. All materials planned under MRP and low value items are planned under CBP.
    My question is if one plant require materials from MRP planned materials then how we make the stock transfer with billing.
    Suggestions will be appreciated.
    Thanks & Regards
    Pranaya

    hi
    Follow the steps :
    1.Create a vendor for the company code of receiving plant, using account group :0007 using T-Code XK01.
    2 Assign this vendor to Delivering plant
    Go to XK02 >Purchasing view>Extras>Add. Purchasing data>Plant
    3. Create internal customer with the sales area of the vendor. Go To XD01
    4.In Pricing procedure determination relevant to STO, assign document Pricing Procedure and customer pricing procedure appropriate for STO to get the pricing in the invoice.
    5.Maintain condition records for the relevant pricing condition.
    6. Some more setting for STO: Go to MM> Purchasing > Purchase Order > Set up STO> define shipping data for plants > Go to Receiving plant >assign customer here & Supplying SA (for billing) to Receiving plant here
    7. Go to MM> Purchasing > Purchase Order > Set up STO> define shipping data for plants > Go to Supplying plant and assign the sales area of receiving plant.
    8. Go to MM> Purchasing > Purchase Order > Set up STO> assign delivery Type & Checking rule
    Assign the delivery type to document type. In this case, Delivery type NLCC is assigned to Document type NB
    9. Go to MM> Purchasing > Purchase Order > Set up STO>Assign document Type, One step Procedure, Under delivery tolerance
    Assign the document type NB to supplying plant and receiving plant
    10. After all settings , Create the STO using T-Code:ME21n and Save.
    11. Create Delivery :VL10G
    Click on the Background Button after selecting line item
    A message is flashed : See log for information> next Click on Log for delivery creation Button >click on line item>click on document button to get Delivery document No
    12. Picking, PGI:[VL02n
    13. Billing:VF01n
    Save the document and its done
    reward points if helpful
    regards
    chetan

  • Copy File from One Location to Another Location through xcopy or any

    Hi,
    I Need to copy one file from one location to another location. That file need to save in C:\Windows\System32 folder
    I need to create one .bat file and i want apply that bat as a startup script through GPO.
    I tried through XCopy if i test in machine that is working. If i tried in other machine that is not working. becoz of some Credential issue
    I tried in the script by netuse command after that my script itself not working.
    SET username=XYZ\Administrator
    SET password=abcd
    @ECHO OFF
    cmd "cd C:\"
    net use "\\10.50.5.68\c$\Windows\System32" %password% /user:domain\%username%
    :copy
    Xcopy /S /I /E D:\DLL \\10.50.5.68\c$\Windows\System32 
    Regards, Hari Prasad.D

    You cannot do that in a startup script.  You do not need to do that in a startup script.
    To add files to the system use GP Preferences.
    On Window 7 and later only the Trussted Installer is allowed to add files. (That means only Microsoft.)
    No programs or users should ever alter files in the system area.
    ¯\_(ツ)_/¯

  • Asset transfer from one plant to Another plant/Vendor

    Hello,
    Trasfer of asset from one location to another location/ vendor excise impact sholud flow without FI impact.
    Scenario is like this:
    we are creating Capital PO for AsSET procurment from Vendor with A/C  "A",  then in Item level of Delivery adress tab we check the "SC vendor" bcz our intention is to.
    Material directly sent to Different vendor and But stock is Shown in Our stock like "Material provided to vendor". After the GR
    Now this "material provided to vendor " asset we can send to Different plant/vendor with excise impact without FI Impact how to do this?
    Regards
    Mahesh

    Hi,
    Do a return to vendor from the first plant, modify the PO to include another line item to be received by the other plant and you can set the deletion flag for the first line item.
    This assuming that there is no invoice posting is done.. if yes.. then credit memos also come into picture.
    hope this helps

  • How to copy file from  one location to another

    Hi,
    I am new to java, I tried the following code to move the file from one location to another
    public class CopyFiles {
    public String copy ( File source, File target)
    throws IOException {   
    FileChannel sourceChannel = null;
    FileChannel targetChannel =null;
    try {   
    sourceChannel =new FileInputStream(source).getChannel();
    targetChannel= new FileOutputStream(target).getChannel();
    targetChannel.transferFrom(sourceChannel, 0,
    sourceChannel.size());
    finally {   
    targetChannel.close();
    sourceChannel.close();
    return "Success";
    public static void main(String [] args) throws Exception{   
    File source = new File("C:\\users\\download.pdf");
    File destinationFile = new File("C:\\apple\\download.pdf");
    copy(source, destinationFile);
    The above code is working perfectly, but I Don't want to include the file name in destination file. i.e. File destinationFile=new File("C:\\apple"), and at the same time the pdf with same name has to get stored in the destination location, how can I achieve this.

    kameshb wrote:
    I Don't want to include the file name in destination file. i.e. File destinationFile=new File("C:\\apple"), and at the same time the pdf with same name has to get stored in the destination location, how can I achieve this.It's not totally clear what you're saying here, but what I think you mean is that you don't want to explicitly set the destination file name--you want to just give the copy the same name as the original. Yes?
    If that's the case, then break the original up into separate directory and file name portions, and then construct the destination path from the destination directory plus original file name. You can do that by manipulating the full path string, or by using the methods in java.io.File.

  • Vendor Open items transfer from one Recon to Another recon

    We have wrongly maintained one recon account in Vendor. 
    Is there any way to trnasfer Vendor Open items transfer from one Recon to Another reconciliation account..

    Hi,
    The best way is to transfer the items from old to new reconciliation account.
    Please use the following entries to transfer.
    1. Dr Vendor a/c(Old recon a/c)
        Cr Vendor clearing a/c
    After nullifying the balance in old recon account, here chage recon in the master.
    2. Dr Vendor clearing a/c
        Cr Vendor a/c(New recon a/c)
    F101 only post the adjustment entry at period end and reverse the same entry in next period. So, transferring the items is the best method. If you have volume of data, then create a LSMW for this.
    Rgds
    Murali. N

  • From Forms 5.0 I want to copy a file/folder from one location to another.

    Hi,
    I have a question and I really appreciate your help.
    My Question is
    I would like to copy a file/folder from one location to another.
    (For ex: From my Hard disk to a Network folder).
    I want to do this from Oracle Forms 5.0 and my operating system is Windows 2000/NT Workstation.
    At present my users are doing this by using drag and drop windows functionality,
    But now they want to do this by using a GUI screen.
    I would greatly appreciate if somebody can answer my question.
    Thank you very much and have a nice day.
    Thanks & Regards
    Sanjeev.

    Hi Shay,
    Am able to copy the files/folders by doing the follwing.
    Declare
    My_Command Varchar2(1000);
    Begin
    MY_COMMAND := 'XCOPY /E ' ||:FROM_LOC ||' '|| :TO_LOC ;
    HOST(MY_COMMAND);
    End;
    But my problem is am not able to trap the errors.
    Do you have any idea?
    Thanks

  • How to move SQL database from one location to another location i.e. from C' drive to D' drive

    Hi, How to move SQL database from one location to another location i.e. from C' drive to D' drive ? please share some link.
    Thanks and Regards, Rangnath Mali

    Hi Rangnath,
    According to your description, my understanding is that you want to move databased from C drive to D drive.
    You can detach Database so that the files become independent, cut and paste the files from source to destination and attach again.
    There are two similar posts for your reference:
    http://mssqltalks.wordpress.com/2013/02/28/how-to-move-database-files-from-one-drive-to-another-or-from-one-location-to-another-in-sql-server/
    http://stackoverflow.com/questions/6584938/move-sql-server-2008-database-files-to-a-new-folder-location
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • How do I transfer from one ArrayList to another -

    Hi
    Basically what I want to do is transfer from one arayList to another using an iterator to iterate of the list and transfer certain entries to another - one is called lots, the other is called unsold.
    I don't want help with trying to get the right fields to transfer at the moment I'm just trying to get it to transfer EVERY entry, which I cant seem to to with this while loop
    public ArrayList getUnsold()
           Iterator it = lots.iterator();
            while(it.hasNext()) {
                    Lot lot = (Lot) it.next();
                    unsold.add(lot.getDescription());
                    return unsold;With the above all I seem to get is the first item in the 'lots' list to transfer even though theree are 3 items that need to be transferred...
    I have declared all arraylists and everything on this level works I just cant transfer items over properly...
    Any help is most appreciated.
    -greg

    Add these print statements (and others you think might help) to help you see what's going on: public ArrayList getUnsold()
           Iterator it = lots.iterator();
            while(it.hasNext()) {
                    Lot lot = (Lot) it.next();
                    System.out.println(lot);
                    System.out.println(lot.getDescription)());
                    unsold.add(lot.getDescription());
                    System.out.println(unsold);

  • Moving fields from one location to another location?

    Hello
    I hv developed my_form, having couple of subforms, fields.
    They decided to change the layout drastically, pls. let me know How I can MOVE fields as a BUNCH from one location to another location on a DIFFERENT page?
    Say, earlier i hv 5 fields together, side by side on a same line/row wrapped in my_sub_form on 2nd page. Now, after they revising they want to see these 5 fields of the my_sub_form on 3rd page, pls. let me,
    1) How can i move these 5 fields ALL TOGETHER as a bunch to another location, so that it meakes my life easy? instaed of moving a single single field.
    2) or i should move my_sub_form AS A WHOLE? i tried it not giving me a chance of moving as a my_sub_form?
    3) Pls. let me know what is Object Tool? where can i see on the form, i did RIGHT CLICK, but, did not see any such Object Tool on the displayed sontext menu?

    Hi,
    Best option would be to select the objects in the hierarchy and then drag them in the hierarchy to the new location. For example if you drag them over a page and release, Designer will place the objects at the end of that page's content.
    Hope that helps,
    Niall

  • Getting error in file transfer from one system to another system

    Hi All
    One of my client (User) wants to transfer his file from  SAP R/3 System SAP XI system. He is using a customize t-code ZFIR0325 (Trial balance report transfer to Hyperian System). When user execute the  program he is getting error "File Transfer Failed due to Network chk with Admin"
    I checked with Network team but they said it is okay from their side. We also check for authorization but there is no issue regarding authorization.
    Name of File Path of Aplication Server, XI destinaion and XI directory entered by user is correct.
    We also put authorization trace in XI System to RFC User (In file transfer from one system to another system this RFC User is geeing Used) but no authorization issue was found.
    Please help me to resolve this problem. I any detail require I will provide the same.

    Guruprasad Wrote:
    He is using a customize t-code ZFIR0325 (Trial balance report transfer to Hyperian System).
    We also put authorization trace in XI System to RFC User (In file transfer from one system to another system this RFC User is geeing Used) but no authorization issue was found.
    Firstly, no one in the community can answer on how a custom transcation code and a program associated with it behaves.
    If there are no authorization issues in the system, you have to look at the exact error message. Look if your XI system is allowed to receive files from the SAP system.
    Unfortunately, you should do some more home work before putting your question here. If everything is fine and configured correctly, then the issue might be with the program.
    Regards,
    Raghu

  • File transfer from one system to another system

    How can I use ODI to do file transfer from one system to another system ?
    Do I need to create Models or I have to simply use Jython procedure/script to do the same ? Kindly help. I have done DB to DB using Knowledge Modules. But I am not able to understand this piece.
    Kindly help.

    If you are asking about file transfer use ODI FTP tool to do it. If you are asking about file transformation..
    You can not do file transformation directly in ODI like we do in any other ETL tool like data stage or Ab Initio.. File transformation in ODI can be done using staging database in an interface(i.e ELT way).
    Create source and target data stores for the file to be transformed. Create an interface using File to SQL LKM to load the file into staging database and then use SQL to File Integration knowledge module.
    Thanks,
    D

  • OpenScript: 1.     How to move the scripts from one location to another location. in OpenScript; Copy, paste or Import, export

    How to move the scripts from one location to another location. Copy, paste or Import, export

    Both way you can do.. Difference is - if you copy paste to another folder script dependencies will not move with the same( ie Assets added), whereas if you export and import the script all dependencies will be correlated automatically

  • Stock Transfer from One Store to Store

    Hi Retail Gurus,
    I have just entered working on IS Retail,basically I am an SD consultant.I have a Client who has implemented IS Retail.
    Now,coming to the query,I want transfer the stock which is in Store A to Store B without any Valuation.
    Kindly Help Me,
    Vishal

    Dear Vishal,
    When articles removed under stock transfer from one site to other site, the overall inventory valuation, at company code level, remains same. Because, inventory valuation must remains same, the accounting document is posted at the time of PGI (post goods issue) from sending site.
    SAP Support following Stock transfers;
    (1) Store to Store single step using 301 mov. type
    (2) Store to Store double step using 303 & 305 mov. types
    (3) STO with SD route using 641 & 101 Mov. type
    Price: Always....Valuation price + Delivery costs if any
    Steps are as below for option No. 3
    1. Create Purchase Order using transaction code ME21N using document type UB
    2. Create outbound Delivery using transaction code VL10B
    3. Post Goods Issue using transaction code VL02N     
    4. Create Goods Receipt against STO Purchase Order reference using transaction code MIGO
    Hope this information will be useful.
    Bye,
    Muralidhara

Maybe you are looking for

  • MediaSource and Playli

    Hello, is there a way to sort the items of a playlist in MediaSource? If i want to update a playlist (-> add/remove songs) it's very hard to know if a song is already in the playlist becuase the songs are ordered by time and not - for example - the b

  • SRM PO SMARTFORM

    Hi friends, I’ve two questions for two smart forms: 1. SRM_PO_CREATE -Purchase order create 2. SRM_PO_CHANGE – Purchase order create Both are copy of BBP_PO. Question 1 – In IMG, SRM-SRM server-Cross Application basic Settings->Set output Actions and

  • How to pack material (linked to a delivery) with BAPI_SHIPMENT_CHANGE ?

    Hello All, i would like to pack material into Handling Unit with the BAPI_SHIPMENT_CHANGE like in transaction VT02N i have created my shipment with BAPi_SHIPMENT_CREATE  : i see material with delivery reference in part of screen "Material to ba packe

  • Circling a word by clicking on it

    Is there a way to click on a word in a PDF document and have that word circled (or boxed in with a border)? A friend asked me to work on a Character sheet for his game and a few of the selections aer made by "circling" a choice. Example: Good / Evil

  • Installing Flash Player with Win7 & IE10

    Flash player install stops & asks for IE10 to be closed but is already closed.