How to take stock in warehouse

Hi,
Already we have a plant and storagelocation which is under operational and also stock is maintained under IM. Now we have planned to go for the new warehouse creation if i configure the warehouse settings and all. Now how to take the stock which is already there in IM to WM.
Whether i have to create a TR or the TO directly.
Sunil

Hi Sunil,
As you have got stock alredy there at storage location level so dont need to go for any initial upload. I Assume that you have done all the required WM configuration to have WM functional. Here you dont need to create any TR. Rather you may go for direct TO creation. Your stock must be lying in the interim storage location, which you need to move the particular storage bins.
Here your interim bin would be a source and the desired bin would be your destination for entering that in to TO.
You may follow the following steps to do it.
1) Logistics - Logistics Execution - Inbound Process - Goods Receipt for Purchase Order, Order, Other Transactions - Putaway - Create Transfer Order For Material (T-CODE: LB11)
Fill in the mandatory entries like warehouse number, Material number etc.
OR
Directly LT03 can be used with reference to the delivery
2) Click TO in foreground
3) Click Putaway foreground (F5)
4) Depending upon the putaway strategy the destination bin would be suggested or user need to do the manual entry
5) Save / Post (Ctrl+S), which would give a Transfer Order (TO) number
6) To display the TO created
Logistics - Logistics Execution - Inbound Process - Goods Receipt for Inbound Delivery - Putaway - Display Transfer Order - Single Document (T-CODE: LT21)
The list would show red indicator against the particular TO, which means it is yet to be confirmed.
7) To confirm the TO
Logistics - Logistics Execution - Inbound Process - Goods Receipt for Inbound Delivery - Putaway - Confirm Transfer Order - Single Document - In One Step (T-CODE: LT12)
8) Choose Standard
9) Select the line item and choose Confirm internally
10) Save / Post (Ctrl+S). System issues a message for confirmation of TO
11) To check the correctness of stock in Bin
Logistics - Logistics Execution - Internal Whse Processes - Bins and Stock Display - Single Displays - Storage Bin (T-CODE: LS03N)
12) Enter Ware house number, Storage type and storage bin. This would give the material stock available in that particular bin
I hope this helps you
Regards,
Sachin

Similar Messages

  • For STO with billing how to take material in plant stock without cancelling excise duty

    Hi,
    Please suggest for STO with billing how to take material back in plant stock without cancelling excise duty.
    Scenario is
    Material transffered from manufacturing plant to depot,material is in transit now, but due to some reason material calls back to manufacturing plant.
    Since the excise invoice is raised and material move out of factory client can not cancel excise invoice from legal point of view & client has to pay excise duty for the material movement.
    Please suggest how to take back goods to manufacturing plant without cancelling excise invoice.
    We have suggested client as there is no provision to take back goods to manufacturing plant without cancelling excise invoice
    and to take back material to manufacturing plant stock they have to cancel excise invoice and other related documents.
    But client is asking for another options.So requesting you to please suggest any alternative ways for same.
    Thanks,
    Amit

    client can not cancel excise invoice from legal point of view & client has to pay excise duty for the material movement
    I don't think, there is a statutory rule which says, manufacturer should not cancel the excise invoice generated on their Depot plant.  Justification can very well be given to Excise authorities and hence, ask your client to follow the normal process by treating this as Depot returns.
    G. Lakshmipathi

  • In warehouse management how to post stock in the warehouse by using physica

    hi
    in warehouse management how to post stock in the warehouse by using physical inventory method
    can anyone tell me the process in detail
    thanksin advance.

    HI ,
    In Ware house management you can block the stock for Physical Inventory purpose. You cannot post the stock to the warehouse using Physical Invenory.
    If there is a count going on so the concerned Warehouse bin is to be blocked during Inventory so that no further goods movement is possible during that period.
    Once the Physical Inventory ids done the block can be released so that the movement can again happen.
    The Inventory mangement initiates the transfer requirement. This transfer requirement is used for creating the transfer orders. The transfer order confirmation is done then which actually places the stock in the concerned bin mentioned in the order.
    The stock in WM can be checked in LX24/ LX26 which is same as theat of MMBE of MM.
    Hope this helps.
    Regards,
    Prasanna
    Award pls if helpful.

  • How to take into stock a configured material

    Hi,
    We have some materials which are configured. After taking returns from customers for these materials due to any issues, how to take them to stock,?
    Is there any process to dismantle the material to spares/parts as they have a BOM?
    If split into parts, with what movement type, they can be taken to stock?
    Regards,
    Ajit

    Dear all,
    We are find a solution.
    We modified in MM02, the tab MRP2 with :
    1)Supply Type: set F (external procurement)
    2)Special Procurement: put 30 (subcontracting)
    3) Shop for Externalprocurement: leave (put) the area to white
    In a purchaseorder(ME21N) we ommitted the storelocation, and put the store location in MIGO.

  • Stock in Warehouse Report

    Hi Guys,
    I have this query to show the stock in our warehouses, unfortunately, if I have stock in 2 warehouses it just shows the total of all ware houses, can someone advise how show the stock in another warehouse as well, with the exception that I do not want a list showing all items that are 0 stock balance (following the premise that all items can exist in all warehouses) - I just wish to show items in stock only.
    Any help always gratefully received.
    SELECT T2.WhsCode, T2.WhsName, T0.DfltWH, T0.ItemCode, T0.ItemName, T0.OnHand, T1.Counted, T0.LstEvlPric
    FROM OITM T0
    INNER JOIN OITW T1 ON T0.ItemCode = T1.ItemCode AND T0.DfltWH=T1.WhsCode
    INNER JOIN OWHS T2 ON T1.WhsCode = T2.WhsCode
    WHERE T0.OnHand > 0
    Kind regards
    Sean Martin
    Arrow Industrial Group Limited

    Hi Sean.......
    try this......
    SELECT T0.[ItemCode], T2.[ItemName], T1.[WhsName], T0.[OnHand], T0.[Counted] FROM OITW T0  INNER JOIN OWHS T1 ON T0.WhsCode = T1.WhsCode INNER JOIN OITM T2 ON T0.ItemCode = T2.ItemCode WHERE T0.[OnHand] >0
    Regards,
    Rahul

  • Stock report warehouse wise for a particular batch

    Hi all,
    How do you find out a stock report warehouse wise for a particular batch along with the same batch items sold to whom and with what quantity?
    Thanks
    SV Reddy

    Hi SV Reddy
    pls find the query for stock report
    Select X.DocDate, X.ItemCode,
    ((Select isnull(sum(InQty-OutQty),'0')From OINM T0 Where T0.ItemCode=X.ItemCode  And
    (T0.DataSource='I' or T0.DataSource='N')  And T0.DocDate < X.DocDate)) As [OpeningStock],
    IsNull(sum(X.InQty),0)As[Received Qty],IsNull(sum(X.OutQty),0)As[Consumed Qty],
    ((Select isnull(sum(InQty-OutQty),'0')From OINM T0 Where T0.ItemCode=X.ItemCode  And
    (T0.DataSource='I' or T0.DataSource='N')  And T0.DocDate < X.DocDate)+
    (Select isNULL(sum(T0.InQty),'0')From OINM T0 Where T0.ItemCode=X.ItemCode And T0.DocDate<=X.DocDate And
    (T0.DataSource='I' or T0.DataSource='N')  And T0.DocDate = X.DocDate)-
    (Select isNULL(sum(T0.OutQty),'0')From OINM T0 Where T0.ItemCode=X.ItemCode And T0.DocDate<=X.DocDate And
    (T0.DataSource='I' or T0.DataSource='N')  And T0.DocDate = X.DocDate))As [ClosingStock]
    FROM OINM X Where ItemCode=X.ItemCode And
    (X.DataSource='I' or X.DataSource='N')
    Group by X.DocDate,X.ItemCode
    Order by X.DocDate
    regards
    Jenny

  • How to take print for Excise invoice in case of STO

    Dear All,
    In the Stock transfer scenario within company code from one plant to another plant ,how to take printout of Excise Invoice created aganinst the 351 material document in the transaction J1IS and and by chosing the ref doc type : MATD
    What transaction is to be used for printout and which output type is to be chosen.
    Thanks & Regards
    Nitin

    Hi,
    Use transaction J1IV -To Post & Print standard Excise invoices. If you want to print excise invoice according to client requirement then develop according to requirement.
    Thanks & Regards
    M P D Kamath

  • Stock in Warehouse Report - Printing Warehouse Name

    Hi all,
    My client is printing the Stock in Warehouse Report and wants to pull in the warehouse name in the report.
    They are only ever generating this report for 1 warehouse.
    When I look at the standard template I cannot see how even the waerehouse code is pulled in to the report.
    The only fields I see are text fields.
    I have tried adding a database field related to or linked to another field but I cant seem to get it to work.
    Any advice greatly appreciated.
    Thanks,

    I believe you are talking about Inventory in Warehouse Report
    Try the following:
    Add a Formula field and check
    Field_045 == "Whse:"
    Add a database field as you seem to have done and select the Warehouse Name from the OWHS table and set the
    Link to: on the above formula field and
    Relate to on Field_046  ...................................this field is the Item Description field where the Warehouse Code is displayed
    Check this out.
    OR
    If it only one warehouse Add a text field and hardcode the Warehouse Name

  • How to take other music and photo from a librery different from the first  ipod was sync?

    how to take othe music and photo from different librey than the first used, without loose the photo and music alredy stock in ipod ?

    See this: Using iPad or iPod with multiple computers, http://support.apple.com/kb/ht1202

  • Steps to Add stock in Warehouse bins

    Gurus,
    Please give me the transaction and  steps to add Stock in Warehouse Bins without reference to Inventory management......
    We dont user Inventory management. We only use Warehouse Management in our company. So How do I update the initial stock entry in the respective bins...Please provide me the steps....
    Thanks in Advance

    still not totally clear if you have a stand alone WM or only a decentralized WM,
    If you have decentralized Warehouse Management, all your business transactions, including inventory management of quantities, are executed in the ERP system, while all the processes required for the physical and logical goods movements run in the decentralized WMS.
    The leading ERP system communicates planned goods movements to the decentralized Warehouse Management system (WMS) through deliveries (BAPI method)
    for details look here:
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/57/803c35975f0054e10000009b38f839/frameset.htm
    dont miss the the menu on the left to navigate to stock transfer ,goods receipt etc.

  • Steps to reverse stock in warehouse

    Hi All,
    Please explain how to reverse the stock in warehouse.
    I.e By mistake i have placed the stocki n warehouse but now i want to reverse that stock.
    Please help me.
    This is urgent.
    Thanks in advance

    Hi,
    This is helpful answer.
    But if i have many documents how i will proceed.
    Plese help me.

  • Transfer of Stock from Warehouse to Warehouse

    Hi ,
    I have the following query.
    Warehouse 1 is assigned to Plant 100 and Storage location 10.
    But now the client wants to assign Warehouse 2 to Plant 100 and Storage location 10.
    As per the requirement I changed the assignment. But now I have come to know that there is stock for certain materials in Warehouse 1. Since the assignment is already done, how can I move the stock from Warehouse 1 to Warehouse 2
    Appreciate the help.
    Regards
    Mohan

    "But lets say I assign Warehouse 1 back to Plant 100 and storage location 20"
    I presume by storage location 20 you mean 10
    Yes I believe this will work.
    1) Assign back W/H1 to 100 / 10
    2) Check if there is any stock inconsistency. Whatever stock available in W/H-1 for pl / st locn 100 / 10 should match stock at IM level.
    3) Create new st locn 20 (in your last message it is 30) under pl 100 and assign W/H-1 to 100 / 20
    4) Transfer all stk in W/H-1 from 100 / 10 to 100 / 20. At the end of activity there should be no stk at st locn 10 and no stk in W/H-1 for pl / st locn 100 / 10. All stock in W/H-1 will be for 100 / 20.
    5) Now remove assignment of W/H-1 from 100 / 10 and assign W/H-2 to it.
    6) Transfer all stk from 100 / 20 to 100 / 10 back.
    At the end of activity stock will be in W/H-2 with pl / st locn 100 / 10.
    Reg,
    Sudhir

  • How to reserve stock for particular customer?

    HI all,
    How to reserve stock for particular customer when they has approved a particular batch?
    Please tell me all the possibles.
    Thank you.
    Richard

    >
    Richard.Wang wrote:
    > HI all,
    >
    > How to reserve stock for particular customer when they has approved a particular batch?
    > Please tell me all the possibles.
    > Thank you.
    >
    > Richard
    Seems like you are talking of reserving material for sales order. In this case, when the ATP check is run, the stock is automatically reserved for the sales order.
    Reservation can also take place through MB21, where material is reserved for certain purpose.
    If work order is created, it automatically created reservation for the required material.

  • If physicaly checked the stock found zero. how to enter stock zero in systm

    if physicaly checked the stock found zero. how to enter stock zero in system
    thanx

    Hi
    You can follow the following physical Inventory transaction for updating ZERO stock in the system.
    Please go with following transaction
    MI01>Create physical inventory document>Enter Document Date>Planned count date>Plant Code>Storage Location>Click on Enter button>you will get the separate screen>Enter material code>and click on SAVE button (Ctrl+S)>you will get Physical inventory document number. (MI02-Use for delete)
    (After getting Physical inventory document number you go with MIO4)
    MI04>click on enter button>you will get "Enter inventory count screen>Enter Phys. inventory doc.no>Fiscal year>Count date>click on enter button>you will get separate screen>Enter physical qty>and click on save button ((Ctrl+S)>you will get massage from the SAPu201D Count entered for phys. inv. doc. 100000112"
    (After completed above transaction you please go with MI07)
    MI07>you will get Post inv.differences: initial screen>Enter Phys. inventory doc.> Fiscal year> Posting date>click on enter button>you will get separate screen with deference qty>click save button (Ctrl+S)> you will get document number generated from the system (Diffs in phys. inv. doc. 100000112 posted with m. doc. 4900001246)
    Physical Inventory:
    Physical Inventory is a business process in which physical stock is matched with book (system) stock. It is legal requirement to carry out physical inventory at least once in a year.
    Physical inventory can be carried out both for a companyu2019s own stock (Unrestricted, Quality, Blocked Stock) and for special stocks (Customer Consignment stock, Vendor consignment stock from vendor, Returnable packaging). This inventory is carried out saperately for both type of stocks.
    Physical Inventory Processes:
    Several inventory processes available for physical inventory which includes as follow:
    1. Periodic Physical Inventory
    o All stocks of the company are physically counted on the balance sheet key date
    o Every material must be counted
    o Entire warehouse must be blocked for material movements during count.
    2. Continuous Physical Inventory
    o Stocks are counted continuously during the entire fiscal year.
    o It is important to ensure that every material is physically counted at least once during the year.
    3. Cycle Counting
    o In this method of physical inventory, inventory is counted at regular intervals within a fiscal year.
    o These intervals (or cycles) depend on the cycle counting indicator set for the material in Material Master record as CC indicator in plant view data.
    o With this Cycle Counting Method of Physical Inventory allows fast-moving items to be counted more frequently than slow-moving items.
    4. Inventory Sampling
    o Randomly selected stocks of the company are physically counted on the balance sheet key date.
    o If found not much variance between the counted stock and the book book stock, it is presumed that the book inventory balances for the other stocks are correct.
    Physical Inventory Process Cycle Flow
    1. Creation of physical inventory document
    - Physical inventory document(s) is created individually or using the batch program, click for more information
    - The transaction codes for creation physical inventory are as follow
    Individual Inventory documentation creation
    MI01 - Individual physical inventory creation
    MIS1 - Inventory Sampling document creation
    MICN - Cycle count inventory document creation
    Collective Inventory document creation
    MI31 - Own stock without special stock
    MIK1 - Vendor consignment
    MIQ1 - Project stock
    MIM1 - Returnable Transpiration material
    MIW1 - Customer Consignment stock
    MIV1 - Returnable material with customer
    MIO1 - Material provided to Vendor (Subcontracting material)
    2. Print physical inventory document
    - Physical Inventory document can be printed based on the physical inventory document status and or item status
    - Transaction code MI21 is used to print the inventory document where print default value can be populated
    3. Count the physical stock
    - Based on the inventory document printout, the warehouse person will check the stock of material physically and note that on print out. This is completely physical process.
    4. Enter count in system
    - On completion of physical count, the count result is needs to be entered in the system. This can be with reference (using Tcode MI04) or without reference (using Tcode MI04) to the physical inventory document.
    - If count quantity for that material is ZERO then select ZC (zero count) column instead of putting 0 in qty field. If 0 is used for zero count then systm will consider that as "not counted"
    5. Analyze difference
    - Once count is posted in the system, difference analysis can be carried out using transaction MI20
    - The output gives information based on the input criteria i.e. physical inventory document, plant, material etc.
    - The output gives information about the book quantity, Counted quantity, difference in quantity and value.
    - From this output list, you can carry out further process ie initiate recount, change count quantity, post difference
    6. Initiate recount and follow the steps 3,4,5
    - If found unacceptable difference, recount is initiated using directly from difference analysis list (transaction code MI20) or using transaction code MI11.
    - New inventory document will be created for selected items or for entire document
    - The original document items will be deactivated once recount is initiated so original document will not be available for further process.
    - On initiating recount, you need to process same as for new count document.
    7. Post the difference
    - Several options are available for posting difference
    - Post difference after count is posted using transaction code MI07
    - Posting the count and inventory differences using transaction code MI08, here you have created physical inventory but not counted so with this you can count and post difference in sinle step.
    - Entering the count without a document reference using trasnaction code MI10, with this you can create inventory document, enter the count and post difference in single step.
    some more points for posting difference
    - Posting period must be open to post inventory difference.
    - The fiscal year is set by specifying a planned count date when creating a physical inventory document.
    - Tolerence to crear difference per user group can be set in customization.
    - The system will generate material document for the difference qty and post the value to appropriate account (for valuated stock)
    - The movement type in material document will be 701 or 702 based on gain or loss of material.
    Serial Numbers in Physical Inventory
    If material is managed with serial number then it is possible to carry out physical inventory for material with serial number. There are some pre-requisite before you carry out physical inventory for serialized materials.
    - Serial number profile must be maintained in the material master.
    - the serialization procedure MMSL (maintaining goods receipt and goods issue documents) has to be assigned to serial number profile.
    - The stock check indicator in the serial number profile should be configured.
    - Maintain basic settings for the serial numbers in customization for Serial Number Profile.
    - Configure serial number management for physical inventory in the Settings for Physical Inventory step in Customizing for Inventory Management.
    Blocked Stock Returns are the stock which is return stock from Customer or the stock which can be return back to vendor. To restrict the usage of this stock mostly business do transfer posting for this mateial as BLOCKED stock
    Thanks & Rgds,
    Rajesh

  • How is the stock utilized by Sales for GI with Mvt 251-

    how is the stock utilized by Sales for GI with Mvt 251- they use Availabilty check and pick material from stores/warehouse. when is GI with 251 mvt required.

    hi
    check MB5B
    for mov type 251
    regards
    kunal

Maybe you are looking for

  • Having trouble installing Windows 7 on external optical disk drive

    My internal optical drive doesnt work so i ran out and bought and LG external Optical drive. I Reinstalled mac os 10.6 and created a 45gb partition in bootcamp. When i try to install windows, at the gray screen it flashes a folder symbol and a circle

  • Want to add internal hard drive to my Mac Pro

    I want to add an internal hard drive to my Mac Pro bought in 2011 Running Lion 10.7.5  Processor is 2.8 GHz Quad Core Intel Xeon Have a 1TB SATA Do I need a 2.5" or 3.5" ? Any other criteria i should know about when looking? Advice is appreciated.

  • Sound issues - only headphones or speaker working

    Hi all, I've only had my phone a few weeks, but I've today started having a problem with the sound on my iphone 4. The system is acting as though my headphones are permanently plugged in - in that I can only hear callers etc if I have them on speaker

  • If i uninstall icloud from my pc and re install it will i loose my backup

    If I uninstall Icloud control Panel and re-install it will my original backup still be available

  • Error while installing dialog instance.....

    Hi all , Am getting the following error when installing the dialog instance (BW 3.5 on Linux RHEL 4 IA 32 32Bit /Oracle 10.2,kernel 6.40) : Creating file /tmp/sapinst_instdir/NW04/SYSTEM/ABAP/ORA/NUC/DI/SAPEXE.SAR.log.ERROR 2007-09-20 MOS-01022 PROBL