BR100 document for Order Management

Hi
If any one can share the BR100 document for Order Management module?
Thanks in advance,
Rajesh

You can get this document by downloading AIM software.
http://download-east.oracle.com/partners/265498.EXE
The new version is available for download to Oracle Partners only
http://www.oracle.com/partners/develop/implementation/global/aimfoundation.html

Similar Messages

  • Creating business process procedure document for order creation& uploading

    Hi,
    How to create business process procedure document for order creation & upload in the same process node.
    which T-Codes I need to use?
    I have completed following things;
    1) Created Implementation Project
    2) Included order creation business process in the project.
    Regds
    PK

    Hi,
    Chk out these links.
    https://websmp202.sap-ag.de/~sapdownload/011000358700002006042008E/HowTo_Impl_Bus_Proc.pdf
    https://websmp207.sap-ag.de/~sapidb/011000358700006935382005E.sim

  • 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;
    /

  • Questions for order management

    Hi All,
    Please forward me the possible questions on Order management for a person with an experience of 1 year in SAP SD.
    Regards,

    http://www.sap-img.com/sap-sd.htm
    <b>Interview Questions</b>
    Important Tips for Interview for SAP SD
    SAP SD Interview Questions
    Interview Question and Answers on SAP SD
    Some SAP SD Interview Questions 1
    Some SAP SD Interview Questions 2
    <b>Tables/Tcodes in SAP SD</b>
    Important Tables for SAP SD
    SAP SD Transaction codes List
    Task Specifc SD Transaction Codes 1
    Task Specifc SD Transaction Codes 2
    <b>SD Frequently Asked Question</b>
    Sales and Distribution FAQ
    Link Between SAP SD, MM & FI
    Why Do We Assign Division to Sales Organisation
    Regards,
    Rajesh Banka

  • What is the Workflow Business Event Name for Order Management Price List

    Hello Everyone,
    Can anyone please help me to find out the Workflow Business Event name for the Order Management Price List?
    Thanks in advanced,
    Chandan

    Chandan
    Are you looking for business event name that is raised when the price list is created?
    Thanks
    Nagamohan

  • Change Document for Status Management

    Hi,
      I have a process order in which I have deleted a material component. If you click on the material button, then select a material which has been deleted and press the magnifying glass it will take you the details. Then beside the status field there is a Information button. Press it and it will take you to the change status field. Choose one of the status and in the menu click on extras -> change documents -> for status. I need the table fields for the change status which contains the object key, etc. I chekced the report behind it and have tried to pick up the status with regards to the material component. It does not display the material component status but the process order status which have been changed. I need the details for the changed material document and not the process order. ( Tried Table Jest but with no luck ).
    regards
    Aveek

    It is strange that you don't find any information for Change Documents in CDHDR or CDPOS. All change documents are stored in these two tables.
    You might want to check this as well :
    http://www.members.tripod.com/abap4/SAP_Functions.html and search for Change Document in that page
    Regards,
    Subramanian V.

  • Document for Solution manager?

    Hi!
    We want to use Solution Manager 3.2 to support
    the our ECC implementation.
    The SAP pdf document for 3.2 is not very easy
    to follow.
    Could you help point to more documents ?
    Thanks a lot!
    Jennifer.

    Jennifer,
    try to access: http://service.sap.com/rkt-solman
                    http://service.sap.com/solutionmanager
    There are many documents and some SAP Tutor files.
    You can also take a look at help.sap.com
    http://help.sap.com/saphelp_sm32/helpdata/en/index.htm
    Why don't you use Solution Manager 4.0 instead of 3.2?
    Regards,
    Raquel.

  • BR100 Document for Oracle Process Manufacturing (OPM)

    Hi,
    Can anybody please send me sample BR-100 document for Oracle Process manufacturing for Steel / Coal slag processing industry??
    Thanks in advance.
    With Regards,
    Vishal Gujar
    Edited by: 956843 on Dec 14, 2012 12:42 PM

    11g is not release yet for SOA Suite. The latest version is 10.1.3.4.
    here is some docs to get you started
    http://www.oracle.com/technology/products/ias/bpel/htdocs/dev_support.html
    cheers
    James

  • Documents for SOLUTION MANAGER

    Hello Sdn,
             Can u help wid the links for sum topics like risk management, process management and issue management in solution manager.
    Regards,
    Anirban.

    Hello Anirban
    Please check the RKT for solution manager at
    www.service.sap.com/RKT.
    This is available to all SAP customers having OSS ID.
    thanks
    Ravinder

  • Reorganizing  SD/FI  documents  for  credit  management

    Hello ,
    we  are  in  production  already  more  than  year  but  just  now  we  will  transport  the  settings  of  the  credit  managment.
    As  there  is  many  SD  documents  already  do  you  advise  me  to  execute  any  program  to  reorganize  everything?
    What  is  your  approach  in  this  situation?
    Thanks and  best  regards
    L

    Hi,
    I don't think that you need to run F.28 when there is changes to organizational data in existing Credit mgt configuartion then only u need to run this
    General changes that affect SD and FI:
    Settings that change the determination of the credit control area: Assignment from company code, entry in customer master data, entry in sales area data, user exit.
    Currency of credit control area.
    Assignment of customers to credit accounts.
    Risk class in master data of credit account (transaction FD32). Caution: If nothing was changed except for the risk class, you can use RFDKLI20 but it is excessive in this case. If only the risk class was changed it is sufficient to run RVKRED09.
    And your is just fresh configuration why run this F.28 ??????????

  • Order Management Performance Issue

    In the Oracle Applications home page, when I login as OM Super User and for order to cash functionality, when I click on Order, Returns > Quick Sales Orders screen, it takes forever to load. When I reboot my client desktop PC machine, it loads quickly.
    Any ideas how to solve this performance issue for Order Management Quick Sales?
    We are running Oracle 12.1.1 EBS on Linux 64 bit OS platform.

    Hi,
    Please see if these documents are applicable.
    Note: 845765.1 - R12: Performance Navigating To Line Item Tab: OE_AK_SOLD_TO_ORGS_V [ID 845765.1]      
    Note: 399998.1 - OEXOEORD: Performance Entering Item On A Sales Order Line
    Regards,
    Hussein

  • Looks like small data discrepancy in hr_api_transactions.transaction_document for Talent Management

    Hi,
    I have some problem with the XML data in transaction document for Talent Management
    Unable to perform transaction on the record.
    Cause: The record has deleted by another user
    When checked manually from back end, there objectives (IDs) that are there in XML type, aren't there in per_objectives table. The error seems right.
    My task now is to find how many cases(objectives) are there like this. Logic is, look for objectives (that are marked as Update/Delete) in XML and find the ID existing in per_objectives or not. I could make-up the SQL for listing all objectives as a table result as below:
      select
       extractvalue(VALUE(xx_row), '/ObjectiveEORow/Name') AS objective_name,
       extractvalue(VALUE(xx_row), '/ObjectiveEORow/ObjectiveId') oid
      from hr_api_transactions txn,
           TABLE(xmlsequence(extract(xmlparse(document txn.transaction_document wellformed),'/Transaction/TransCache/AM/TXN/EO/ObjectiveEORow'))) xx_row
      where extractvalue(xmlparse(document transaction_document wellformed),'/Transaction/TransCtx/TransactionRefId')  = '26308'
      and txn.transaction_id = 1946469;
    Problem now is, to distinguish only the PS="3" (Delete) and PS="2"(Update) objectives. This table doesn;t show the PS attribute of the "ObjectiveEORow" node in XML.
                   <ObjectiveEORow PS="3">
                      <ObjectiveId>1813772</ObjectiveId>
                   </ObjectiveEORow>
    Please help me in making the SQL show the XML attribute "PS" value for node "ObjectiveEORow".
    regards,
    Raj.

    I could get the solution. Thanks everyone !
      select 'E'||ppf.employee_number employee_number,ppf.full_name,txn.transaction_document,txn.transaction_id, i.*
      from per_all_people_f         ppf,
          per_personal_scorecards  psc,
          hr_api_transactions      txn,
             xmltable('/Transaction/TransCache/AM/TXN/EO/ObjectiveEORow'
                passing xmltype(transaction_document)
                columns
                 PS varchar2(800) path '@PS',
                 oid  number      path 'ObjectiveId'
                ) i
        where txn.transaction_ref_table = 'PER_PERSONAL_SCORECARDS'
        and psc.scorecard_id = txn.transaction_ref_id
        and ppf.person_id = psc.person_id
        and trunc(sysdate) between ppf.effective_start_date and ppf.effective_end_date
        --and psc.plan_id = 146
        and i.ps in ('2','3')
        and ppf.employee_number in ('4018','5072','6389')
        and not exists (
           select 1
           from per_objectives o
           where o.objective_id = i.oid)
    regards,
    Rajkiran.

  • BAM - Siebel Order Management demo

    Hi,
    I am at a large Telco customer and I am urgently looking for a demo of ‘BAM with Siebel’ for Order Management. Where can I find such a demo? It could a recorded video demo or a VM instance that I could run would be fantastic. Please point me in the right direction.
    I have visited this URL:
    http://www.oracle.com/technology/products/integration/bam/collateral/samples11g.html
    However I am unable to download any file it only downloads ‘index’htm’ am I missing a trick?
    Many Thanks,
    Nitin

    Hi Payal,
    Thank you for your response.
    I was also looking for options for BAN -> Siebel integration, i.e what are the options to allow Siebel users to view alerts and notifications sent by BAM do we a) Embed the BAM view in Siebel b) allow BAM to create Activities within Siebel for Siebel end users to pick up and action? Any viewlet around this would also be tremendously beneficial, what would your recommendation be around the approach for this?
    Thanks,
    Nitin

  • Documentation on Interface tables for lease management

    Hi i found out the following interface tables for lease management
    but couldn't find any documentation or information of the mandatory columns to be populated in these tables
    is there any documentation provided in R12 for the following tables?
    PN_LEASE_OPTIONS_ITF
    PN_RENT_ROLL_LEASE_EXP_ITF
    PN_SPACE_ASSIGN_LEASE_ITF
    PN_SPACE_UTIL_LEASE_ITF
    thanks
    Arshad

    hi
    thanks for quick reply...
    etrm is more generic..
    i would like to know the validations that are performed on the columns
    the concurrent programs which does the import of data from these tables to base tables
    something which oracle provides for interface tables in their user guides or implementation guide. (Example for GL_INTERFACE the column level validations are given in GL user guide).
    i couldnt find such document for lease management.
    thanks
    Arshad
    Edited by: Arshad on Dec 2, 2008 7:24 PM

  • Need best practice configuration document for ISU CCS

    I am working on ISU CCS project. i need  best practice cofiguration document for
    Contract management
    Collections management
    Invoicing
    Work Management as it relates to ERP Billing.
    Thanks
    Priya
    priyapandey.sapcrmatgmailcom

    Which version are you setting up and what are the requirements? IF you are discussing the use of NIC bonding for high availability beginning in 11.2.0.2 there is a concept of "High Availability IP" of HAIP as discussed in the pre-installation chapters,
    http://docs.oracle.com/cd/E11882_01/install.112/e22489/prelinux.htm, section 2.7.1 Network Hardware Requirements.
    In essence, using HAIP eliminates the need to use NIC bonding to provide for redundancy.

Maybe you are looking for