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}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • 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.

  • 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.

  • 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

  • Need Info About Document Management System

    Hi All,
    I need information about Document Management system.
    How it is linked with KM
    Thanks
    Arun

    Hi Arun,
    DMS is available in R/3 Systems as a individual module and can be linked with KM using DMS Connector for  KM.  Find the links below..
    Check this out...
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/30/08a037b9e62417e10000009b38f889/frameset.htm">DMS</a>
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=26682">Thread 1</a>
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=235959">Thread 2</a>
    Hope this helps.
    Regards,
    Venkat.

  • 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

  • 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

  • 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 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 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) 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.

  • Experiences with ES Bundle "Integration of external Warehouse Management" ?

    Hi PI Experts,
    anybody who can share experiences with the ES Bundle Integration of [External Warehouse Management System |https://www.sdn.sap.com/irj/scn/wiki?path=/display/espackages/integrationofExternalWarehouseManagement+System] and the usage of its Enterprise Services "Confirm Goods Movement_V1" or "Confirm Goods Movement" ?
    As far as I understood these ES can be used for goods movements out of the ERP System.
    Is it really possible to use these ES while creating an goods movement with Transaction MIGO ??
    As far as I know it is only possible to send Transport Orders with WMTORD IDOCS out of SAP to externa Systems (!!) without any custom coding (!!) . Using instead an WMBXY message type (IDOC WMBIDO02) is only for inbound IDOC processing. If using this Standard IDOC for outbound IDOC processing the only way is implementing the BADI called while perfoming the TA MIGO. Correct?
    Any experiences either with the ES Bundle or the IDOC goods movement out of SAP ERP are welcome.
    Kind regards,
    Dries

    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.

  • Warehouse Management Solutions - Anyone here manage?

    I have twice initiated contact with companies who provide such systems, we have visited the Stores and discussed requirements, we have even received quotes - and then other projects take priority and it is shelved again.
    What we want is an ERP integrated WMS with barcode readers and location marked bins etc, but it never gets the go-ahead.
    We did decide on what some challenges might be, labeling item bins, getting Forklift drivers to perform the scanning and storing task, delays in updating the ERP Stock tables,  and potentially, getting suppliers to agree to the barcode scheme.

    I am curious as to whether there are many SpiceHeads here who have responsibility for overseeing warehouse management systems...
    I have been learning a bit about it recently, from a high level view, and am wondering what are the technical challenges people face with them?
    (As it is not immediately evident what category it would fall under, I have placed it in the Water Cooler to start...)
    This topic first appeared in the Spiceworks Community

  • VMS - Vehicle Management System

    Hi all,
    I am in a very urgent need of VMS (Vehicle Management System) related study material, links and documents.
    Please reply through this post or email me at [email protected]
    I would really appriciate your help.
    Thanks
    Juhi

    check the link
    http://help.sap.com/saphelp_di471/helpdata/EN/91/88c43ace7a3b46e10000000a114084/frameset.htm
    you will get a detailed information about Vehicle management system.
    Inorder to get this VMS functionaliy, it should require the addon DIMP(Discrete Industries Milk products)
    More Info :-The Vehicle Management System (VMS) is an application for the Automotive industry. It supports, in the area of Sales & Services, the business processes that you require as vehicle importer when dealing with your original equipment manufacturers (OEMs) and your dealers in new and used vehicle sales. VMS offers you complete integration of all the relevant processes such as procurement, sales, rework, returns processing, trade-in and service processing. It also supports the archiving of vehicle data. In other words, it allows you to react flexibly to customers’ requirements in the area of production (using the “pull strategy”) and fast delivery times with reduced warehouse stock and sales/distribution costs.
    For the vehicle importer, VMS serves as a central tool for managing, procuring, sales/distribution and tracking of vehicles. Your dealers use it as a workplace for configuration, searching, purchasing and tracking of vehicles for your end customers. The dealers can log in to your system remotely via Internet and access your data. You do not require your own SAP system for this. You only need an Internet browser, via which you work with a simplified VMS internet interface.

Maybe you are looking for

  • ITunes 8.1.1 no longer recognizing either of my iPod Touch 2g devices

    Okay, no idea what I did or what changes have occurred but today iTunes 8.1.1 stopped seeing my iPod Touch 16GB 2g. I rebooted the Mac. I rebooted the iPod Touch. I tried connecting my iPod Touch to my wife's Windows computer- where it was recognized

  • Daily Crashes of Acrobat 11 Pro 11.0.3 on XP

    My help desk is getting several calls a day about users' opening a PDF, stamping it and printing to Adobe PDF (to add preset security settings) -- then Acrobat crashes and closes. And sometimes Acrobat just crashes for other reasons. This has been ha

  • Could we restrict ability to approve hours in CATS_APPR_LITE and CAT7?

    Hello everybody, we're looking for the way to restrict ability of users, that access to CATS_APPR_LITE transaction, to approve hours only entered by specific CID(s). Is there a specific authorization object that drive the ability to approve hours? an

  • Systemd: shutdown hangs without daemon-reload

    I've recently encountered this problem since I've moved arch over to an SSD. I'm not sure if this is directly related though. I've implemented a user session as per the systemd/user wiki page. The logs suggest that all of my system and session servic

  • To JDev Team

    Is there a list of known bugs for current versions? Thanks P.