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

Similar Messages

  • 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

  • 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

  • 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

  • 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

  • OPM/Oracle Order Management

    What are the pro's and con's of switching from OPM Order Fulfillment to Oracle Order Management?
    We use Order Fulfillment now and are concern we will lose the profile functionality when and if we upgrade.

    OPM Order Fulfillment is a simple to use Order Entry and Shipping application that meets the needs of many process manufacturers.
    Oracle Order Management is more flexible and configurable to suit a number of different industries. Oracle Process Manufacturing is integrated
    to Order Management and has functionality to support entry of order quantities in two units of measure, as well as designation
    of a preferred quality grade and automatic allocation of process inventory.
    In place of the Order Profile (or order template) functionality available in Order Fulfillment, we recommend using the Copy Order
    functionality in Order Management. You can establish a special order type in Order Management (you can call it Template or
    Profile) and assign a workflow to the order type that makes it "non-transactable" (the order stays in an "entered" state so that
    it can't be booked or shipped). You can query on these special order types and copy them to create standard orders. When you
    copy an order in Order Management, you can change the order type, so the Template order can be copied and the new order
    type can be "Standard".

  • 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

  • Linkage of Sales Order with OPM Batch automatically through MRP run

    Hi Friends,
    Can anyone please suggest me of how the Linkage of Sales Order with OPM Batch can be created automatically after running OPM MRP.
    Thanks in advance.
    Thanks & Regards,
    Bharathram N.

    Dear Friend,
    Thanks for your update.
    I had the set ups already which you have specified. But I dont see in the action messages screen any sales order number for each action.
    My requirement is following..
    1. I will enter SO for an item called A.
    2. Run MRP.
    3. From Action Message Summary, I will release production batch.
    4. Now the batch been created should have the sales order number from which it came originally.
    Hence to achieve above, I need SO with MRP Link action message(backend or front end)..
    Hope the above scenario is clear to you..Plz let me know your thoughts..
    Thanks & Regards,
    Bharathram N.

  • OPM Regulatory Management with Oracle Inventory

    Hello
    We already have Oracle Inventory but would like to use the MSDS functionality in OPM Regulatory Management for hazardous materials without implementing OPM Inventory.
    Just wondering if this can be done as when we try to open any form in OPM Regulatory Management, we are being told that the form can't be opened.
    Process Manufacturing is licensed.
    Thanks,
    Sanjib

    Hi,
    OPM Regulatory Mgmt comes along with OPM Suite. License is required.
    You cannot use OPM Regulatory mgmt with Only Oracle Inventory. OPM inventory should be installed.
    Best Regards,
    Sri

  • What the diff between Order Acquisition  with Order management?

    Hi,
    What's the diff between them in SAP, thanks!

    Hi,
    I think Order Acquisition use in module Material management. And Order management use in Sales and Distribution.
    Regards,

  • Order Management Module - Sales Order Lines stuck with the Workflow

    Dear All,
    We are using Orcale E-Business Suite for our organization. Here, We are working Order Management Module. When Sales Executives the creating Sales Order, booked, Released and Shipped. After the Sales Order Line is partially closed,
    but is not closed all the lines. We are facing the problem for receivable transaction. We have two types of scenario the following as
    Scenario 1
    We have Sales Order 4 lines first two lines are closed properly after the third line is AWAITING_FULFILLMENT then the fourth line is Closed. So, the thrid line is not in the RA Interface. Please tell me the solution, how we can closed the sales order third line.
    Scenario 2
    We have Sales Order 3 lines first two lines are closed properly after the third line is FULLFILLED then the fourth line is Closed. So, the thrid line is not in the RA Interface. Please tell me the solution, how we can closed the sales order third line.
    Regards
    Abdul

    Hi,
    Please go through the following documents and see if it helps.
    Note: 238480.1 - In Sales Orders Form, Cannot Remove Fulfilment Set From Line in AWAITING_FULFILLMENT Status
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=238480.1
    Note: 417292.1 - Sales Order Lines On The ATO Model Are Stuck In Awaiting Fulfillment Status
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=417292.1
    Note: 297192.1 - Order Line Workflow Is Not Progressing Beyond Booked Status
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=297192.1
    I would also suggest you search Metalink for "AWAITING_FULFILLMENT" and "FULLFILLED", this should return many hits which may be applicable to the issue you have.
    Regards,
    Hussein

  • How many domains can Prime Collaboration Advanced manage with the BE6000?

    The BE6000 Administration guide states that "Most BE6K deployments have a single domain as part of a Standard Prime installation. Multiple domains are available with Prime Collaboration Advanced (available for purchase) that can be used for complex Business Edition 6000 deployments."
    How many domains can Prime Collaboration Advanced manage with the BE6000 solution? How do we order and deploy Prime Collaboration Advanced with the BE6000 solution?

    http://docwiki.cisco.com/wiki/System_Capacity_for_Cisco_Prime_Collaboration_10.0

  • What is order management?

    what is  order management?  
    is  it a general term used for OTC cycle in SD  or  something else??
    <REMOVED>

    Hi
    Below are details of Sales Order Management
    Internet Sales
    SAP Internet Sales (R/3 Edition) provides an e-commerce platform that enables SAP users to rapidly turn the Internet into a profitable sales and interaction channel. Internet Sales (R/3 Edition) offers everything customers need to sell products over the Internet: catalog browsing, product search, shopping basket, check-out, saving and retrieving shopping baskets, order status, and order history.
    Field Sales
    Mobile Sales for Handheld comprises a broad range of business applications to be processed offline on a mobile device, e.g., review customer information, take sales order via barcode scanning, create and/or modify sales orders, search for sales orders, and view a list of all materials.
    Quotation and Order Management
    Allows you to create and process orders, including pricing and scheduling order for fulfillment. SAP ERP supports many process variants, for example:
    •     Cash sales
    &#61607;     Ship-to-order
    &#61607;     Make-to-order
    &#61607;     Engineer-to-order
    &#61607;     Empties
    &#61607;     Batch processing
    &#61607;     Serial number processing
    &#61607;     Payment card processing
    &#61607;     Third-party delivery processing
    &#61607;     Complaint handling
    &#61607;     Returns
    Inquiries
    Allows you to create and process customer requests.
    Quotations
    Allows you to create and process quotations.
    Follow-Up Order
    Creates an order as follow-up document to the quotation. Copies the data from the quotation into the order and creates two transaction documents, quotation and order.
    Automatic Partner Determination
    Allows you to automatically determine the partners involved in the sales transaction, for example:
    &#61607;     Ship-to-party
    &#61607;     Bill-to-party
    &#61607;     Payer
    &#61607;     Contact person
    &#61607;     Employee responsible
    Automatic Text Handling
    Allows you to determine and maintain texts on header and item level.
    Pricing & Tax
    Allows you to automatically determine the different kinds of conditions, such as product-, customer- and contract- specific prices, free goods, surcharges, discharges, freights, taxes, etc.
    Flexible Price Calculation:
    Highly flexible engine to determine prices based on whatever criteria one might think of. (This needs to be part of the database.)
    Price List:
    Customer-specific price lists can be generated.
    Tax calculation within SAP ERP allows you to calculate transaction taxes, such as VAT in Europe. For complex requirements regarding tax determination in the United States, third-party software can be integrated.
    Payment Card Processing
    Works with payment cards, such as credit cards. Copies payment card information from customer master data in orders and other sales documents.
    Credit Management and Credit Check
    Limits financial risks by carrying out credit checks that can influence transaction processing and setting up a workflow connection to notify responsible.
    Credit check evaluates a transaction based on the credit standing of the payer in financial accounting.
    Product Listing & Exclusion
    Displays a list of products a specific customer is allowed or not allowed to buy.
    Product Substitution
    Enables the automatic substitution of products in sales documents during sales order processing according to flexible, predefined rules.
    Free Goods
    Offers free items on the sale of certain other items or takes money off a particular sale to a customer.
    Minimum Order Quantity Check
    Checks the product level automatically to determine whether a minimum order quantity has been reached.
    Document Flow
    Provides interlinkages of preceding and subsequent documents for a selected transaction (for example, production orders, deliveries, invoices, and complaints).
    Regards
    Ramesh

Maybe you are looking for