AIA PIPs for BRM(Order to bill and agent assited billing care)

Hi,
I have installed AIA11g FP and SOA11g on Weblogic 10. Now I would like to install PIPs for oracle billing and revenue management(Order to bill).
I can only find AIA 2.5 release which is not compatible with weblogic 10.
Could any one please let me know where can I get PIPs for SOA 11g and if not any work around to install the 2.5 PIPs on SOA11g.
Thanks in advance.
-Raj
Edited by: user8722115 on 28.12.2010 6:16

Hello there,
My questions are similar to this one, so I post here too.
I would like to know if AIA 2.5 could be installed on a "Oracle SOA Suite 10g
(10.1.3.5.1) for WebLogic Server (10.3.1)" or if the only certified environment
is the one described into the E2103301.pdf doc "AIA 2.5 Installation & Upgrade
Guide" of January 2011, i.e. Oracle SOA suite 10.1.3.4 MLR#8 (+ patches ) with
WebLogic 9.2 MP3.
Also, what about AIA 2.5 with Oracle Fusion Middleware 11g?
Regards,
- KaRiNe -
Motto : "Unsubmissive attitude!

Similar Messages

  • Order-related billing and Dlv-related Billing in single Invoice

    Say in a single order or order type say OR there can be two materials with different item categories say TAN and ZTAN.
    TAN with billing relevance as A( delivery related billing) and ZTAN with billing relevance as B (order related billing )
    If that happens the billing will be split
    In VOV8 we mention for OR the order related billing as F1 and delivery related billing as F2 in the billing tab
    Now in billing TAN will pick F2 as it is delivery related billing
    and
    ZTAN will pick F1 as it is order related billing.
    Now my question:
    In VOV8, i maintained OR order type for Order-realted Billing as F2 and Delivery-related Billing as F2 as well.
    Then will there still be an billing split ?   There will be two F2 invoices TAN will pick one F2 invoice and ZTAN will pick another F2 invoice...?
    And i want to know whether this an right way of doing things??   IF not, what is the right way of doing things?
    Thank you very much.

    Hello,
    Yes that is the right way.
    You can create Single Invoice for Order Related Items & Delivery Related Items.
    E.g. You are Selling Air Conditioner & also installing the same at Customer Location. Now you will Invoice the Customer for Air Conditioner & Installation in the same Billing Correct? Now Air Conditioner is Delivery Related Billing & Installation is Order Related Billing.
    It is in such scenario Order Releted & Delivery Related Items can be Invoiced in same Billing Document.
    While create Invoice enter the Delivery Number & the Sales Order Number, select both the LIne Items & Execute... You will see the system will pick items from both Order & Delivery.
    Hope this helps,
    Thanks,
    Jignesh Mehta

  • Whast is order related billing and delivery related billing?

    Explain about order related billing and delivery related billing
    thanks

    hi,
    just to add,
    In Customizing for the item category at VOV7, you can determine the basis for billing using the indicator <b>Billing relevance</b>.
    This allows you to carry out the following controls:
    A: Relevant for delivery-related billing documents
    Outbound delivery is the basis for billing. The billing document status is only updated in the outbound delivery.
    B: Relevant for order-related billing documents
    The sales document is the basis for billing. The billing status is defined by the required quantity.
    In the standard system the item categories REN (returns) and BVN (cash sales) are set up in this way.
    So depending upon the billing documents configured to the sales document for order and delivery related billing, would be triggered based on the item category setting for billing relevance.
    Pl reward if it helps.
    Thanks
    Sadhu Kishore

  • Contract for Back-Billing and Period End Billing

    Hi ,
    Greetings
    I have done the required configuration for Period-end billing with schema steps for back-billing , However when I try to execute the Billing simulation for period -end billing , I am unable to select contracts and system informs me that contracts are not activated for Back-billing and period -end billing . Please suggest me how to resolve this / How to activate the contract for period-end billing. I have gone through screens and fields in contract but I do not see any relevance for the above . Please suggest , Thanks in advance
    Warm Regards
    Narasimha

    Hi
    The Problem has been resolved , It was nothing to do with contract . I had maintained wrong Rate category in the  installation .

  • Class for Purchase order item components and Production order components

    I'm looking for a some classes.   I'm very new to objects, so I could be searching for them incorrectly.
    The first class I'm looking for is a purchase order class that contains the item components.  I've looked at CL_PO_ITEM_HANDLE_MM and CL_PO_HEADER_HANDLE_MM.  I couldn't find components as a part of either of the classes.
    The second one I'm looking for is not as critical.  It is for the components for a production order.   I have a function module: BAPI_PRODORD_GET_DETAIL that gets the components for the order.  However, to take advantage of objects - I read somewhere - that if possible I should avoid calling a function module.
    Any help that you could give would be greatly appreciated.
    Thank you!
    Michelle

    Hello Michelle
    I do not think there are already classes available on ERP 6.0 for reading production order (yet I might be wrong...). However, regarding purchase order you are already on the right track.
    *& Report  ZUS_SDN_OO_READ_PO
    *& Thread: Class for Purchase order item components and Production order components
    *& <a class="jive_macro jive_macro_thread" href="" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1206523"></a>
    "& NOTE: Coding adapted from BAPI_PO_GETDETAIL1
    REPORT  zus_sdn_oo_read_po.
    TYPE-POOLS: abap, mmpur.
    PARAMETER:
      p_ebeln   TYPE ebeln  DEFAULT '3000000045'.
    DATA: gs_document    TYPE mepo_document,
          go_po          TYPE REF TO cl_po_header_handle_mm,
          gs_header      TYPE mepoheader,
          gd_tcode       TYPE sy-tcode,
          gd_result      TYPE mmpur_bool.
    data: gt_items       type PURCHASE_ORDER_ITEMS,
          gs_itm         type PURCHASE_ORDER_ITEM,
          gs_item        type mepoitem.
    START-OF-SELECTION.
    *  prepare creation of PO instance
      gs_document-doc_type    = 'F'.
      gs_document-process     = mmpur_po_process.
      gs_document-trtyp       = 'A'.  " anz.  => display
      gs_document-doc_key(10) = p_ebeln.
    *  object creation and initialization
    **  l_ebeln = purchaseorder.
      CREATE OBJECT go_po.
      CALL METHOD go_po->po_initialize( im_document = gs_document ).
      CALL METHOD go_po->set_po_number( im_po_number = p_ebeln ).
      CALL METHOD go_po->set_state( cl_po_header_handle_mm=>c_available ).
    *  read purchase order from database
      gd_tcode = 'ME23N'.
      CALL METHOD go_po->po_read
        EXPORTING
          im_tcode     = gd_tcode
          im_trtyp     = gs_document-trtyp
          im_aktyp     = gs_document-trtyp
          im_po_number = p_ebeln
          im_document  = gs_document
        IMPORTING
          ex_result    = gd_result.
    *  there was a problem in reading the PO
      IF ( gd_result EQ mmpur_no ).
    **    l_messages = l_handler->get_list_for_bapi( ).
    **    PERFORM return TABLES l_messages return
    **                          poitem poschedule poaccount.
    **    CALL METHOD l_po->po_close( ).
      ELSE.
        gs_header = go_po->if_purchase_order_mm~get_data( ).
        WRITE: / gs_header-ebeln,
                 gs_header-bukrs,
                 gs_header-bsart,
                 gs_header-lifnr.
      ENDIF.
      gt_items = go_po->if_purchase_order_mm~get_items( ).
      LOOP AT gt_items INTO gs_itm.
        gs_item = gs_itm-item->get_data( ).
        write: / gs_item-ebelp,
                 gs_item-matnr,
                 gs_item-menge.
      ENDLOOP.
    END-OF-SELECTION.
    Regards
      Uwe

  • AIA PIP for CRM On-demans for R12

    Folks,
    One of our client is looking for AIA PIP for CRM On demand interface along with R12.
    We have never done this before, however, our understanding at the high-level is that it would require R12, FP, SOA Suite, Oracle Service Bus. Can someone point us right direction on this?
    1)What are the required components for this installs?
    2)Any documentations or links would be good
    Cheers,
    Thiru

    Can someone from this forum help us?
    Thiru

  • Need the exact difference betwn Intercompany Billing and Inter-project bill

    Hi,
    Can any one tell me the exact difference between the intercompany Billing and inter-project billing?
    The decision to which should be used in which scenraios.
    also what is the Setup Level Difference in both.
    If you have any white paper / document / note in metalink also on this topic then I will be very happy to have that.
    Thanks very much in advance.
    Regards

    Hi
    Inter project billing may be used within the same operating unit.
    Intercompany billing may be used only accross operating units.
    Inter project billing means the provider organization is charging a separate provider project.
    With intercompany billing provider organization is charging the same project as of the receiver organization.
    With inter project billing the provider project may bill the receiver in any billing method as any contract project. With intercompany billing the billing is based on transfer price rules which may be only applied to actual expenditures of the provider organization.
    There is full list of all setup steps in Oracle Projects Implementation user guide.
    Dina

  • AIA PIPs for Flexcube

    Hi all,
    Does AIA contain any existing PIPs for Flexcube? Flexcube is an oracle product for core banking which was previously held by i-flex?
    Thanks

    Hi,
    from what I understand from the BIB initiative, there will be a AIA, with a PIP for Siebel CRM and/or CRM On Demand on one hand, covering Product Extensions and Webservices. And another one for FLEXCUBE UBS, Core Banking and Private Banking covering again Webservices and Product Extensions. To be announced end of this year if my information is correct.
    For the existing ones have a look at:
    http://www.oracle.com/technology/products/applications/aia/aiapipnew.html
    Kind rgds
    Claus Drennig
    systemgruppe - we do it.
    Edited by: Claus Drennig on Oct 26, 2009 6:58 AM

  • IDOC Types for Purchase Orders, Vendor Master and Goods Receipt

    Hello All,
    Can any have idea about the IDOC Types that can be used for triggering when the actions creation/change/deletion on Purchase Orders or Vendor Master or Goods Receipt is performed?
    Please let me know the names of IDOC Type, Process Codes, message type... and all the other required information...
    Thanks in Advance,
    Kumar.

    Hello Ferry,
    Thanks again for the IDOC Types. I have another question. Can we use those IDOC types for creating/changing/deletion of Purchase orders or Vendor Master or Goods Receipt happens? I mean can we configure in such a way that when ever there is a change or deletion of PO or VM or GR happens?
    I have got to know about the IDOC PORDCH01 which can be used for Purchase Order. Can u suggest me which can be used for PO's?
    Regards,
    Phani.
    Message was edited by:
            Sivapuram Phani Kumar

  • Hi all . how to configure periodic billing and mile stone billing ..

    hi gurus
    could someone please tell me the process of defining periodic billing and milestone billing for a customer or group of customers  and how do we show the deficit in the accounts .. how to do the config for the periodic and milestone billing ..
    thankyou very much in advance
    bj

    Hi,
    Billing Plan for Milestone Billing
    Milestone billing means distributing the total amount to be billed over multiple billing
    dates in the billing plan.
    As each milestone is successfully reached, the customer is billed either a percentage of
    the entire project cost or simply a pre-defined amount.
    During sales order processing, the system determines from the item category whether a
    billing plan is required and, if so, which type of plan
    The type of billing plan that is determined at this point is set up in Customizing and
    cannot be changed in the sales document.
    Billing plans for periodic billing and milestone billing plans for project-related milestone
    billing have different overview screens so that you can enter data relevant to your
    processing.
    For example, for milestone billing, you must be able to enter data to identify the
    individual milestones.
    IMG configuration requires :-
    1.  Maintain billing plan types for milestone billing in OVBO.
    2.  Define date description in SM30 - V_TVTB.
    3.  Maintain Date Category for Billing Plan Type IN OVBJ.
    4.  Allocate date category in SM30 - V_TFPLA_TY.
    5.  Maintain date proposal for Billing Plan Type in OVBM.
    6.  Assign Billing Plan Type to Sales Documents Type in OVBP.
    7.  Assign Billing Plan Type to Item Categories in OVBR.
    8.  Define rules for determining the date in OVBS.
    Milestone billing is typically used for billing projects, such as plant engineering and
    construction projects. Such projects often include a series of milestones that mark the
    completion of different stages of the work. In the SAP R/3 System, milestones are defined
    in a network along with planned and actual dates for the completion of work. The milestones
    are also assigned to the billing dates in the billing plan.
    Each milestone-related billing date is blocked for processing until the Project System
    confirms that the milestone is completed.
    Delivery-relevant order items for which a milestone billing plan applies are billed on the
    basis of the requested delivery quantity and not on the total of the confirmed quantities.
    The connection between the project and the sales document item is made in the individual
    schedule lines of the item. Each schedule item can be assigned to a network in a project.
    To display the project-related data for a schedule line, proceed as follows:
    In one of the overview screens of the sales document, select
    1.  Item -> Schedule lines.
    2.  Mark the schedule line and select Procurement details.
    The following figure shows an example of milestone billing where only the Contract have
    been billed :
    Order  Item  Turbine    100,000
    Billing Plan
    Billing date Description    %  Value  Billing Block   Milestone   Billing Status
    01-10-94     Contract      10  10,000      -             x           x 
    01-03-95     Assembly      30  30,000      x             x          
    01-04-95     Maintenance   30  30,000      x             x
    01-05-95     Acceptance    30  30,000      x             x
    01-06-95     Final invoice ..    ..        x
    Network/Activities
    Milestone    Estimate      Actual
    Assembly     01-03-95      01-03-95
    Maintenance  01-04-95     
    Acceptance   01-05-95
    For each billing date in a milestone billing plan, you can specify whether the billing
    date is:
    1.  fixed
    2.  always updated with the actual date of the milestone
    3.  updated with the actual date of the milestone, if the date is earlier than the
        planned billing date for the date
    Regards,
    Pankaj

  • Maximum no of Line items for sales order,delivery document and billing docu

    Dear friends,
    How many line items we can enter for the following,
    1) a Sales order
    2) a Delivery document
    3) a Billing Document
    Thanks in advance.
    Regards,
    Shrikant

    Hello,
    the maximum limit of line items are as follows
    order-9999
    for delivery and invocie , it is restricted to 999 accouitng line items. since the tranfer to accounting can handle only 999 items , the restriction on delivery and invocie
    ex if there are excise postings, for a single line , there might be 5/6 lines genetrated for each line in invocie , therfore as per this the line in invocie get restricted
    you have a sap note , which offers suggestions to partially over come this
    hope this helps
    Thanks
    akasha

  • Report for production order with actual and target cost for each

    Hi
    Is there any report that gives me the list of all production orders in a month with its respective actual and target costs?
    I can use COOIS to get a list of production orders, then double click on the prod order, then click on goto and then to cost analyis.. but can i avoid going through all this and get a report with the details i need?
    thanks in advance

    Thanks a lot for that.
    I'm a little confused with the columns in the report.
    Which columns should I keep for my requirement? -
    Production Order
    Total Target Cost
    Total Actual Cost
    Total Actual Qty
    Total Target Qty
    Thanks

  • Table For Purchase Order Version Number and Version Created Date

    Dear Sir,
    Whenever we make any change in Purchase Order , then a new Version Number  along with Created Date is assigned . In Me23n the Version Number and It's Created date is also displayed ( at PO Header Level) .
    We request you to kindly guide us as which Table is required to be reffered to get the Version Number and Version Created date  for the Purchase Order .
    With Thanks and Rgds
    Sonia

    Hi
    Check in EKKO - Purchase order header
    EKPO - Purchase order item
    CDHDR
    CHPOS
    Regards
    Ram
    Edited by: Parasuram M on Sep 16, 2009 11:59 AM

  • Budget check for PM orders with main and sub-projects

    Hello
    We have a scenario wherein we have created a main project and a sub-project. We have linked the sub-project to main project. We have also assigned budget to the main project. We have created a PM order wherein we are trying to enter the costs by entering the hours of work. We have configured the budget profile and set the tolerance limites and assigned to main project. The requirement here is we need to have have costs check againt the budget that been available in the main project. But the system is checking the budget of the sub-project. Please share if any specific setting is required to check the budget of main project instea sub-project.
    Regards,
    Basav

    I also double checked, you are right there is no forum for PM, I dont think I could suggest much since there isnt a dedicated forum, but you can try posting this query in the ABAP forum probably some abap'r who has worked with PM module should have a look. Also if possible try to connect with one of the moderators out here and ask for assistance in starting something for PM
    Thanks,
    GLM

  • MRP run - misalignment for planned order between Date and Production Date

    Hi All,
    We've just integrated SAP for a new plant.
    The MRP runs based on Routing Lead Time for Make materials instead on Material Master Lead Time, for Capacity Assessment purpose.
    When requirements dates lay in the past, MRP performs forward scheduling starting from current date and properly defines Production End Date according to Routing.
    By checking MD04, for the proposed Planned Order, the basic date is same as Current Date (= same as Requirement Date) instead of being same as Production Date.
    It works as it if checks stil the MAterial MAster LEad time instead of Routing. In fact if I updated the LT of MM the MD04 provides the right Date.
    For future requirements, the MRP works properly, by having basic dates (both start and end date) aligned with Production Dates of Planned Order.
    How can I do the alignment w/o updating In House Production LT?
    Thanks,
    D

    Hi Caetano,
    we have already done this configuration in OPU5 but it doesn't provide any benefit.
    Below how we configured it:
    Scheduling level: Via detailed scheduling
    Adjust dates: adjust basic dates, adjust dep. reqmts to operation date
    For capacity scheduling: Always basic dates, dep. reqmts to operation dates
    Scheduling type: Backwards.
    Regards,
    D.

Maybe you are looking for

  • ERROR when Trying to create support message in satellite system

    Hi I have a wired problem. My user's are opening support message in the solman through the ECC system. But when a user is open a support message with the component FI he get the following message: "Error in Local Message System: Component FI does not

  • Pourquoi mes périphériques sont déconnectés en sortie de veille

    Bonjour, Depuis peu possesseur d'un IMAC, je m'étonne de certains problèmes apparaissant sur MacOS, que je n'avais pas du tout sur windows. J'ai mis un hub USB sur l'un des ports USB du mac, un récepteur pour manette xbox360, mon imprimante. Sur le p

  • Using Lightroom Via External Drive

    My computer's hard-drive is small and would soon get overwhelmed if I stored my master-images there. My plan is to store my master-images on an external drive. Here is my planned set-up/workflow: I work with previews in Lightroom, back up my LR catal

  • [SOLVED] gnome 3 look and feel

    Hello all, I did a fresh install of arch and gnome 3 last night.  I am currently running on fallback mode, prefer that mode to the new interface.  The question I have is, is it possible to easily customize/theme Gnome 3 Fallback in Arch to change som

  • Free Ebook: Introducing Microsoft SQL Server 2008

    Hello, I am about to start studying for the upgrade to SQ Lserver 2008 exam 70-453. i completed my MCITP SQL server 2005 cert last year. I have read a few forums on the topic, and some have suggested reading the free ebook entitled "Introducing Micro