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

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.

  • 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

  • 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.

  • 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 )

  • 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

  • Relation between item master org and operating Unit

    How single item master org can relate to multiple operating Unit so that items defined at Master Org level can be accessed in other operating units ?

    Hi,
    Item will be accessed in inventory organizations which you assigned the item to.
    To access items from particular Operating Unit in Purchasing module
    define Operating Unit Organization as a Inventory Organization as well.
    Then choose this Organization as a Inventory Organization in Purchasing : Setup>Organizations>Financial Options.
    In Order Management you choose an Operating Unit which items can be accessed.
    Each item assign to Item Master Organization and to Operating Unit Organization and to required Inventory Organizations.
    This works in 11i. I dont know how it is in R12.
    regards,
    Marcin

  • Please help me get my laptop back someone has cracked the master password and is running multiple operating systems which I have no access to

    Okay so I am not a computer expert by any means and have no clue how to fix my system. My father worked for intel for over 20 years as an engineer I asked him to restore my laptop to its original factory state and instead he cracked the master password
    installed multiple operating systems and made himself the administrator or domain controller. Many features and options I do not have access to so reading the trouble shooting and going through the steps always leads me to a dead end. The laptop is TOSHIBA
    SATELLITE L875D-S7332 a6 VISION AMD WINDOWS 8. As far as I can see my profile is actual running a version of windows 7. I do see reference to a windows 8RT windows 2003 windows vista wow64 and 32 I don't know what all that means I would just like to know how
    wipe everything and get back to the factory condition I bought it in. If anyone can help it would be much appreciated

    Do you have Win 7 installation disk? If yes, then go ahead and format the laptop if you don't need any data. If you need the data it it, then copy the same to USB disk and format it. Removing OS and deleting these things will anyhow keep some remains on
    HDD. TO get the speed and performance back, you might need a fresh installation. 
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • Unit Price in Item Master Data

    Step no.1) At time of Defining Item Master Data  we are Defining Unit Price say<b> 2,000</b> <b>INR.</b> Data Saved in Price List 01.
    Now with this information I am Preparing Purchase Order.After Selecting Specific Item unit price is reflecting in P.O by default, Then I modified Unit price from 2000 INR to 2500 INR in P.O.
    Step no 2)  I received material by Goods Receipt PO
    Step no 3) When I am posting A/P Invoice based on GoodsReceipt PO in invoice the original Master Data Unit price is Reflecting.
    Now vice versa I made another Transaction also in Another System.
    In Step no 3 it is reflecting the Unit Price of Purchase Order.
    Can I know why it gives different Information for same type of Transaction. Does I followed wrong System.
    Regards
    Narender

    Please confirm the following.
    Once you select a Price in PO it should carry all the way through at the AP Invoice and should not change unless changed manually.
    Are you copying the PO >  Goods Receipt PO > AP Invoice
    And when copying to Goods Receipt PO or Invoice you are not changing the price or Pricelist
    Pls let me know
    Suda

  • Image in Item master

    Hi,
    Is there any way to print the image of item in item master data. This is requirement of client so that he can print image of item on paper and present it to their customers. Any solution pls suggest.
    Regards
    swapnil

    Thanks for the reply
    Hi
    In our Item master, each item has an drawing  of the respective item which is attached to these items in master with help of image file.
    Our client normaly uses prinout of this drawing when they give quotation to their customers.
    what i want to know is whether it is possible to take prinout of the image (Pls note i want print out of the image only and not screen of item master) from item master itself.
    If no is there any other way to handle this....? As you said about PLD is it possible to manage only the image in PLD may be on the second page.......
    Pls guide.
    Thanks
    swapnil

Maybe you are looking for