Linking Order Management with inventory

Hi
I am new to Oracle Apps as i am working on Data warhousing front.
I have a requirement in Data warehouse to relate the Order management tables with Inventory tables.
I need to know whether there is any possibility on source side to join these 2.
My source system is oracle Apps.
I nned to know whether i can able to link these subject areas in Oracle Apps.
please let me know if you have solution for this.
Thnx in advance,
Soma

Hi Amr,
You would have attached the "Allocation class" for that item right. Please check the Parameter for the particular "Allocation Class" where you would have mentioned "TYPE = AUTOMATIC". Upto my knowledge thats the issue in your case.
Razzy.
One request to you Amr.
Can you share Setup and Flow of "Oracle Purchasing and OPM Quality" integration with me. Beacuse i am facing problem from the scratch and i am thinking to setup "Oracle Quality" for the Receiving inspection in Oracle Purchasing. Is it right?
Please advice me with your experience in this Regard.
Razzy

Similar Messages

  • How to Link Solution manager with ECC?

    Hi Friends,
    i am new to solution manager. can any one help me how to link solution manager with other SAP servers like ECC, CRM, SRM? if anybody has paterial for the configuration can u send me, i will be very much thankful for that? my mail id is [email protected], [email protected]
    thank you,
    devendran.

    hi Nick thanx for you reply. i was trying your way and the pop-up  asking the System name, Product, Product version and the installation number. (is it the right screen which i am opening? if it is not then help me out).
    my doubt is what to give in the system name. i had given ECC500 and it is not taking. is there any specific charater to enter i this field? if it is there then where we are maintaining it?
    in the product field i entered SAP R/3 Enterprise and Product Version SAP R/3 Enterprise 47x200 from F4 option.
    the next doubt is what is the Installation number and what to give in that.
    Regards,
    Devendran

  • Service Order Management with External ResourceProc.Presentation Req???????

    Hello All
    I want presentations about the scenario u201CService Order Management with External Resource Procurementu201D and if some one have implemented this scenario it will be much better if I got a detailed scenario
    Please send me the presentations and the documents to
    Jacopo.fransoice"at"live.com
    Thanks in advance
    Jacopo Fransoice

    i need these presentations urgently

  • Order Management with OPM

    Hi Friends
    i'm using order management with Process execution ...when i create a sales order and try to access the Reservation details from Tools menu to reserve the SO against Batch i got an error
    APP-GMI-83900: OPM Manual Allocation is not avaialable
    i'm using : 11.5.10.2
    Regards
    Amr Hussien

    Hi Amr,
    You would have attached the "Allocation class" for that item right. Please check the Parameter for the particular "Allocation Class" where you would have mentioned "TYPE = AUTOMATIC". Upto my knowledge thats the issue in your case.
    Razzy.
    One request to you Amr.
    Can you share Setup and Flow of "Oracle Purchasing and OPM Quality" integration with me. Beacuse i am facing problem from the scratch and i am thinking to setup "Oracle Quality" for the Receiving inspection in Oracle Purchasing. Is it right?
    Please advice me with your experience in this Regard.
    Razzy

  • Batch load script for Order Management with Oracle R12 EBS

    Hello,
    I am looking for a way to load a million dummy test records into Order Management. For example, I would like to automate a batch process to generate a million new sales orders for Oracle 12.1.1 EBS on Linux platform. If anyone has an idea on how to script this, would appreciate your help.

    Two questions:
    1. How would I modify the following script to generate a million new orders for OM:
    2. How can I register and create a concurrent program with the script?
    SET SERVEROUTPUT ON;
    DECLARE
    v_api_version_number NUMBER := 1;
    v_return_status VARCHAR2(2000);
    v_msg_count NUMBER;
    v_msg_data VARCHAR2(2000);
    -- IN Variables --
    v_header_rec oe_order_pub.header_rec_type;
    v_line_tbl oe_order_pub.line_tbl_type;
    v_action_request_tbl oe_order_pub.request_tbl_type;
    v_line_adj_tbl oe_order_pub.line_adj_tbl_type;
    -- OUT Variables --
    v_header_rec_out oe_order_pub.header_rec_type;
    v_header_val_rec_out oe_order_pub.header_val_rec_type;
    v_header_adj_tbl_out oe_order_pub.header_adj_tbl_type;
    v_header_adj_val_tbl_out oe_order_pub.header_adj_val_tbl_type;
    v_header_price_att_tbl_out oe_order_pub.header_price_att_tbl_type;
    v_header_adj_att_tbl_out oe_order_pub.header_adj_att_tbl_type;
    v_header_adj_assoc_tbl_out oe_order_pub.header_adj_assoc_tbl_type;
    v_header_scredit_tbl_out oe_order_pub.header_scredit_tbl_type;
    v_header_scredit_val_tbl_out oe_order_pub.header_scredit_val_tbl_type;
    v_line_tbl_out oe_order_pub.line_tbl_type;
    v_line_val_tbl_out oe_order_pub.line_val_tbl_type;
    v_line_adj_tbl_out oe_order_pub.line_adj_tbl_type;
    v_line_adj_val_tbl_out oe_order_pub.line_adj_val_tbl_type;
    v_line_price_att_tbl_out oe_order_pub.line_price_att_tbl_type;
    v_line_adj_att_tbl_out oe_order_pub.line_adj_att_tbl_type;
    v_line_adj_assoc_tbl_out oe_order_pub.line_adj_assoc_tbl_type;
    v_line_scredit_tbl_out oe_order_pub.line_scredit_tbl_type;
    v_line_scredit_val_tbl_out oe_order_pub.line_scredit_val_tbl_type;
    v_lot_serial_tbl_out oe_order_pub.lot_serial_tbl_type;
    v_lot_serial_val_tbl_out oe_order_pub.lot_serial_val_tbl_type;
    v_action_request_tbl_out oe_order_pub.request_tbl_type;
    BEGIN
    DBMS_OUTPUT.PUT_LINE('Starting of script');
    -- Setting the Enviroment --
    mo_global.init('ONT');
    fnd_global.apps_initialize ( user_id => 123
    ,resp_id => 456
    ,resp_appl_id => 789);
    mo_global.set_policy_context('S',785);
    -- Header Record --
    v_header_rec := oe_order_pub.g_miss_header_rec;
    v_header_rec.operation := oe_globals.g_opr_create;
    v_header_rec.order_type_id := 1005;
    v_header_rec.sold_to_org_id := 7157;
    v_header_rec.ship_to_org_id := 5480;
    v_header_rec.invoice_to_org_id := 5181;
    v_header_rec.order_source_id := 0;
    v_header_rec.booked_flag := 'N';
    v_header_rec.price_list_id := 7018;
    v_header_rec.pricing_date := SYSDATE;
    v_header_rec.flow_status_code := 'ENTERED';
    v_header_rec.cust_po_number := '99478222532';
    v_header_rec.sold_from_org_id := 83;
    v_header_rec.salesrep_id := -3;
    v_header_rec.transactional_curr_code:= 'GBP';
    v_action_request_tbl (1) := oe_order_pub.g_miss_request_rec;
    -- Line Record --
    v_line_tbl (1) := oe_order_pub.g_miss_line_rec;
    v_line_tbl (1).operation := oe_globals.g_opr_create;
    v_line_tbl (1).inventory_item_id := 27893;
    v_line_tbl (1).ordered_quantity := 1;
    v_line_tbl (1).unit_selling_price := 2000;
    v_line_tbl (1).calculate_price_flag := 'Y';
    DBMS_OUTPUT.PUT_LINE('Starting of API');
    -- Calling the API to create an Order --
    OE_ORDER_PUB.PROCESS_ORDER (
    p_api_version_number => v_api_version_number
    , p_header_rec => v_header_rec
    , p_line_tbl => v_line_tbl
    , p_action_request_tbl => v_action_request_tbl
    , p_line_adj_tbl => v_line_adj_tbl
    -- OUT variables
    , x_header_rec => v_header_rec_out
    , x_header_val_rec => v_header_val_rec_out
    , x_header_adj_tbl => v_header_adj_tbl_out
    , x_header_adj_val_tbl => v_header_adj_val_tbl_out
    , x_header_price_att_tbl => v_header_price_att_tbl_out
    , x_header_adj_att_tbl => v_header_adj_att_tbl_out
    , x_header_adj_assoc_tbl => v_header_adj_assoc_tbl_out
    , x_header_scredit_tbl => v_header_scredit_tbl_out
    , x_header_scredit_val_tbl => v_header_scredit_val_tbl_out
    , x_line_tbl => v_line_tbl_out
    , x_line_val_tbl => v_line_val_tbl_out
    , x_line_adj_tbl => v_line_adj_tbl_out
    , x_line_adj_val_tbl => v_line_adj_val_tbl_out
    , x_line_price_att_tbl => v_line_price_att_tbl_out
    , x_line_adj_att_tbl => v_line_adj_att_tbl_out
    , x_line_adj_assoc_tbl => v_line_adj_assoc_tbl_out
    , x_line_scredit_tbl => v_line_scredit_tbl_out
    , x_line_scredit_val_tbl => v_line_scredit_val_tbl_out
    , x_lot_serial_tbl => v_lot_serial_tbl_out
    , x_lot_serial_val_tbl => v_lot_serial_val_tbl_out
    , x_action_request_tbl => v_action_request_tbl_out
    , x_return_status => v_return_status
    , x_msg_count => v_msg_count
    , x_msg_data => v_msg_data
    DBMS_OUTPUT.PUT_LINE('Completion of API');
    IF v_return_status = fnd_api.g_ret_sts_success THEN
    COMMIT;
    DBMS_OUTPUT.put_line ('Order Import Success : '||v_header_rec_out.header_id);
    ELSE
    DBMS_OUTPUT.put_line ('Order Import failed:'||v_msg_data);
    ROLLBACK;
    FOR i IN 1 .. v_msg_count
    LOOP
    v_msg_data := oe_msg_pub.get( p_msg_index => i, p_encoded => 'F');
    dbms_output.put_line( i|| ') '|| v_msg_data);
    END LOOP;
    END IF;
    END;
    /

  • Interfacing SAP R/3 4.7 Order Management with GTS 3.0 or GTS future release

    Scenario I
    During order entry (Tcode VA01) in SAP R/3 4.7 users would like to prevent an order from being saved for a certain product if it is not ok to order / blocked for shipment. The current thought is that GTS (version 3.0) has data loaded that is used to check during delivery creation whether a delivery is ok to ship or not.
    Can such a check using GTS be carried out during order entry. The requirement is to do a real-time call to GTS during VA01 and if the device is not ok to order user should get an error message letting them know the reason why the order cannot be saved. I believe there is no real time interface supported between order entry and GTS and so this type of a check may not be available during order entry.
    Scenario II
    After an order has been saved in SAP R/3 4.7 users would like to know before the delivery gets created for this order if this order will be blocked from shipping due to sanctions in GTS.
    The current concern is that users cannot tell till it the order is ready to ship if the delivery will be blocked for shipment. If there is a way in GTS (via a report / transaction) to let the users know that this order is on not ok to ship then users can take proactive steps to address the issue rather than having to wait till the delivery note is about to be created.
    If anyone can highlight if there is any capabilities in GTS 3.0 or future releases of GTS to support the above scenarios OR any potential workaround to address these scenarios that will be greatly appreciated.
    Thanks a lot.
    Regards,
    Samir Agarwal

    Hi,
    Dont know about GTS 3.0, but in GTS 7X we have the option to prevent an order from being saved if it is not complying with any of the regulations or is not ok for further customs processing.
    Its not possible to give a real time update in va01. but when you try to save it, it'll  throw an error log. though you will be able to save it but the sales order will be blocked for any further processing.
    It'll will not allow you to do delivery on this order (which shows a status blocked). I guess this suffice the requirement in both scenarios.
    Regards
    Vivek

  • Link records management with SRM

    Hello,
    I'm trying to integrate RM and SRM and i could see that in S_AREA_CMG exists some service provider specifics for SRM objects, like "Record for SRM and R/3 Purchasing Documents" (/SAPPSPRO/SP_RECORD), SP for SRM Quotations (/SAPPSPRO/SP_SRM_QUOT).
    I would like to ask if you could send me some documentation about this because i could't find anything about this.
    As well, do you know if the records for SRM work like a normal records, that is i have to associate a record model to the procurement record. So for navegate to SRM do you know if i have to customizing something?
    Thanks for your help!
    Maria

    Dear Sekhar,
    1. SRM system activities -
    Pragya - http://help.sap.com/saphelp_srm70/helpdata/en/48/59e5475f693912e10000000a42189b/frameset.htm
    2. RM system Activitties -
    Pragya - http://help.sap.com/saphelp_srm70/helpdata/en/48/59e5475f693912e10000000a42189b/frameset.htm
    3. Basis activities in setting up of RM system ( Guide RM and ECC can be in same server with different client )
    Pragya - RM is avaliable in ECC stack. It can be used in that system..SRM will be on a different server...thats all..
    4. Basis activities in SRM
    Pragya - I am not sure of basis steps to set up SRM. You need to consult a SRM expert.
    In addition:
    How to setup a simple scenario using SAP Netweaver Folder Management- http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1009705f-104e-2c10-0fb2-90cad6165030 this document has got a section on how to create a record model . A node in record model has got an attribute called ANCHOR.This can be supplied with a value.At rutime the node can be identified using that value...helps in attaching the object to the right node of record.
    Please see existing record models for PPS records in rmsid S_CMG_DEMO in "record modeller" element type.
    RM & SRM would be on different machines...RM in an ECC system has been seen to be generally used.
    Best Regards,
    Pragya

  • Sales order management certification

    Hi,
    I will be appearing for SAP Certified Application Professional - Sales Order Management with SAP ERP 6.0(P_SD_60).
    Can any one let me know from where can I get relevant material, and also some question & answers.
    Thanks in advance...

    Hi,
    For SAP SD certification you have to read following books.
    SCM 600 : PROCESS IN SALES & DISTRIBUTION
    SCM 605: SALES
    SCM 610: DELIVERY
    SCM 615: BILLING
    SCM 620: PRICING
    There will be 80 questions in total and the Pass percentage is 70 for SD.
    You will have sufficient time of 3 hours and be cool
    major question will be Process oriented and fully prepare all the questions like Plant determination, shipping point .
    There will be 5-6 question of solution manager.
    Please go through the First thread in the forum, you will get enough material.
    Please also go thorugh the following link for more insight.
    http://www.sap.com/services/education/certification/certificationfinder.epx?context=%5b%5b106%7c1%7c3%5d%5d%7c
    WISH YOU GOOD LUCK for your CERTIFICATION.
    thanks,
    santosh

  • SAP Certification Exam for sales order management

    Hello All,
    I am an SAP SD Consultant with 5 yrs of experience. My experience spans across different areas in SD which includes integration experience as well.
    Off late i decided to appear for a certification exam & found the same in SAP website. SAP is offering the following certification exam as it relates to SO Management
    "SAP Certified Application Professional - Sales Order Management with SAP ERP 6.0"
    Can somebody advice/sugges me on if i can prepare for this exam on my own based on my work experiece or is it better to go to a centre which offers a certification training. I would appreciate any suggestions/comments
    Thanks,
    Vinay

    Hi Vekat,
    Having knowledge is good but certification comes in different way. There will be questions from SAP materials and it might be just one line from the PDFs.
    Its good to go thru the SAP materials applicable for this certification which can help you to prepare for it in a better way.
    If you donot have these materials then you may go thru e-learnings/classroom trainings either from SAP Eduction or from its affiliated institutions.
    Regards,
    Subhash

  • Order management flow path with tcode in pp module

    hi sap guru's,
    i need the order management flow path with tcode in pp module.
    regards,
    muralidhar.t

    Hi Murlidhar,
    Step 1: Material Master
    Logistics > Production > Master Data > Material Master > Material > Create General > Immediately MM01
    Step 2: BOM creation
    Logistics > Production > Master Data > Bills of Material > Bills of Material > Material BOM > Create CS01
    Step 3: Work Center creation
    Logistics > Production > Master Data > Work Center > ( New Screen ) Work Center > Create CR01
    Step 4: Route creation
    Logistics > Production > Master Data > Routings > Routings > Routing > Create CA01
    Step 5: PIR Generation
    Logistics> Production>production planning>demand management>PIR>Create MD61
    Step 6: MRP Run
    Logistics>Materials Management>Material planning>MRP>MRP>Total Planning>Online MD01 
    or
    Logistics > Production > MRP > MRP > Sng-Item, Multi-Level MD02
    Step 7: Evaluation through MRP list and Stock requirement list
    Logistics>Materials Management>Materials Planning>MRP>Evaluations>MRP List>Individual Display MD05
    Logistics>Materials Management>Materials Planning>MRP>Evaluations>Stock Requirements List MD04
    Step 8: Conversion of Planned order to Production order
    Logistics > Production > Production control > Order > Create > With a planned order CO40
    or
    Logistics >Production > Production control >Order > Create >With material CO01(For creating production order Without planned order)
    Step 9: Order management
    Logistics >Production > Production control >Order > Change >With material CO02
    Step10: Confirmations
    Logistics >Production >Production control >Confirmation >Enter >For order CO15
    or
    Logistics >Production >Production control >Confirmation >Enter >For Operation >For time ticket CO11N
    Step11: Goods issue
    1. Logistics >Production >Production Control >Environment >Goods Movement >Goods Issue
    2. Logistics >Materials Management >Inventory Management >Goods Movement >Goods Issue MB1A--261Movement type
    Step12: Goods receipt
    Logistics > Production > Production Order > Environment > Material Movement > Post Mat to Stock
    or
    Logistics > Materials Management > Inventory Management > Goods Movement > Good Receipt > For Order MB31
    Step13: Techo Or Close Order.
    This can be done from Prduction. Order Header menu.   
    Regards,
    R.Brahmankar

  • Bar-coding with Inventory management

    Dear All,
    I am looking for some information, like how to use/develope a interface of hand held device using Barcode with inventory management.
    Any suggestions or information is much appreciated.
    Thanks and Regards
    Bhaskar

    <b>SAP Console</b> –Framework which enables users to execute R/3 transactions from Character based device including RF devices.
    SAP Console consists of following three main components
    1. SAP Console – Software / Interface component
    2. SAP Console Administrator – Defining properties of SAP console
    3. SAP Console I/O Engine – I/O engine through which SAP console and User interact
    Installation of SAP Console is a part of SAP GUI installation
    Telnet server installation on the same machine in which SAP console is installed.
    Standard Telnet server are
    1.Slnet From Seattle Labs
    2.GS_Tnet from Georgia Soft works
    But any Telnet Sever application can be used which supports VT220 emulation.
    Telnet Client is the Interface which is used to execute transactions. Ex. – RF device
    Here are some more useful links
    SAP Library (Online-Help) for SAP AII 4.0
    http://help.sap.com -> Documentation -> mySAP Business Suite -> mySAP Supply Chain Management -> SAP Auto-ID Infrastructure -> SAP Auto-ID Infrastructure 4.0
    Master Guide and Upgrade Master Guide for SAP AII 4.0
    http://service.sap.com/instguides -> SAP Components -> RFID-Enabled Supply Chain Execution -> Using SAP Auto-ID Infrastructure 4.0
    Business Scenario Descriptions and Configuration Guides
    http://service.sap.com/scm -> RFID -> Detailed Information
    Also check the blogs here: Product Traceability & RFID
    Here is a link which will give you information on the basics of RFID
    http://www.webopedia.com/TERM/R/RFID.html

  • Can oracle inventory forecasting be used without order management??

    Can someone please tell me how oracle forecasts are used.
    Like i have configured and tested it but i want to know how it calculates forecasting and whether it can be used without order management module or not
    when i define item comsumption entries and gvie a quantity in current, the ending date and then see bucketed, it shows same forecasted quantity for all periods that i entered in item comsumption entries
    I dont understand this
    And why is forecasting necessary for reorder point planning
    Some please explain
    Thanks
    Emm

    Query: "can oracle inventory forecasting be used without order management?"
    Yes, in that case it can accept manually entered forecasts or forecast generated from Inventory demand history (say Miscellaneous issue, Inter-org Transfer, Issue to WIP) excluding Sales Order issues (as OM is not included).
    For remaining questions you can refer to my earlier post under the following thread. Please refer to the bottom section (thread was started with a different subject)
    serial attribute and org attribute problems with item master
    If your questions are answered you can mark the thread as appropriate.
    Thanks
    - Supro

  • How Inventory is connected to Order Management

    Hi,
    i want to know in Order to cash lifecycle, how inventory is connected to Order management?
    Thanks,
    magesh

    Order Management responsibility is Operating Unit Specific which means any OM responsibility is tied to a specific operating unit. When you define Inventory Organizations, they are assigned to a Operating Units. So thats the link between the OU and the Inv Org. Since OM responsibility is OU specific, you can say thats the link between OM responsibility and Inv Org.
    Also in Order Management, In the OM System Parameters form, you specify a value for Item Validation Organization. So thats how they are connected.
    Hope this helps.
    Thanks,
    Anil
    Blog: http://oracle.anilrpatil.com

  • How to create a case in case management with QM02 link?

    Dear Gurus,
    I have to create a case in case management with link to t-code QM02. Any help would be appreciated.
    Thanks,
    GSM

    Hi..
    Easy transaction to Case Management customizing is SCASE_CUSTOMIZING. There you have an overview of the customizing of case management.
    Also carryon these steps one by one...
    Case Management Basic Settings :
    Define Number Range Intervals for Case
    Define Case Types
    Determine Permitted values for attribute
    Create values for "Category" attribute
    Create values for "Cause" attributes
    Create values for "Priority" attribute
    Create values for "Reason" for escalation attribute
    Assign escalation reasons to an attribute profile
    Create values for "Authorization level" attribute
    System Modifications
    Create status profile
    Create Text profile
    Create Text Ids
    Create Text Profile
    Define Logical system for external objects
    Enhanced System modifications
    Note About Enhanced System Modifications
    Define Processes
    Set up registry
    Create/Change Case Record Model
    Create Profiles
    Create attribute profile
    Create function profile
    Create terminology profile
    Create Activities for authorization check
    Activate application log
    Define processes
    Create/Change Case Record Model
    When u open the Transaction SCASE_CUSTOMIZING , there will be Registry Steps...
    Follow them step by step.
    Regards,
    Eswari.

  • Adding Inventory functionality to a custom Order Management Menu

    We have custom menus set up to limit access for users. We currently have a user that needs the 'Move Order' functionality from the Inventory module. This user does not have access to any inventory functionality. I would like to add the 'Move Order' submenu to a custom order management menu she does have access to. Would this work as anticiipated or would this introduce issues in one or both modules? Thanks.

    Hi,
    There should be no issue if you add the proper submenu. You may also need to add some functions which could be relevant to this submenu for accessing it properly from the custom responsibility.
    I would suggest you try this on test instance first, then move it to your production environment.
    Regards,
    Hussein

Maybe you are looking for

  • .jp2 images in Dreamweaver CS3

    I recently discovered jp2 images. I downloaded a plug in that lets me open them in CS3 Photoshop - though I still can't export images as jp2 images in Photoshop. No problem; I downloaded Pixelmator, which does the job. But when I inserted a jp2 image

  • Mini to mini migration with one display?

    I am upgrading from an ancient (mid 2007!) mini to a brand new mini and wish to move files from the old mini to the new. I only have one display. The strategies on the Apple support page seems to presuppose two displays. I am not sure how to proceed.

  • Changes made in iTunes not syncing with iPod Touch

    Anyone have suggestions on a strange issue.  When I make changes in items on iTunes (ver 11.1.3.8), itunes appears to sync with the ipod, but the changes are not reflected on the ipod.  iPod software is current.  Many thanks for your advice.

  • Muse drop down option in form widget

    Hi, I'm looking for help in the form widget. I've created a form and I need to provide a drop down option for one of the fields. Is there a way I can do it in Muse? Can anyone help me??

  • MacBook Pro mid-2012 sleeps with 30 sec delay

    Hello Community, I've set pmset hypermode to 0 to make macbook faster go to sleep and it worked perfectly. Normally "time-to-stop" was about 3-5 seconds even with running VM (I've used parallels desktop 8). After I upgraded it to version 9 the proble