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

Similar Messages

  • 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

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

  • 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

  • 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

  • Order Management Functionality

    Hi All,
    Is there an Order Management feature in Ondemad or proposed in future releases.
    Also is it possible to have Assets as a related information section in Service Request screen
    Sandy

    Order Management is part of their road map but no official dates has been committed, I think it will be part of EBS System and will be using AIA to integrate.
    It is not directly possible to have the assets under service request. If you need for just display purpose, you can create a custom report and expose it in the detail page which will give you the list of Assets associated with the Account (associated with that Service Request)

  • Thesis Topic in SAP Order Management

    Dear All,
    I am currently working as a Intern in SAP Order Management.I am looking for a challenging topic to continue as my master thesis topic.Please guide me
    Regards,
    Yogesh

    Dear Mr Wagner,
    Thanks for your reply.I will do prelimnary research on current topic .
    If i face any doubts /clarifications in understanding the process could you please guide me !
    Regards,
    Yogesh

  • SAP SD Order Management Training

    Dear All,
              This is Hitesh Parsawala. I am a MBA (Mktg) working as a SAP Business One Project Manager.
               Now i have decided to go for SAP SD Order Management Training from Genovate. So i just wanted to know how is the Market for SAP SD Order Management Professional.
               Also Is my decision of going for SAP SD Order Management Training from Genovate Viable??? Or should I go for Oracle EBS - SCM (Supply Chain Management) Training from Oracle Education Center.
              Please do reply as this is Important.
      Regards
    Hitesh Parsawala

    Moved from sales forum

  • Customer orders are entered in the SAP Order Management System?

    How do I ensure that Customer orders that do not contain errors are automatically entered in  the SAP Order Management System?
    What tcodes do i need to run? Thanks!!!

    BY SAP order management system, are you referring to an external system or SAP CRM?

  • Interface shipments from Order Management as events to Oracle Projects

    Hi to All,
    This is V.Kishore Kumar.
    Hi to All,
    Is there any way to "interface shipments from Order Management as events to Projects".
    Waiting ur solution.
    Thanks & Regards,
    V.Kishore Kumar

    Hi,
    EBS document suite has this document. If you do not have, you can download it from OTN. Document name is "Oracle® Projects APIs, Client Extensions, and Open Interfaces", Part No. B25624-02.
    Regards
    RK

  • Creation of PO's from Oracle Order Management

    Required Business Scenario
    Customer orders are received via the internet and imported into Oracle Order Management via an open interface table. The customer orders are processed by Oracle OM and converted to Purchase Orders which are then sent to suppliers (as no stock is held at our site). Goods are then shipped directly to the customer by the supplier. We take a commission for the service offered.
    Problem
    As we take a commission for the service described above, the value of the Purchase Order will be different to the value of the original order received via Order Management, however Oracle Purchasing does not allow you to place a Purchase Order on a percentage basis terms. (we will take a small commission as a percentage of the value of the original order meaning the value of the Purchase Order will be slightly less than the value of the original order). The following scenario attempts to explain the situation:
    Order received via Oracle Order Management
    5 units @ $20 = $100
    Purchase Order created from above order (required scenario)
    5 units @ $19.70 = $ 98.5
    Our commission @ 1.5% = $ 1.5
    Has anyone encountered this scenario before? If so I would appreciate assistance in how to resolve this issue. How can we create a Purchase Order from the order received via Order Management which will have a different value and allows us to take a percentage as commission?
    Thanks
    null

    I came across your email on Oracle AppsNet. My company has the
    exact same requirement. Did you ever receive any replys related
    to this issue? If so would you be so kind as to forward them to
    me? Thanks.
    Required Business Scenario>Customer orders are received via the internet and imported into Oracle Order Management via an open
    interface table. The customer orders are processed by Oracle OM
    and converted to Purchase Orders which are then sent to
    suppliers (as no stock is held at our site). Goods are then
    shipped directly to the customer by the supplier. We take a
    commission for the service offered. >Problem >As we take a
    commission for the service described above, the value of the
    Purchase Order will be different to the value of the original
    order received via Order Management, however Oracle Purchasing
    does not allow you to place a Purchase Order on a percentage
    basis terms. (we will take a small commission as a percentage of
    the value of the original order meaning the value of the
    Purchase Order will be slightly less than the value of the
    original order). The following scenario attempts to explain the
    situation:>Order received via Oracle Order Management>5 units @
    $20 = $100>Purchase Order created from above order (required
    scenario)>5 units @ $19.70 = $ 98.5>Our commission @ 1.5% = $
    1.5>Has anyone encountered this scenario before? If so I would
    appreciate assistance in how to resolve this issue. How can we
    create a Purchase Order from the order received via Order
    Management which will have a different value and allows us to
    take a percentage as commission?>Thanks >null

  • Creation of PO's from Order Management

    Required Business Scenario
    Customer orders are received via the internet and imported into Oracle Order Management via an open interface table. The customer orders are processed by Oracle OM and converted to Purchase Orders which are then sent to suppliers (as no stock is held at our site). Goods are then shipped directly to the customer by the supplier. We take a commission for the service offered.
    Problem
    As we take a commission for the service described above, the value of the Purchase Order will be different to the value of the original order received via Order Management, however Oracle Purchasing does not allow you to place a Purchase Order on a percentage basis terms. (we will take a small commission as a percentage of the value of the original order meaning the value of the Purchase Order will be slightly less than the value of the original order). The following scenario attempts to explain the situation:
    Order received via Oracle Order Management
    5 units @ $20 = $100
    Purchase Order created from above order (required scenario)
    5 units @ $19.70 = $ 98.5
    Our commission @ 1.5% = $ 1.5
    Has anyone encountered this scenario before? If so I would appreciate assistance in how to resolve this issue. How can we create a Purchase Order from the order received via Order Management which will have a different value and allows us to take a percentage as commission?
    Thanks
    null

    I came across your email on Oracle AppsNet. My company has the
    exact same requirement. Did you ever receive any replys related
    to this issue? If so would you be so kind as to forward them to
    me? Thanks.
    Required Business Scenario>Customer orders are received via the internet and imported into Oracle Order Management via an open
    interface table. The customer orders are processed by Oracle OM
    and converted to Purchase Orders which are then sent to
    suppliers (as no stock is held at our site). Goods are then
    shipped directly to the customer by the supplier. We take a
    commission for the service offered. >Problem >As we take a
    commission for the service described above, the value of the
    Purchase Order will be different to the value of the original
    order received via Order Management, however Oracle Purchasing
    does not allow you to place a Purchase Order on a percentage
    basis terms. (we will take a small commission as a percentage of
    the value of the original order meaning the value of the
    Purchase Order will be slightly less than the value of the
    original order). The following scenario attempts to explain the
    situation:>Order received via Oracle Order Management>5 units @
    $20 = $100>Purchase Order created from above order (required
    scenario)>5 units @ $19.70 = $ 98.5>Our commission @ 1.5% = $
    1.5>Has anyone encountered this scenario before? If so I would
    appreciate assistance in how to resolve this issue. How can we
    create a Purchase Order from the order received via Order
    Management which will have a different value and allows us to
    take a percentage as commission?>Thanks >null

  • 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

  • Mail account no longer shows

    I have 7 e-mail accounts thru ATT/Yahoo. There all work fine with one minor exception for one mail account. The new mail (number of e-mails) does not show up in the left hand side Mailboxes in box (bullet) There are listed when I click into the mail

  • Not able to upload RTF files

    There are 2 database instances: Development and Production. Last month, there was a database refresh in development(cloned with the production), after which we are not able to upload the files in dev instance, but the prod instance is working fine as

  • I can not open my iphone camera

    I can not open my iphone camera.When I open the camera icon it just shutter ad automatic restart.

  • Anybody tells nothing. When we can get the iPhone?

    So now, we are angry to the Apple Customer Services. Since many days we want to buy 3 iPhones. We called to the stores, 'you have to wait....minimum 8 people are before'.....we made it 10 times, everytime 10 min. The free lines can't tell us anything

  • My track pad on m macbook is going out how much is it to get that fixed?

    Has anyone had to have their track pad fixed on their Macbook (2008)? If so what does something like that cost? Thanks