Logical Warehouse Management System

Dear All,
I want to know the concept of <b>'Logical Warehouse System'</b> in SAP.
Are all steps of Warehouse Management Syst Implementation to be followed?
Can the stock in Warehouse be considered in MRP?
Where in SPRO can I get exact steps for LOGICAL warehouse Management  Syst Implementation.
Regards,
Sudhanshu

Hi
Please see the attached
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LEWM/MMWM.pdf

Similar Messages

  • Oracle Warehouse Management System system implementaion concepts.

    Hello, we are using an old version of Oracle Warehouse Management System(back in Retek time). Anyways I think the concepts remaon the same. Can someone please point me to some implementation details document please. Hoping for docs that explain, for example how the concentric putaway logic is implemented in the system. That is, the inner workings of the system. I had an issue report for a bug(4896266) that explains the old logic Oracle used and the new logic they are pursuing for concentric putaway. It was clearly explained. I am unable to attach the doc, but hoping for that kind of docs or a place where to find them.

    Hi,
    Ah I see. I'm afraid it's highly unlikely that sort of documentation is available; I've certainly never found anything that useful. I've often had to resort to going through the PL/SQL of various packages to gain an understanding of what the system is doing. Obviously that's a terrible substitute to proper documentation.
    I suppose if you were desperate you could take a look at the operations guide for a more recent version and use this as a starting point for further investigation?...
    I've just had a quick search of the v13 RDM docs and it has the following to say:
    Directed Movement
    When merchandise is putaway, RWMS uses the product location attributes and configurable putaway plan to suggest the location that best conserves space in the reserve locations, or it inquires opportunities such as zone, location type, and status (for example, Different SKU, Same SKU, Empty Loc). The number of storage preferences associated with a particular plan is virtually unlimited, providing significant control over the storage strategy for the overall facility. Inventory Control uses three putaway methods: cube, capacity, and unit.
    Cube – Dimension derived from the length, width, and height
    Capacity – Capacity measured in units
    Unit – Capacity in number of units
    All merchandise in the DC is system-directed whether it is for putaway, processing, or picking goods.
    Concentric Putaway allows for putaway plan creation that suggests reserve storage locations closest to an item picking location. This is done using XYZ coordinates to measure the distance of storage locations from the pick face. This functionality is controlled for each item within a putaway plan.
    Thanks,
    Dave

  • External warehouse management system

    Hello Professionals,
    When Transfer Order (TO) data is forwarded to an External Warehouse
    management system, does it mean the picking is done by the
    system and the update of picking result will be entered in
    to SAP automatically via some kind of interface?
    regards
    Pascal

    you can use ES for creating goods movement in SAP ( see the esoa sample apps on sdn) or you can make your won service published using BAPI .
    I am not catching you in the use of BADI , elaborate more about that.

  • Metalink Note for Warehouse Management System Testcase Repository

    Hi Friends,
    Please share the meatilink note id for Warehouse Management System Testcase/ Testscripts Repository.
    Thanks and Regards,
    A

    if you have open transactions, such as deliveries, then you may not be able to process them further.
    But do you really close all transactions in a test system?
    It will not have any harm to new created documents

  • What is Warehouse Management System?

    Dear gurus,
    Where I can find information about Warehouse Management System? What is this solution? In what cases people use this solution?
    Thank's.

    Hi Veronica Vnukova ,
    The SAP Warehouse Management system (WMS) provides flexible, automated support in processing all goods movements and in managing stocks in your warehouse complex. The system supports scheduled and efficient processing of all logistics processes within your warehouse.
    Check here.........
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/c6/f8386f4afa11d182b90000e829fbfe/frameset.htm
    Regards,
    Vijay.

  • About warehouse management system

    Hi All,
    I want to make a small system managing our stocks in warehouse, but I don't know how to make a warehouse system, what table should I have?
    I think I need to have at least:
    . items
    . inventory
    and if one supplier sent some items to us, you know, the warehouse system is like a double record system, since stocks didn't get reased, it just moved from one place to another.
    Any clue?
    thanks.

    Hi all,
    I have created the following simple example for my problem, hope this will help you better understanding my situation, a little bit of explanation:
    the business process is like this:
    We have a warehouse which will hold all materials(items), some items we produced from raw material, some items we buy from suppliers, so I created an 'items' table for all the items we have. and then I created a 'stocks' table for current stock qty of each items, then I have created a 'stock_in' table, which will handle the input of stocks, maybe I can seperate that in type of table in different areas, like, for items purchased from outside, I will have a table purchase_stock_in table, which will against a table of purchase_orders, that is, if one supplier sent 100 item a, then stocks will increase by 100, and the purchase_orders related to that transcation will decrease by 100, if the purchase order qty is total 200, the we have a stock of 100, and remain 100 undelivered by our supplier. that is just an example, for items we produced by ourself, we can have another in type of table, let's say it is called an manufacturing_stock_in table, wich will against our production orders, if we have a production order total qty 300 for item b, make by work center A ( or dept A), then if they sent 100 in stocks, then stocks of b increased by 100, and production order related decreased by 100, the we have item b stock qty 100, and still 200 under production.
    so the situation is stocks table, stock_in transactions( goods receipt), stock_out(goods_issue), simple enough. so I created the following tables:
    CREATE TABLE  "ITEMS"
       (     "ITEM_ID" NUMBER(6,0) NOT NULL ENABLE,
         "ITEM_NO" VARCHAR2(30) NOT NULL ENABLE,
         "ITEM_NAME" VARCHAR2(100) NOT NULL ENABLE,
         "COLUMN1" VARCHAR2(20),
          CONSTRAINT "ITEMS_PK" PRIMARY KEY ("ITEM_ID") ENABLE,
          CONSTRAINT "ITEMS_ITEM_NO_UK1" UNIQUE ("ITEM_NO") ENABLE
    CREATE TABLE  "STOCKS"
       (     "STOCK_ID" NUMBER(6,0) NOT NULL ENABLE,
         "ITEM_NO" VARCHAR2(30) NOT NULL ENABLE,
         "QTY" NUMBER(6,2),
         "UNIT" VARCHAR2(10),
         "LAST_UPDATE" DATE,
         "UPDATE_BY" VARCHAR2(30),
          CONSTRAINT "STOCKS_PK" PRIMARY KEY ("STOCK_ID") ENABLE,
          CONSTRAINT "STOCKS_ITEM_NO_UK1" UNIQUE ("ITEM_NO") ENABLE
    CREATE TABLE  "STOCK_INS"
       (     "IN_DOC_ID" NUMBER(6,0) NOT NULL ENABLE,
         "ITEM_NO" VARCHAR2(30),
         "REF_DOC_NO" VARCHAR2(30),
         "QTY" NUMBER(6,2),
         "IN_DATE" DATE,
          CONSTRAINT "STOCK_INS_PK" PRIMARY KEY ("IN_DOC_ID") ENABLE,
          CONSTRAINT "STOCK_INS_UK1" UNIQUE ("ITEM_NO", "REF_DOC_NO", "IN_DATE") ENABLE
    CREATE TABLE  "STOCK_OUTS"
       (     "OUT_DOC_ID" NUMBER(6,0) NOT NULL ENABLE,
         "ITEM_NO" VARCHAR2(30),
         "REF_DOC_NO" VARCHAR2(30),
         "QTY" NUMBER(6,2),
         "OUT_DATE" DATE,
          CONSTRAINT "STOCK_OUTS_PK" PRIMARY KEY ("OUT_DOC_ID") ENABLE,
          CONSTRAINT "STOCK_OUTS_UK1" UNIQUE ("ITEM_NO", "REF_DOC_NO", "OUT_DATE") ENABLE
    ALTER TABLE  "STOCKS" ADD CONSTRAINT "STOCKS_ITEM_NO_FK1" FOREIGN KEY ("ITEM_NO")
           REFERENCES  "ITEMS" ("ITEM_NO") ENABLE;ALTER TABLE  "STOCK_INS" ADD CONSTRAINT "STOCK_INS_ITEM_NO_FK1" FOREIGN KEY ("ITEM_NO")
           REFERENCES  "ITEMS" ("ITEM_NO") ENABLE;my question is how to show the current stock_qty? that is, if I input 100 stocks, should I use a trigger deduct the purchase_order_qty, and increase the stocks qty?
    how to do it? how to update the tables.
    if there's one transaction, if I don't use any means of updating the underlying tables, let's say we have 3 tables in paper ledgers, then I will have to input this data manually in two places, that is for purchasing, I will have to input a transaction deducting the purchase_orders table. and then I input a record of this transaction by increasing the stocks table?
    it is like you are transfering your money from account A to account B, any kind of software like Quicken will enable you to input in one place, then it will automatically showup in another place to, also true for deleting, updating, etc.
    Should I use triggers or procedures implementing the insert/update/delete transactions of related two tables? how?
    any clue?
    Thanks!
    Peter Yawei .Zhang
    Edited by: Yawei Zhang on Aug 12, 2011 9:58 PM
    Edited by: BluShadow on 12-Aug-2011 15:06
    added {noformat}{noformat} tags.  Please learn to do this yourself... details here: {message:id=9360002}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Re-configure 'Stock Category' in the Warehouse Management system

    Hi Gurus,
    As we all know, it is possible to see which batch/material is in blocked status because the system highlights it with stock category indicator "<b>S</b>". With this, I would just like to know if it is feasible to modify the configuration in the system so that it assigns the Stock Category (labelled as '<i>C</i>' in transaction LS26) as follows:
            <b>S</b> : blocked without a usage decision
            <b>R</b> : batches which are blocked because they were rejected (there was actually a usage decision)
    Please let me know your thoughts regarding this matter.
    Hope you can help me on this one. Thanks in advance.

    Hello Francis,
    I think it is not good idea to change the standard SAP settings becuase we are not sure where our changes will impact. However, the SAP system is behaving in the same way you want, the only thing is you need to do relevent transaction at inventory level and subsequently carry out posting change in Warehouse System.
    Quality stock with stock indiacator 'Q'
    Blocked stock with Stock indicator 'S'
    Return stock with stock indicator 'R'
    Hope this helps.
    Arif Mansuri
    Reward if answer is helpful.

  • Oracle Retail Warehouse Management System Version 13 Application Issue

    Hi,
    I have installed RWMS version 13 Installation, successfully.
    But not able see the login screen, after use the URL-http://< host name>:7781/forms/frmservlet?config=rwms13.Only the black screen appears.
    Please find the details of the product:
    Product: RWMS
    Product version-13.0.0
    Platform-Linux x86-64
    Database- Oracle 10.2.0.3
    If any body have installed and able to access the application, please help me out
    to resolve the issue.Did I miss something during the installation.
    I have followed the RWMS 13 installation documentation begining to end.
    Thanks in Advance

    It is hard to say what the issue is without knowing all the details, but I would start looking at the following:
    $ORACLE_HOME/forms/server/formsweb.cfg and in particular the FORMS_PATH variable setting. That's what stumped me in the beginning.

  • Oracle Warehouse Management System (WMS)

    Hi All,
    I'm new to Oracle WMS. Can anybody help me in getting Tutuorial/docs related to this.
    Thanks in Advance!!!!

    thank for reply....i already have userguide and implementation guide.....i wanted to know what all it makes difference to existing modules ....like OM, INV, GL, Shipping...when WMS is enabled.....
    do you have any document that explains about that.....
    thanks

  • Oracle Warehouse Management System (WMS) or Mobile Supply Chain Application

    Please point me to a URL or site where I can see a demo of Oracle WMS or MSCA - Thanks

    you can try this Link
    http://www.solutionbeacon.com/tools_vision.htm
    you should also be able to touch base with oracle sales who can arrange a demo.

  • Warehouse Management System suite

    Looking for information, White Paper and help on WMS suite. Any help would be greatly appreciated.
    Thanks
    Sobi Borg

    WMS is a separate module for 11i. It was supposed to be released at the same time but now it looks like WMS will only be released beginning of calendar 2001 for beta testing. Business intelligence is more for reporting purposes.

  • T-codes for warehouse management

    hi.
    can anybody gives the mostly used t-codes for warehouse management

    SAP WMS - Decentralized Warehouse Management System Integration Setup
    You can operate the SAP Warehouse Management System (WMS) as a stand-alone decentralized system that is independent of a central Enterprise Resource Planning (ERP) System.
    You make the necessary settings for the ERP (Enterprise Resource Planning) system within the WMS component (Warehouse Management System).
    The steps are set up as a checklist and guide you through the process of configuring the system parameters.
    Checklist (For those with the Table Views used transaction code SM30).
    1. Customizing for "Enterprise Structure"
    - Create storage location in OX09 (if necessary).
    - Define warehouse number in Views V_T3001.
    (you should not copy the warehouse number in the ERP system)
    Activities within a warehouse, like goods movements and physical inventory, are assigned to a specific
    warehouse number.
    The physical warehouse where these activities take place is identified by the warehouse number.
    - Assign plant/storage location to warehouse number in Views V_T320.
    (Valid if the component MM-IM (Inventory Management) is implemented.)
    Fields : Plant + Sloc + WhN
    2. Customizing for "Decentralized WMS integration", section "Central processing" -> Application
    - Activate decentralized WMS in Views V_T340DM.
    - Define interface to Inventory Management in Views :-
    V_156S_WM - Assign WM movement type references to IM movement types
    V_T3211 - Delivery-Relevant Parameters for Reference Movement Type
    V_T340DL - Delivery-Relevant Data for Warehouse Number
    - Exclude stock in decentralized WMS in Views V_T321B
    (if the decentralized WMS is not an SAP R/3 system)
    - Finally do a consistency check for decentralised WMS in transaction OL20.
    3. Customizing for "Application Link Enabling (ALE)", section "Basis Components"
    Maintaining Logical Systems in Views V_TBDLS.
    Assign logical system to client in Views T000.
    4. Make basic settings for RFC in transaction BD97.(if necessary)
    5. Customizing for "Application Link Enabling (ALE)", section "Maintain Distribution Model"
    You can define the Reduce message types and Activate message types in transaction BD53.
    SAP recommends that you use message types :
    "MATMAS" (material master tables) and
    "DEBMAS" (customer master) as a template.
    Be aware that only those fields that are absolutely necessary are transferred from the master data tables in
    the ERP system to the decentralized WMS.
    6. Customizing for "Decentralized WMS integration", section "Central processing" -> Distribution
    Use transaction OL19 to generate distribution model. As far as the application is concerned, when the model
    is generated, application-specific Customizing parameters are modified or set (for example, activate
    decentralized WMS).
    Display or check distribution model
    Generate partner profile in transaction BD82.
    (you can also perform this activity using ALE Customizing)
    Distribute distribution model in transaction BD64 (model view) using menu item "Edit"
    If both the ERP system and the decentralized WMS are SAP R/3 systems, the distribution model should be
    distributed on a central basis only, that is, via the ERP system.
    7. Customizing for "Application Link Enabling (ALE)", section "Maintain Distribution Model" (transaction BD64)
    Activate the change pointers for master data distribution using transactin BD61.
    If necessary, reduce the message types concerned with transaction BD53.
    8. Customizing for
    "Logistics - General" - "Material Master" - "Tools" - "Data Transfer : Material Master" -
    -> "Define required-field check for ALE/Direct Input" (Views V_T130S)
    Define whether an error message should be generated in the receiving system for required fields
    from the material master.
    Reward points if useful.

  • Decentralize warehouse management

    Dear Friends,
    This is the question related to warehouse management system.
    My requirement is that we are going to set decentralize management. Presently we are having CWM in our present system. At another place there is local ERP , we want to replace it and need to go for decentralise WM there.
    Then this decentralised WMS and my present WM willl communicate with each other.
    Could you please let me know what will be it process ? Transaction cycles ? and its configuration?
    Regrads,
    Mahesh

    Dear All ,
    I got some information I am sharing with you and closing this ticket.
    1) Process :
    rocesses Between the SAP System as ERP System and as WM System
    Purpose  The variant for the SAP System as an enterprise resource planning (ERP) system and as a Warehouse Management (WM) system describes the link-up of an external warehouse management system to an SAP System. The stand-alone system that executes all warehouse management functions is an SAP System.  Prerequisites  Two systems are involved in this scenario. The first system is an ERP system that performs inventory management, purchasing and sales tasks and distributes existing master data and movement data to the Warehouse Management system (WMS). The second system is a WMS that performs warehouse management tasks such as putaway/picking and goods receipt/goods issue and is responsible for carrying out the physical material transfers.  Process and Data Flow    General inventory postings:  If the decentralized scenario is used, inventory postings are not directly processed in Inventory Management (IM). If a goods movement is created in IM, the system generates inbound or outbound deliveries and distributes them to the WMS. In the WMS, the goods are put away or picked based on the existing delivery. As a result of the goods movement posting in the WMS delivery, the system sends the completion verification to the ERP system and then uses the delivery to post the actual goods receipt or goods issue in inventory management. Deliveries with a purchase order or a sales order as a source document are handled in the same way.    Goods receipts based on purchase orders:  You use the ERP system to create purchase orders and send them to the vendors. To give notification of the delivery that is due, the vendor returns a shipping notification that is recorded in the ERP system as an inbound delivery. The inbound delivery is distributed to the WMS using a Business Application Programming Interface (BAPI). In the WM system, the inbound delivery is a request to put away or pick goods. When the vendor physically delivers the goods, a transfer order is generated in the WMS which is used to place the goods into stock. After the transfer order is confirmed, goods receipt is posted for the inbound delivery. This clears the interim storage bin. As a result, the completion confirmation is sent to the ERP system and the goods receipt is processed in inventory management.  An inbound delivery based on a purchase order can be created in different ways, depending on the confirmation control key in purchasing. If the vendor usually sends a shipping notification, the inbound delivery is created when the shipping notification is recorded in the system. In all other cases, you have the option of creating inbound deliveries automatically using collective processing.    Process for goods receipts based on a purchase order:  Creating the purchase order in the ERP system  Generating the inbound delivery (automatically/manually)  Distributing the inbound delivery from the ERP system to the WM system using BAPI method "InboundDelivery.SaveReplica" (this process is automatically executed in the background)  Physically receiving the goods into the warehouse (WMS)  Creating the transfer order  Putting the goods away  Confirming the transfer order  Posting goods receipt for the inbound delivery (as a result, a completion verification is sent to the ERP system using BAPI method "InboundDelivery.ConfirmDecentral")  Goods receipt for the inbound delivery is automatically posted in the ERP system (in inventory management) when the verification is recorded.    Quality management in decentralized WMS using handling units (HUs)  Quality management is also available in the goods receipt process in the decentralized warehouse. In this scenario, the quality management function is in the central system.  If there are handling units in the inbound delivery for which an inspection lot has been created, the inspection lot number is copied into the decentralized WMS and stored in the quants there.  The inspection lot does not exist in the decentralized system. You make the usage decision for the inspection lot in the central system, which triggers the system to create a posting change delivery and distribute it to the decentralized system. Then, the stock that belongs to this inspection lot is found in the warehouse and the corresponding posting change is made. From this point on, the procedure is the same as that of a posting change (see below).      Other goods receipts:    All other goods receipts are recorded in the ERP system. When the document is saved, the system creates an inbound delivery and sends it to the WM system using a BAPI. The inbound delivery is then processed in the WM system as described above. When the verification for the inbound delivery is sent to the ERP system, the goods receipt posting is automatically initiated in inventory management.    Stock transfers:    A stock transfer usually involves two storage locations (plants): the issuing storage location for picking and the receiving storage location for putaway. If the stock transfer is recorded in the ERP system as a two-step procedure and if one of the storage locations involved is a WMS-relevant storage location, the system creates a delivery for this posting and sends it to the WMS. Both storage locations involved are copied into the delivery to allow the actual posting to be executed after the verification is received from the WMS.  One-step stock transfers using a WMS-relevant storage location are only possible if a storage location that is not WM-relevant is involved in the posting change.    Process for stock transfers:  Entering the goods movement in the system  Automatically creating the delivery  Distributing the delivery from the ERP system to the WM system using BAPI method "InboundDelivery.SaveReplica" (this process is automatically executed in the background)  Physically receiving the goods into the warehouse or removing the goods from the warehouse (WMS).  Creating the transfer order  Putting away or picking the goods  Confirming the transfer order  Posting goods receipt for the inbound delivery (as a result, a completion verification is sent to the ERP system using BAPI method "InboundDelivery.ConfirmDecentral") or posting goods issue for the outbound delivery (as a result, a completion verification is sent to the ERP system using BAPI method "OutboundDelivery.ConfirmDecentral").  Goods receipt for the inbound delivery or goods issue for the outbound delivery is automatically posted in the ERP system (in inventory management) when the verification is recorded. When the goods receipt or goods issue is posted in the ERP system, the stock transfer is simultaneously posted in inventory management.    Goods issues based on sales orders:  The system uses sales orders to generate deliveries in the ERP system. The deliveries are then sent to the WMS. You use the WMS to create the transfer order, pick the goods and confirm the transfer order. When goods issue is posted, the picking quantities are passed on to the delivery of the ERP system.    Process for goods issues based on deliveries:  Creating the sales order  Creating the outbound delivery  Distributing the delivery to the WMS  Creating the transfer order for outbound delivery  Physically picking the goods in the warehouse  Confirming the transfer order  Printing the shipping documents, if appropriate  Posting goods issue for the outbound delivery (as a result, a completion verification is sent to the ERP system using BAPI method "OutboundDelivery.ConfirmDecentral")  Goods issue for the outbound delivery is automatically posted in the ERP system (in inventory management) when the completion confirmation is recorded.    Posting changes  You can also initiate transfer postings in the central system, in which case the stock change will be compared with the stock in the decentralized system and adjusted, if necessary.  If you use inventory management to make posting changes in the central system, the system first generates a delivery. This delivery is technically a request for the decentralized system to make a transfer posting for the stock involved. The central system does not create material documents or make any changes in stock at this point.  The delivery is transmitted to the decentralized system and, as of this point, can only be changed there. You can make settings in the decentralized system so that the system automatically creates a transfer order that corresponds to this delivery that does not require confirmation. You can also set the system to make the appropriate transfer posting in the WM stock automatically at the end of the process.  The transfer posting in the decentralized system simultaneously verifies the appropriate quantities to the central system. When the central system receives this verification, it automatically makes the stock change and creates a material document. You can display the material document in the delivery’s document flow.    Production supply  If the decentralized warehouse is also responsible for production supply, the following two methods of material staging are available in the system:  Production staging by switching storage locations  Production stock is managed in a storage location that is located somewhere other than in the decentralized warehouse. In this case, the production storage location is not managed in the decentralized warehouse.  If you switch the storage location in the central system, the system generates a delivery, for which you can then pick and post goods issue in the decentralized system.  At this point, the stock that has been staged using this method can be used in a manufacturing order in the central system.  Goods issue posting for a manufacturing order  In this scenario, the raw materials are taken directly from the decentralized warehouse’s storage location and used in the manufacturing order. If goods issue is posted for the manufacturing order in the central system, the system creates a delivery that is sent to the decentralized system. The rest of the process is the same as regular goods issue processing.    Note the following distinctions with regard to reservations:  Delivery does not trigger request generation  If the goods issue posting that generates the delivery refers to a reservation, the reservation number is copied into the delivery. In this case, the delivery does not check for availability and no requirements are generated, since that was already done in the manufacturing order. The reservation is canceled when the actual goods issue posting is made.  Changes disappear after the delivery is distributed  Keep in mind that if the reservation is changed in the meantime (if the production quantity has changed, for example), this change will not affect the delivery. Similarly, a change in the delivery will not result in a change in the reservation.  The WM/PP interface, which you can use for production supply in an integrated system, is not supported for decentralized warehouse processing. This function is not available decentrally because the WM/PP interface is based on the assumption that WM and PP are running in the same system, which is not the case in a decentralized system.  Goods receipt for a manufacturing order  You can process goods receipts from manufacturing orders in the decentralized WM system. For goods receipt postings, the central system first creates an inbound delivery for the manufacturing order and distributes it to the decentralized system.  In the decentralized system, the inbound delivery serves as a basis for putaway in WM. You can correct quantity differences here. Once you have confirmed the putaway transfer orders, goods receipt is posted in the decentralized system. The decentralized system then reports the quantity that was posted back to the central system. This verification automatically makes the actual goods receipt posting for the manufacturing order, along with the material document, in the central system.       
    2) Config we will get from Google also we will get standard idocs for ib and out bound.
    Regards,
    Mahesh

  • Warehouse management trasactional flow

    Hi Experts,
    can any one tell me the trasactional flow of warehouse management with SD-functionality.where exactly it works
    pls do needful.urgent.
    my mail id is [email protected]
    ex like : va01-vl01n-vf01
    regards
    veera.

    Hello AK,
    please could you mail me also the configuration steps for warehouse management system.
    Thanks & Regards

  • Lean warehouse Management

    Hi!
    I want to use lean warehouse management for creating TO. kinldly help me out to  know the settings of lean warehouse management with fixed storage bin and also for
    2. Wave pick settings
    With Regards
    Bhikshapathi

    dear vonnala
    Lean Warehouse Management: Configuration Guide
    Purpose
    The purpose of this document is to describe the general configuration steps required to manually set up the configuration within the system landscape that has already been installed using the corresponding installation or configuration guides for installation.
    The Configuration Guide describes how to set up the configuration of a Building Block manually, without the support of automated configuration tools.
    Preparation
    1.1 Prerequisites
    The following building blocks form the basis for all my SAP All-in-One Automotive, High Tech and Industrial Machinery and Components solutions. You only have to install these building blocks once.
    Building Blocks Comment
    Baseline Building Blocks (Layer 0)
    J00 - Essential Information
    J02 - Organizational Structure
    J03 - Financial Accounting
    J08 - Controlling
    J05 - Materials Management
    J04 - Sales and Distribution
    Baseline Building Blocks (Layer 1)
    J06 - Production Planning and Controlling
    J07 – Quality Management
    J18 - Product Cost Controlling
    J19 – Batch Management
    J20 - Cost Object Controlling – Make-to-Order
    J21 - Cost Object Controlling – Make-to-Stock
    J17 - Profitability Analysis
    J14 - Human Capital Management
    J09 - Travel Management
    Industry generic Building Blocks
    E04 - Supplement Settings
    E05 - Master Data HT / IM&C
    Configuration
    1.2 Lean WM Basic Settings
    1.2.1 Defining Defining Control&#61664;Control Parameters and Number Ranges for the Warehouse Number  Parameters for the Warehouse Number
    Use
    A warehouse number is an organizational unit in Logistics, which organizes the company from the perspective of Warehouse Management.
    In the Warehouse Management System, you can define a variety of control parameters at warehouse number level.
    Procedure
    1. Access the activity using one of the following navigation options:
    &#61664; Picking &#61664; Shipping &#61664; Logistic Execution &#61664;IMG Menu IMG   Define control parameters and number ranges for the warehouse number&#61507;Lean WM  Define control parameters and number ranges for warehouse no.(double&#61664; click)
    Transaction Code SM30
    2. Find the Field Name and input the relative value into the field.
    Table V_T3002
    Field name Value R/O/C Description
    Whse number L01 R
    Warehouse no. description Lean WM BP01 R
    Weight unit KG R
    Volume unit
    Default UoM K R
    Time unit/performance data
    Lean WM active X R
    Link to subsystem active
    Performance data
    Transfer order 01 R
    Group number 01 R
    1.2.2 Defining Storage Type
    Use
    A warehouse number is subdivided into a variety of storage types. A storage type is defined by its physical or organizational features (for example, high rack storage area, bulk storage, and goods receipt areas).
    A storage type has a short description rather than an address.
    Before you can implement Lean WM, you must configure the following settings:
    1. Assign a (newly defined) storage location to a warehouse number.(This step is defined by step 3.12 Control Plant / Storage Location / Warehouse Number Assignment
    2. You should set up at least three storage types:
    a storage type (that will be used as a source storage type) with one&#61692; or several fixed storage bins
    a goods issue area (as destination storage&#61692; type) for deliveries
    an interim storage area for differences&#61692;
    Procedure
    1. Access the activity using one of the following navigation options:
    IMG  Define Storage&#61664; Lean WM &#61664; Picking &#61664; Shipping &#61664; Logistic Execution &#61664;Menu IMG  type
    Transaction Code SM30
    2. Find the Field Name and input the relative value into the field
    Table V_T3012
    Data record 1:
    Field name Value Sub-screen
    Whse number L01
    Warehouse no. description Lean WM BP01
    Storage type 001
    Storage type name Fixed bin storage
    Stock plcmt requires confirmation for putaway control
    Unit of measure type srch
    Stock rmvl requires confirmation for picking control
    Unit of measure type srch
    Data record 2:
    Field name Value Sub-screen
    Whse number L01
    Warehouse no. description Lean WM BP01
    Storage type 916
    Storage type name Shipping area deliveries
    Stock plcmt requires confirmation for putaway control
    Unit of measure type srch
    Stock rmvl requires confirmation for picking control
    Unit of measure type srch
    Data record 3:
    Field name Value Sub-screen
    Whse number L01
    Warehouse no. description Lean WM BP01
    Storage type 999
    Storage type name Differences
    Stock plcmt requires confirmation for putaway control
    Unit of measure type srch
    Stock rmvl requires confirmation for picking control
    Unit of measure type srch
    Data record 4:
    Field name Value Sub-screen
    Whse number L01
    Warehouse no. description Lean WM BP01
    Storage type 902
    Storage type name IN-ZONE
    Stock plcmt requires confirmation for putaway control
    Unit of measure type srch
    Stock rmvl requires confirmation for picking control
    Unit of measure type srch
    1.2.3 Defining Doors
    Use
    In a WM-managed warehouse, you can define dock doors (also known as doors or gates). A door is a location where the goods either arrive in the warehouse or leave it.
    You can assign different functions to a dock door, for example:
    Goods receipt
    Goods issue
    Other transactions such as cross-docking and flow-through
    Procedure
    1. Access the activity using one of the following navigation options:
    &#61664; Picking &#61664; Shipping &#61664; Logistic Execution &#61664;IMG Menu IMG  Define Doors&#61472;&#61664;Lean WM
    Transaction Code SM30
    2. Find the Field Name and input the relative value into the field
    Table V_T30B
    Field name Value R/O/C Description
    Whse no. L01 R Warehouse number
    Door A01 R Door for warehouse number
    Text for door Door A01 R Text for door
    Staging area
    Matl stag. area txt
    GI indic. X R Goods issue indicator
    GR ind X R Goods receipt indicator
    CD ind Cross-docking indicator
    FT ind Flow-through indicator
    1.2.4 Defining Material Staging Areas
    Use
    A staging area is an interim storage area for goods that have been received from goods receipt and afterwards need to be transferred into the warehouse.
    It is also an interim storage area for goods that were picked in a warehouse and are to be loaded for goods issue through loading ramps or doors.
    You can assign different functions to a staging area:
    • Goods issue
    • Goods receipt
    Procedure
    1. Access the activity using one of the following navigation options:
    &#61664; Lean WM &#61664; Picking &#61664; Shipping &#61664; Logistic Execution &#61664;IMG Menu IMG  Define Material Staging Area
    Transaction Code SM30
    2. Find the Field Name and input the relative value into the field
    Table V_T30C
    Field name Value R/O/C Description
    Whse no. L01 R
    Staging area A01-01 R
    Matl stag. area txt Zone 1 R
    Door A01 R Door for warehouse number
    Text for door Door A01 R
    GI ind X R Goods issue indicator
    GR ind X R Goods receipt indicator
    CD ind Cross-docking indicator
    FT ind Flow-through indicator
    HU ind Handling unit indicator
    1.2.5 Defining Picking Area
    Use
    A picking area is an object within a storage type that groups together storage bins for purposes of stock removal.
    Procedure
    1. Access the activity using one of the following navigation options:
    &#61664;IMG Menu IMG  Define Picking&#61472;&#61664; Lean WM &#61664; Picking &#61664; Shipping &#61664;Logistic Execution  Area
    Transaction Code SM30
    2. Find the Field Name and input the relative value into the field
    Table V_T30A2
    Data record 1:
    Field name Value R/O/C Description
    WhN L01 R Warehouse number
    STy (storage type) 001 R
    PAr (Picking area) 001 R
    Picking area name Picking area 1 R
    Data record 2:
    Field name Value R/O/C Description
    WhN L01 R Warehouse number
    STy (storage type) 001 R
    PAr (Picking area) 002 R
    Picking area name Picking area 2 R
    1.2.6 Defining Transfer Type
    Use
    In Lean WM, the transfer type "A" (stock removal) is required for movement type control.
    Procedure
    1. Access the activity using one of the following navigation options:
    &#61664; Picking &#61664; Shipping &#61664; Logistic Execution &#61664;IMG Menu IMG   Define Transfer Type&#61664;Lean WM
    Transaction Code SM30
    2. Find the Field Name and input the relative value into the field
    Table V_T333A2
    Field name Value R/O/C Description
    WhN L01 R Warehouse number
    Transfer type A R
    Text f. shipment type Pick R
    1.2.7 Defining Movement Types
    Use
    The SAP R/3 System uses movement type to process movements in Inventory Management (for example, goods receipt for a purchase order or goods issue to a cost center). When the system recognizes a movement as being relevant for Warehouse Management, it assigns this movement to a WM movement type by means of a table.
    The movement type for the Warehouse Management System provides the information required for stock removals or picking:
    Interim&#61692; storage bin
    Fixed bin coordinate&#61692;
    Control indicator for processing,&#61692; confirming, and printing transfer orders
    Confirmation info&#61692;
    Procedure
    1. Access the activity using one of the following navigation options:
    &#61664; Lean WM &#61664; Picking &#61664; Shipping &#61664; Logistic Execution &#61664;IMG Menu IMG  Define Movement Type
    Transaction Code SM30
    2. Find the Field Name and input the relative value into the field
    Table V_T3332
    Data record 1:
    Field name Value R/O/C Description
    Warehouse number L01 R
    Warehouse no. description Lean WM R
    Movement type 255 R
    Movement type description Goods Issue general R
    Src 001 R
    Src Stor. Bin
    Dest 916 R
    Dest Stor. Bin
    Transfer type A R
    Text for transfer type TRATX Pick R
    TO creation screen 2 R
    Scr. TO confirmation 2 R
    Manual TO creation not allowed
    Transfer priority
    Print code
    TO item can be confirmed immed.
    Propose confirmation
    Data record 2:
    Field name Value R/O/C Description
    Warehouse number L01 R
    Warehouse no. description Lean WM R
    Movement type 601 R
    Movement type description Picking by delivery note R
    Src 001 R
    Src Stor. bin
    Dest 916 R
    Dest Stor. bin
    Transfer type A R
    Text for transfer type TRATX Pick R
    TO creation screen 2 R
    Scr. TO confirmation 2 R
    Manual TO creation not allowed X R
    Transfer priority
    Print code 02 R
    TO item can be confirmed immed. X R
    Propose confirmation
    1.2.8 Defining Difference Indicator
    Use
    Using the difference indicator, you can classify your differences. This indicator is used in Lean WM for evaluation purposes only.
    Procedure
    1. Access the activity using one of the following navigation options:
    Logistic&#61664;IMG Menu IMG   Define Difference&#61664; Lean WM &#61664; Picking &#61664; Shipping &#61664;Execution  Indicator
    Transaction Code SM30
    2. Find the Field Name and input the relative value into the field
    Table V_T3362
    Field name Value R/O/C Description
    WhN L01 R Warehouse number
    DiffInd (difference indicator) X R
    Description of difference indicator Stock difference R
    Stor.ty.differences 999 R
    Diff.bin
    TO X R
    Source bin
    1.2.9 Control Plant / Storage Location / Warehouse Number Assignment
    1.2.9.1 Assigning Warehouse No. to Plant-Storage Locations
    Use
    By doing so, system can recognize which storage locations in Materials Management are controlled by the Warehouse Management system (LE-WM); you must assign the plants and the storage location to the warehouse number.
    Procedure
    1. Access the activity using one of the following navigation options:
    &#61664;Assignment &#61472;&#61664;Enterprise Structure &#61472;&#61664;IMG Menu IMG  Assign warehouse No. To plant/storage&#61664;Logistic Execution  &#61664;Location
    Transaction Code SM30
    2. Find the Field Name and input the relative value into the field
    Table V_T320
    Field name Value R/O/C Description
    Plant BP01 R
    SLoc 0005 R
    WhN L01 R
    1.2.9.2 Control Plant / Storage Location / Warehouse Number Assignment
    Use
    You can control for each combination of plant, storage location, and warehouse number whether Lean WM or standard management of bin inventory is to be selected.
    If you are using Lean WM, you can also specify a picking storage type that is used for creating transfer orders.
    Procedure
    1. Access the activity using one of the following navigation options:
    &#61664; Logistic Execution &#61664;IMG Menu IMG   Control Plant / Storage Location / Warehouse&#61664; Lean WM &#61664; Picking &#61664;Shipping  Number Assignment
    Transaction Code SM30
    2. Find the Field Name and input the relative value into the field
    Table V_T3202
    Field name Value R/O/C Description
    Plnt BP01 R
    Stor. loc. 0005 R
    WhNo (Whse number) L01 R
    Degree of activation Warehouse Mgmt 1 R
    Stor.type for picking in Lean WM 001 R
    1.2.10
    1.2.11 Assigning Picking Location
    Use
    Assign the picking locations to the combinations of shipping point and storage condition for every plant.
    Procedure
    1. Access the activity using one of the following navigation options:
    &#61664; Shipping &#61664; Logistic Execution &#61664;IMG Menu IMG   Assign Picking Location&#61664; Determine Picking Location &#61664;Picking
    Transaction Code SM30
    2. Find the Field Name and input the relative value into the field
    Table V_TVKOL
    Field name Value Description
    ShPt BP01 Plant
    Plnt BP01 Shipping point/receiving pt
    SC K1 Storage conditions
    SLoc 0005 Storage location
    1.3 Print Control for Warehouse
    Use
    Print control defines the following:
    • Which slips are to be printed for the movements (that is, for the transfer orders) within the Warehouse Management System
    • How these slips are to be printed (that is, which forms are to be used, how many copies are to be printed)
    • On which printer a slip is to be printed automatically
    And print control manages the print operations of the warehouse. This flexibility involves a certain degree of complexity with regard to the parameterization.
    Procedure
    1. Access the activity using one of the following navigation options:
    &#61664;IMG Menu IMG   Define Print&#61664; Lean WM &#61664; Picking &#61664; Shipping &#61664;Logistic Execution  control
    Transaction Code OMLV
    2. Choose the following button and check the contents
    (Here only the contents of the warehouse no. L01 are listed):
    2.1 Spool code
    Data Record 1
    Field name Value R/O/C Description
    WhN L01 R Warehouse number
    Spool 01 R Spool request name
    Copies 1 R Number of copies
    Title LVS1 R Spool control data
    Print_immed. X R Print immediately
    Delete_after_print X R Release after output
    NewSplReq__ New spool request
    Data Record 2
    Field name Value R/O/C Description
    WhN L01 R Warehouse number
    Spool 02 R Spool request name
    Copies 1 R Number of copies
    Title LVS2 R Spool control data
    Print_immed. Print immediately
    Delete_after_print X R Release after output
    NewSplReq__ New spool request
    2.2 sort profile/collective process
    Field name Rec1 Rec2 Rec3 Rec4 Rec5 Rec6 Rec7 Rec8 Rec9
    WhNo_(Whse_number) L01 L01 L01 L01 L01 L01 L01 L01 L01
    Sort_profile 1 2 3 4 5 6 7 8 9
    1st_sort_criterion SPOOI SPOOI SPOOI SPOOI SPOOI SPOOI SPOOI SPOOI SPOOI
    Sort_descending_order (1st_sort_criter.)
    Control_break_1st_sort_criterion
    2nd_sort_criterion LDESI LDESI LDESI LDESI LDESI LDESI LDESI LDESI LDESI
    Sortdescending_order (2nd_sort_crit.)
    Control_break_2nd_sort_criterion X
    3rd_sort_criterion REFNR REFNR REFNR REFNR FORMI FORMI FORMI FORMI REFNR
    Sortdescending_order (3rd_sort_crit.)
    Control_break_3rd_sort_criterion X X X X
    4th_sort_criterion FORMI FORMI FORMI FORMI LGNUM LGNUM LGNUM LGNUM FORMI
    Sortdescending_order (4th_sort_crit.)
    Control_break_4th_sort_criterion X X X X
    5th_sort_criterion LGNUM LGNUM LGNUM LGNUM VLTYP VLTYP VLTYP VLTYP LGNUM
    Sortdescending_order (5th_sort_crit.)
    Control_break_5th_sort_criterion
    6th_sort_criterion VLTYP NLTYP VLTYP TANUM VLPLA NLPLA WERKS TAPOS NLTYP
    Sortdescending_order (6th_sort_crit.)
    Control_break_6th_sort_criterion X X X X
    7th_sort_criterion VLPLA NLPLA WERKS TAPOS
    TANUM TANUM LGORT KOBER
    Sortdescending_order_ (7th_sort_crit.)
    Control_break_7th_sort_criterion X
    8th_sort_criterion TANUM TANUM LGORT TAPOS TAPOS MATNR VLPLA
    Sortdescending_order (8th_sort_crit.)
    Control_break_8th_sort_criterion
    9th_sort_criterion TAPOS TAPOS MATNR CHARG TANUM
    Sortdescending_order (9th_sort_crit.)
    Control_break_9th_sort_criterion
    10th_sort_criterion CHARG BESTQ
    TAPOS
    Sortdescending_order_ (10th_sort_crit.)
    Control_break_10th_sort_criterion
    11th_sort_criterion BESTQ SOBKZ
    Sortdescending_order_ (11th_sort_crit.)
    Control_break_11th_sort_criterion
    12th_sort_criterion SOBKZ LSONR
    Sortdescending_order_ (12th_sort_crit.)
    Control_break_12th_sort_criterion
    13th_sort_criterion LSONR VLTYP
    Sortdescending_order_ (13th_sort_crit.)
    Control_break_13th_sort_criterion
    14th_sort_criterion VLTYP
    Sortdescending_order_ (14th_sort_crit.)
    Control_break_14th_sort_criterion
    15th_sort_criterion
    Sortdescending_order_ (15th_sort_crit.)
    Control_break_15th_sort_criterion
    2.3 print code
    Field name Rec1 Rec2 Rec3 Rec4 Rec5 Rec6 Rec7
    WNo___(Warehouse_number) L01 L01 L01 L01 L01 L01 L01
    PrCd__(Print_code) 01 02 03 11 12 21 22
    Print_code_description
    Find_shipping_data____
    Determine_production_data_
    Form_ LVSTAEINZEL LVSTALISTE LVSTOSOLO LVSTAEINZEL LVSTALISTE LVSKOMMIL1
    LVSKOMMIL2
    PTm_(Time_of_printing)________
    Sort_profile 1 1 1 4 1 1
    Combined_print x x x x
    Spool_data 02 02 01 02 02 02 02
    Label_form LVSLABELS
    Label_spool_code 01
    Quantity_of_labels_(Indicator) 2
    2.4 assign printer to storage type (LP01 to 001 only)
    Field name Rec1 Rec2 Rec3
    WhNo_(Whse_number) L01 L01 L01
    STy__(storage_type) 001 916 999
    Storage_type_description Fixed bin storage Shipping area deliveries Differences
    Printer
    2.5 assign print code to movement type
    Field name Rec1 Rec2 Rec3
    WhNo_(Whse_number) L01 L01 L01
    MvT__(WM_movement_type) 101 255 601
    Movement_type_description Goods receipt for pur.or.
    Picking by delivery note
    PrCd__(Print_code) 01 02
    2.6 assign print report to warehouse No.
    Field name Rec1
    WhNo_(Whse_number) L01
    Warehouse_number_descrip. Lean WM Plant BP01
    Print_report RLVSDR40
    2.7 print control multi-processing
    Field name Rec1
    WhN L01
    Ref.ty. L
    Status 2
    Print_prog. RLKOMM40
    PrCd 21
    Printer LP01
    1.4 Manual Activity
    1.4.1 Maintaining Number Range Intervals for Transfer Order
    Use
    Maintain number range intervals for transfer order
    Procedure
    In this step, you define that, the Number range for Transfer order as 01 and Group number as 01, now you should tell the system how the number range would like for 01 as transfer order and 01 for the group number, for both number range, you may define you own number range, the following information just for reference:
    Access the activity using one of the following navigation options:
    &#61664; Logistic Execution &#61664;IMG Menu IMG   Define control parameters and number ranges for&#61664; Lean WM &#61664; Picking &#61664;Shipping   Maintain number range intervals for transfer orders&#61664;the warehouse number  (double click)
    Transaction Code LN02
    Check if the internal number range 01 (0000000001-1000000000) has been defined
    Once you have defined your number ranges, it is extremely difficult to change them afterwards when the objects concerned are filled with data.
    Bear in mind that you will be entering data on a long-term basis. Create your number range intervals accordingly.
    1.4.2 Maintaining Number Range Intervals for Reference Numbers
    Use
    Reference number range has the following meanings:
    This number identifies a number range to be used for the assignment of sequential numbers for WM reference numbers. Reference numbers are used to create or print a group of transfer orders at one time.
    A sequential number generated by the system for the purpose of multiple processing of transfer requirements and delivery notes.
    The reference number can also be used to print the resulting transfer orders at a later time.
    Procedure
    In this step, you define that, the Number range for Transfer order as 01 and Group number as 01, now you should tell the system how the number range would like for 01 as transfer order and 01 for the group number, for both number range, you may define you own number range, the following information just for reference:
    Access the activity using one of the following navigation options:
    &#61664;IMG Menu IMG  Define control parameters&#61472;&#61664; Lean WM &#61664; Picking &#61664; Shipping &#61664;Logistic Execution   Maintain number range intervals for&#61664;and number ranges for the warehouse number  Reference Numbers( double click)
    Transaction Code LN06
    Check if the internal number range 01 (5000000000 - 5999999999) has been defined
    Once you have defined your number ranges, it is extremely difficult to change them afterwards when the objects concerned are filled with data.
    Bear in mind that you will be entering data on a long-term basis. Create your number range intervals accordingly.
    rewards if it helps
    siva

Maybe you are looking for

  • Connecting two computers with two routes?

    Yes, can I hook up two computers, each with a different router on one phone line?  I hope this makes sense.  I have one main computer hooked up to a wireless/wired router and the one in another room I want to hook up to the internet also.  Do I need

  • I forgot my memorable answers, what can I do?

    I forgot my memorable answers, what can I do?

  • How to jump to homepage in Safari?

    Is there a way to jump to my homepage using Safari?  New Mac user here.... Thanks

  • Printing a book in Europe

    I have a book which has been published through a private publisher in the US (Booksurge).  It has been translated into German and is now to be published through a similar online publishing house in Germany.  My colleague is worried that US-built pdf

  • Tcode : CJ40 - Cost Planning

    Hi, I would like to confirm <b>'BAPI_BUS2054_CHANGE_MULTI'</b> Bapi can be used to change cost planning? plese let me know any function module or BAPI to simulate(testing) the Cost Planning. Regards, Suresh