Check Payment Processing Across Multiple Operating Units

Hi There
We are currently implementing Oracle R12 at the company I work for. Our solution implementer has informed us that you cannot process one check (cheque) payment across multiple operating units and that this is an outstanding enhancement with Oracle. Therefore (if we accept) this we will have to process a seperate check per operating unit which will increase our payment processing significantly.
Can anyone out there:
A. Confirm this is indeed an issue
B. Are you aware if Oracle are doing anything about it and
C. Is there any workaround that we could consider to lessen the impact.
Thanks

Hi,
Scenario 1
If you are going to make Single check payment to the same supplier having different sites under various operating units, oracle has provided a workaround, i.e. to make a manual payment in payables module, however it would not generate any payment instruction.
Scenario 2
If you are going to make single check payment to various suppliers in different/same operating units, it is not allowed by Oracle, as there is no logic behind it. You cannot have 1 check generated for different suppliers ...
I am assuming you are referring to Scenario 1, in which case, i would say there is an WORKAROUND suggested by Oracle to make use of MANUAL PAYMENT method, which you could discuss with your Solution Implementer.
Regards,
Ivruksha

Similar Messages

  • Use ar_receipt_api_pub create_cash API across multiple oper units

    Hi,
    I have a requirement to create AR receipts across multiple operating units and I am using the AR_RECEIPT_API_PUB's create_cash() to do that. The APIs work fine and I can create receipt in oper unit A. But when I changed to a different operating unit B and call the API, it terminated with NO_DATA_FOUND error.
    If I run my same code with operating unit B and then oper unit A, it created receipts in oper unit B but returned NO_DATA_FOUND in oper unit A. That way I confirmed there is no set-up issues with both oper units.
    I tried following 4 different ways to switch to different operating unit but all resulted in NO_DATA_FOUND:
    1) mo_global.init('AR');
    2) mo_global.init('AR'); fnd_client_info.set_org_context(&org_id>);
    3) mo_global.init('AR'); mo_global.set_policy_context('M', &org_id) ;
    4) mo_global.init('AR'); mo_global.set_policy_context('S', &org_id) ; (My EBS set-up has multi oper units, but I tried 'S' flag because of lack of ideas)
    Please help. Thanks!
    Mike.

    @MikeLi,
    Did you find any solution for this problem? We are facing this problem on R12 while creating AR receipts across multiple operating units. We will be glad if you share the solution. We have tried all possible ways; but did not help. When we look at the mo_glob_org_access_tmp ; we have access to all organizations; but the api returns 'no data found'
    Thanks.

  • Accessing a Item master from across multiple operating units

    HI,
    We have created two operating units and two inventory org's.
    we have created an item in teh item master and assigned to the inventory org.
    now we have a scenario.
    one inventory org belongs to one OU and another inventory belongs to another OU.
    i have created an item in item master and want to share the same item to different org's of different OU's..
    can anybody explain.
    Thanks in advance
    Thanks,
    Vinod

    Vinod wrote:
    HI,
    We have created two operating units and two inventory org's.
    we have created an item in teh item master and assigned to the inventory org.
    now we have a scenario.
    one inventory org belongs to one OU and another inventory belongs to another OU.
    i have created an item in item master and want to share the same item to different org's of different OU's..
    can anybody explain.
    Thanks in advance
    Thanks,
    VinodVinod,
    you need to have organization access for all the org's which you need to assign item..
    For example i have vision china..which is both inventory org and OU..and M1 which is inventory org..which is under ision operations..i have given inventory organization access to both this org to inventory super user responisibility..
    Now when i create a item in v1 item master..i should able to see M1 and vision china in organization assignments.
    so that i can assign the item to vision china as well
    HTH
    Mahendra

  • Match bank statement lines across mutliple operating units

    Hello,
    We need the ability to reconcile bank statement lines from a single bank account with transactions across multiple operating units. Any ideas how I can do this in Oracle R12?
    Thanks for your help.

    Horrible code. If defies logic and basic Oracle concepts...
    Why even use a package when monolithic cr@p like this is written?
    What is wrong with this code you may ask? Everything.
    What is right with this code? Nothing.
    How to fix this code? Cannot be fixed. It needs to be trashed. Every single infected byte. And new code needs to be designed and written that addresses the requirements logically, adheres to Oracle concepts, and applies fundamental software engineering principles.

  • Single concurrent program for multiple operating units

    HI
    I am working on XML/BI publisher to generate AR invoice reports.
    We have single rdf report using which rtf templates are generated.
    There are 10 operating units (10 ORG_ID's) and 10 rtf templates, one for each operating unit. There are 4 different responsibilities for each ORG_ID
    Eg: ORG_ID's = 11, 12, 13, 14..........etc
    Eg: Responsibility = xx, yy, zz...........etc
    I want to register a single concurrent program. When a user submits a request from "XX" responsibility, then the template associated with that org_id should be generated. Whichever responsibility the user is accessing from, that particular template must be shown as output.
    How can i register one concurrent program for multiple operating units.
    Thanks!
    Edited by: 994628 on Mar 18, 2013 4:39 PM
    Edited by: 994628 on Mar 18, 2013 4:42 PM

    >
    There are 10 operating units (10 ORG_ID's) and 10 rtf templates, one for each operating unit. There are 4 different responsibilities for each ORG_ID
    Eg: ORG_ID's = 11, 12, 13, 14..........etc
    Eg: Responsibility = xx, yy, zz...........etc
    I want to register a single concurrent program. When a user submits a request from "XX" responsibility, then the template associated with that org_id should be generated. Whichever responsibility the user is accessing from, that particular template must be shown as output.
    >
    interesting case for 10 OE set 10 template
    what is purpose? for each OE different requirements for layout?
    BTW
    if each Responsibility associated with one org_id then
    - you can get current org_id when you run concurrent program
    - create main template (will be #11) with condition like
    <?choose:?>
    <?when: ORG_ID=11?>
    <?import:xdo://FND.XX11_SUB.en.00/?>
    <?call:TEMPLATE11?>
    <?end when?>
    <?when: ORG_ID=12?>
    <?import:xdo://FND.XX12_SUB.en.00/?>
    <?call:TEMPLATE12?>
    <?end when?>
    <?otherwise:?>
    <?import:xdo://FND.XX21_SUB.en.00/?>
    <?call:TEMPLATE21?>
    <?end otherwise?>
    <?end choose?>so based on org_id will be import of needed subtemplate
    - re-register your "10 rtf templates" as subtemplates
    another way is substitution of template for concurrent then it running
    in before_report trigger set needed template
    l_conc_request_id := fnd_global.conc_request_id;
        if ORG_ID = 11 then
          UPDATE fnd_conc_pp_actions t
             SET t.argument2 = 'XX11'
           where t.concurrent_request_id = l_conc_request_id
             and t.action_type = 6;
      if ORG_ID = 21 then
          UPDATE fnd_conc_pp_actions t
             SET t.argument2 = 'XX21'
           where t.concurrent_request_id = l_conc_request_id
             and t.action_type = 6;

  • 1099 Reporting for Multiple Operating Units using same Tax Id Number

    Everyone!!!!
    We have multiple operating units using the same tax id number. We need to use the 1099 standard reports. I see that in the 1099 standard programs, one of the necessary parameters is Tax Entity Id which is again at operating unit level.
    As 1099 reports need to be sent at the Tax Id Number not at operating unit level, is there any way to use the starndard program and do this, or will we have to customize it?
    We are on 11.5.10.2 if it matters. Let me know if you need more information.

    Ok, I Found it. We have to customize it. Taxes are reported at Operating Unit level only.

  • Problem initiating process with multiple operations using HTTP/SOAP

    Hi,
    I have defined a process which has multiple operations. My process starts with a pick activity containing onMessage branches for each possible operation. When I initiate this service using the BPEL console, I choose one of the operations and everything works fine.
    However, when I initiate this process using an HTTP/SOAP web service call using JMeter, always the first branch is executed regardless of the message I send.
    My operations are document/literal. Due to some restrictions, I cannot define a SOAPAction for the operations. Could this be the problem? Is there a workaround for this? If this is not the problem, what could be the cause?
    I'm using version 10.1.2.1.
    Any help will be appreciated. Thanks in advance..

    hi i am using 10.1.3 and still i can not initiate a process with multiple operations. Is there anybody to tell if pick activity works fine and if there are some points to consider?
    If there is a problem is there any solution to make a process with multiple operations?

  • How to set multiple operating units in before report trigger

    hi all
    can any one help me out in getting clear in how to set multiple operating units in before report trigger in oracle report.
    as we set single operating unit (mo_global.set_policy.context('S',81); as 81 is my operating unit).then who to set for multiple operating unit at run time.

    Sounds like eBusiness Suite, right? Better ask this in the appropriate forum.

  • Drop Ship across OUs - Operating Unit not available during Requisition Import

    Hi,
    I am trying to execute Drop Shipment across OUs on Vision Instance R12.1.1.
    1)      Responsibility - Order Management Super User, Vision Operations (USA)
             Create SO in Vision Operations. In Others tab selected Warehouse as D1 ( Singapore Distribution Centre ). Line Item Source Type is External.
             Order Booked. Order line status is 'Awaiting Receipt'.
    2)      Responsibility - Purchasing Super User.
             Request - Requisition Import.
             Issue - The Operating Unit LOV for Requisition Import is listing only 'Vision Operation'. The OU 'Singapore Distribution Centre' is not listed.
    The responsibility Purchasing Super User has access to Org D1.
    Please refer to attached screenshots for details.
    Kindly help me with this process.

    user12214874 wrote:
    We are on Oracle EBS 11.5.10 and the requirement is that the US OU wants to drop ship a SO from our supplier in Japan(not part of Oracle installation) directly to our OU in Canada. (part of same Oracle installation). As per as per Oracle Order management users guide 11i; pg 1-7 drop ship across OU's and SOB's is possible. (Introduction chapter.) However when I read metalink note 225434.1, this is not possible. This looks to be a drawback with Oracle EBS since it is a very common requirement with most business going global these days. However, I may be wrong and the flow might very well be supported. If anybody has an idea, and provide some insights if this is supported in oracle or if there is a workaround available it would be appreciated.
    *****Update******** I could create a Drop Ship So with Receiving Warehouse in another operating unit; I could also create the Internal Requistion and PO in the shipping OU. Also, the Payables Invoices to Selling OU was created. AR invoice against the Drop SO billed to Shipping OU was created. However I am still stuck as to the generation of Intercompany AR invoice. Also, I am wondering why is there a need for Intercompany AR invoice when the AR invoice is issued against the Drop SO?
    Edited by: user12214874 on Feb 16, 2012 12:34 PMMy question is why would US OU want to drop ship to Canada OU...why can't canada OU directly raise a PO to a supplier in Japan??

  • How can i incorpurate multiple operating unit feature in rdf(Custome AP Report)

    Hi, Team,
    i have a requirment is..will select 1 Operating unit need to get data for only that OU, if will provide Null value need to get data for ALL OU's.
    i am trying below script using in Report level 'AfterPForm'
    if :P_ORG_ID IS NULL THEN MO_GLOBAL.SET_POLICY_CONTEXT('M',null);
      ELSE MO_GLOBAL.SET_POLICY_CONTEXT('S',:P_ORG_ID);
      END IF;
    getting below error.
    Forcing NLS_NUMERIC_CHARACTERS to: '.,' for XDO processing APPLLCSP Environment Variable set to : Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are : AMERICAN_AMERICA.AL32UTF8 '.,' Enter Password: MSG-00000: And so it begins ... MSG-00001: After SRWINIT REP-1419: 'beforereport': PL/SQL program aborted. REP-0069: Internal error REP-57054: In-process job terminated:Terminated with error: REP-1419: MSG-00000: And so it begins ... MSG-00001: After SRWINIT REP-1419: 'beforereport': PL/SQL program aborted.
    but this report running fine for Single OU, that is the parameter value is provided.
    appriciate your assistence on this. need to clos this ASAP, please do the needfull.
    Thanks,
    Venkat.

    Hi,
    Just simple ...
    You can take the Operating Unit (OU as you said) in the where condition of you query...
    e.g.,
    where
    (p_parm_ou = :ou or :ou is null )

  • How to integrate a sales process across multiple ERP systems with SOA?

    Over time we have merged with multiple companies that used to run on their own ERP system.  In the past we concerted them to our own R/3 instance.  Having recently upgraded from R/3 4.6 to ERP 6.0, we want to transition to a SOA architecture for integrating stand-alone ERP systems.  We are looking for best practices on how to start this transition; i.e., how to use SOA to implement an Order-to-Cash process across separate ERP systems. 
    Here is our scenario:
    The same products are sold through ERP system A and ERP system B.  However, each system represents a different company code with its separate manufacturing plants.  Both systems evolved independently and presently have separate master data.  How do you enable a sales process that dynamically (depending on inventory availability) gets the product either from a plant on system A or B? How do you implement a triangular sale that covers both ERP systems?
    I am looking forward to learn from your experiences and your advice.

    Hi Bernard,
    Like most SOA scenarios, first your scenario requires a detailed fit gap analysis to see which of your existing ERP systems best meet which business process that you want to accomplish at an organisation level. It is only after that, that you can decide which capabilities of SAP SOA can you leverage and how.
    Broadly speaking, SAP's SOA paradigm provides several approaches which you could use depending on your scenarios. For example, if you only need a brokerage between two or more systems (updating or retrieval of data) either synchronously or asynchronously, your best bet is PI (preferably 7.1 because of its ESR and Services Registry). On the other hand, if you require a new application that acts as a controller of flow or processing across various systems, you could use the Composition Environment which provides you with a toolset to build composite applications across various systems (for instance, by registering services from multiple systems on the Services Registry, and then consuming it from say a WebDynpro application).
    The following document might provide you with more insight on this:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/809db91f-9bdf-2910-93be-ca4f0853f929
    Hope this helps!
    Regards,
    Romit

  • Share firefox profile across multiple operating systems.

    I've recently installed windows 8 on a VHD (my main OS is Windows 7) and I was wondering if it was possible to share the same firefox profile on both operating systems. I have the profile manager from [http://ftp://ftp.mozilla.org/pub/mozilla.org/utilities/profilemanager/ ftp://ftp.mozilla.org/pub/mozilla.org/utilities/profilemanager/], but when I tried to make a new profile at the location of my main profile, it instead made a subdirectory under my main profile. Is there anything I can do to share the profile between the two? I could always use sync, but I would like to share my addons, if possible.

    * Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/Profile_backup

  • Access Project in Multiple operating units.

    Hi All,
    I am Facing an Issue in Projects and Templates.
    Actually my scenario is :
    I need to create a Time Card (JSP PAGE) basing on Project Number. This Project Number should be used in every organization i.e in which it has created and also other than the operating in which it was created.
    Best Regards,
    Suresh.

    Hi,
    You should do Provider and Receiver Controls.
    Regards,
    Bvt

  • How to secure data by operating unit in oracle payments

    Hello
    We are in the process of setting up to make payments from one single bank account across all operating units to avoid maintenance and number of templates.
    As part of our process we submit the payment process request across all operating units and once the status changes to Invoices pending review, we will inform the business heads to check the invoices and we have given them the access to remove the invocies from the payment run, business leads check the invoices and remove some of them based on the cash flow. At the moment the business leads are able to see the payment information for all the operating units however we want them to see only the information specific to that operating unit. I tried MO and HR security profile options but no luck hence requesting you to share your inputs on the same.
    Thanks in advance
    Regards
    Dilip

    Hello Apps Guru's
    Please let me know your inputs on this. Your help is highly appreciated
    We are in R12.1.2
    Thanks
    Dilip

  • APO gATP vs R/3 ATP - To check sales order ATP across multiple plants

    Hi There,
    I am trying to evaluate gATP functionality for SD sales orders.
    The primary requirement is to have sales order ATP checking take place across multiple plants.
    E.G.
    Sales order line is entered for qty 100
    60 is available in plant A, 40 is available in plant B
    System checks both plants and creates 2 lines - one for delivery from plant A and one for delivery from plant B
    (we are currently heading down the road of writing ABAP to do this 'multi-plant' check in R/3 but the more complex the requirements get the more interested I am in understanding more about APO/gATP)
    I would like to understand the benefit of implementing APO / gATP as opposed to using standard R/3 ATP and perhaps writing custom ABAP code to search for inventory across multiple plants.
    I would appreciate any insight regarding what is required to setp gATP to perform such checking and any other feedback regarding this issue - especially if you have had to implement something similar at your company.
    I have looked here but not much clear help:
    http://help.sap.com/saphelp_scm50/helpdata/en/26/c2d63b18bc7e7fe10000000a114084/frameset.htm
    Thanks,
    Niall

    Hi Niall
    you are probably looking at RBATP (Rule based ATP). Look at transaction /sapapo/rba04 in APO where you develop your own location and product substitution rules. Going down an ABAP road in R/3 may work short-term but not long-term as the requirements may get more complex.
    Regards
    Srinivas

Maybe you are looking for

  • Binding a Check Box with a User Defined Field

    Hi everyone, i v created a user defined field (U_CheckPro)in the system table "OITM" with two values: Y for Yes and N for No. In relation to that i v also created a check box on the form "150" and would like to know how can i bind my checkbox with  m

  • URGENT -- Printing reports adds extra spaces in between pages

    Hello Experts, I would like to ask for your help regarding printing from concurrent requests. I am currently having an issue with printing multiple pages from Oracle reports, both in text format and RTF/PDF formats. When I generate a multiple page re

  • Wireless Router Help Needed! Please and Thank You

    My warrenty has expired on my router, and Linksys is conveniently not able to help me get my router back on track.  I have had the same problem several times, and have had the steps wrote down to fix it however, I have recently moved into a new place

  • A JMS Scenario?

    My scenario comprises a Tomcat/Struts web application and a backend content management system/search engine. I have come up with the idea to make the UI faster by caching search results listings. However, users can modify the search result items usin

  • How can i buy and send a gift credit to iTunes online

    Question: I would like to purchase and send a gift credit to iTunes online (by email).