Changing Operating Unit for Inventory Organization

We have Inventory Organizations already LIVE in Oracle EBS 12.1.3. These are assigned to an Operating Unit. We need to change operating Unit for an Inventory Org. Is it possible to just assign new Operating Unit for an existing Inventory Org? or do we need to define new Inventory Org and then assign the new Inventory org to the new Operating Unit? Let me know if any one has ever faced this requirement and how was it implemented. Thanks a lot.

Hi,
The profile option MFG_ORGANIZATION_ID is used by forms that are inventory organization dependent, for example, View Material Transactions form. It is set by calling the function fnd_org.choose_org. It will open a list of values where you will be able to choose one inventory organization enabled to the responsibility you are currently using.
By default this profile option cannot be set at any level (site, responsibility, user…). I tried to enable it to be set at responsibility level. However, after having done that, nobody was able to enter Oracle e-Business.
Do you intend to restrict access to one inventory organization or just define a default inventory organization? If you intend to restrict access, you can use Organization Access (Inv Super User: Setup: Organization: Organization Access). There, you define the inventory organizations that are enable to each one of your responsibilities.
If you have no lines in that form, all organizations are available to all responsibilities. If you add just one line, access is denied to all responsibilities and organizations not listed. So, be careful in setting this up.
Regards,
Ketter Ohnes

Similar Messages

  • The operating units and inventory organization deleted form the system

    I am defining new instant on oracle finance
    First I have create Business group, Operating unit, inventory organization
    Then I create the accounting setup and compete it
    Went to operating unit tab of the accounting setup and complete it also
    After that I try to configure the oracle payable
    In the payable option when I try to select inventory organization , the inventory organization is not there
    Then I check it in the global HRMS manger, in that the operating unit I already created are not appearing
    What is the error I have done
    Why the operating units and inventory organization deleted form the system

    Pl post details of OS, database and EBS versions, along with which document you are following to perform all these setups.
    HTH
    Srini

  • MO: Operating Unit Non Usable Operating Unit for Multi-Org Conversion

    Hello Hussein
    I enabled multi org in 11i and mo Operating unit values set as Non Usable Operating Unit for Multi-Org Conversion, is ok to set is value or will that cause any responsibility.
    In R12.1.3 I am getting an error like this
    APP-FND-02902: Multi-Org profile option is required. Please set either MO: Security Profile or MO: Operating Unit profile option.
    Please advice
    Thanks
    Prince

    user12094010 wrote:
    Hello Hussein
    I enabled multi org in 11i and mo Operating unit values set as Non Usable Operating Unit for Multi-Org Conversion, is ok to set is value or will that cause any responsibility.This might cause issues.
    ORA-20001: APP-FND-2902: Multi-Org Profile Option is Required [ID 399910.1]
    How To Prevent the Profile Option MO: Operating Unit being set to NULL at Site Level? [ID 393560.1]
    In R12.1.3 I am getting an error like this
    APP-FND-02902: Multi-Org profile option is required. Please set either MO: Security Profile or MO: Operating Unit profile option.
    Please adviceR12 - Error ORA-20001, APP-FND-02902 Accessing Profile Classes Form With Multi-Org Access Control (MOAC) Enabled [ID 602141.1]
    Unable To Open Customer Account Details, Error :ORA-20001: APP-FND-02902: Multi-Org profile option is required [ID 987165.1]
    Entering to Profile Classes Gets Ora-20001, App-Fnd-02902. Multi Org Profile Option Is Required [ID 465132.1]
    Error 'ORA-20001: APP-FND-02902: Multi-Org Profile Option Is Required' When Open Account Details [ID 1406860.1]
    Some Web Pages Fail To Load After Patch Application [ID 1281328.1]
    You may also search MOS website for APP-FND-02902 and go through the docs.
    Thanks,
    Hussein

  • How to Load data for Inventory Organizations

    Hi All,
    I have flat file containing data for following fields,
    Organization Code, Name, From(Date), Location,Org Classification ,Primary Ledger, Legal Entity, Operating Unit ,Item Master Org,     Material Account,     Outside Processing,     Material Overhead,     Overhead,     Resource,     Expense     Transfer Credit     Inter Org Receivables,     Inter Org Payables,     Intransit Inventory,     Invoice Price Variance,     Inventory AP Accural,     Expense AP Accural(Operating Unit Level),     Encumbrance,     Sales,     Cost Of goods Sold,     Deferred COGS     Cost Variance,     Receiving Inventory Account,     Receiving Clearing Account.
    Now i want to Load this data using API/Interface, any one has any idea which API's are present or any way of doing this.
    Thanks and Regards,
    Prashant

    I have tried winparrot for such loading and now i have a lot of macro to load data from Excel to forms or to any browser.
    I do not have a macro for your needs nevertheless it should be very easy to make it.
    You can watch on youtube its tutorials for Oracle EBS.
    Regards

  • How do I change the units for the vector shape stroke in the option bar?

    I work with vector shapes very often in Photoshop. In CS6, they have added the stroke and fill tools in the option bar.
    If I open a file with vector shapes that was created in CS5, the stroke defaults to 3pt. I would prefer it to default to pixels instead of points. I have found that if I change the settings prior to creating a new shape, it retains those attributes for all future shapes. However, if I am working on an older file, and would like to use this tool, it is frustrating to have to change this unit every time.
    Any assistance would be helpful. Thanks!

    Every time I move the volume, it moves back!
    Check, if you have a volume automation set on the software instrument track.
    If the track volume automation curve is enabled, the volume slider for the track will move with the automation curve.
    Click the automation curves disclosure triangle in the track header and disable the volume automation.

  • OSB & WLST: changing operational settings for a proxy service via WLST

    Hi all,
    we are trying to change the operational settings for a proxy service via WLST.
    In details we would like to change the "Logs" level (Monitoring section).
    We have a lot of deployed services and our 'deployer people' need an automatic way (via WLST for example) for doing that instead of using the OSB console.
    Thanks in advance
    ferp

    Hi,
    OSB is the Oracle Service Bus. Oracle Service Bus is a configuration-based, policy-driven enterprise service bus.
    The OSB is deployed into an Oracle WebLogic Server instance.
    OSB uses also WLST functionality provided by WebLogic Server.
    Best regards
    ferp

  • How to set operating unit for FND_REQUEST.SUBMIT_REQUEST

    Hi,
    This may sound like an elimentary question but I am facing trouble while submitting PRC Transaction Import (PAXTRXTR) from PL/SQL. The concurrent request is created but it errors out as the operating unit field on the request id blank eventhough I have used mo_global.set_policy_context in below code. Since PAXTRXTR has multi_org_category set to S it expects a org_id while submitting.
    Can you figure out what is going wrong here.
    Following is the code I use
    DECLARE
    l_request_id NUMBER;
    v_msg varchar2(2000);
    BEGIN
    fnd_global.apps_initialize(43313,20433,275);
    mo_global.init('PA');
    mo_global.set_policy_context('S',1);
    dbms_output.put_line(mo_global.get_current_org_id);
    l_request_id := fnd_request.submit_request( 'PA'
    ,'PAXTRTRX'
    ,null,null,false
    ,'Unaccounted Web ADI'
    ,'test1'
    if l_request_id = 0 then
    FND_MESSAGE.RETRIEVE(MSGOUT => v_msg);
    dbms_output.put_line(v_msg);
    else
    commit;
    dbms_output.put_line(l_request_id);
    END IF;
    END;
    Thanks,
    Bhavesh

    What is the output you are getting after running the above code from backend?
    fnd_global.apps_initialize(43313,20433,275); is sufficient why do you want to set Policy context manually??

  • How to change Org Unit for larg number of emplyees

    Dear Guru's,
    My client has uploaded wrong Org Units while hiring, now that has to be changed for larg number of employees.
    Can any one suggest me how can we do this for larg number of employees?
    Thanks in advance for your kind suggestions.
    Regards,
    Srinivas

    Hello Srinivas;
    By saying uploaded wrong organizational units, do you mean that organizational structure in PPOME is wrong or employee - position assignment is wrong?
    If employee - position assignment is wrong then I suggest you to use batch input program or use LSMW as you have to change it via personnel action - PA40
    If organizational structure is wrong, then do you have correct organizational structure in another system like test or qa?
    If you have correct organizational structure then you can directly transport it from one system to other but if you don't then you first need to correct the organizational structure and then run LSMW or batch input.
    Regards;
    Okan

  • Changing Costing Type for one organization

    Hello,
    We have (2) organizations. In one organization our cost stucture is standard costing (first in first out). In our other organization it is set as average costing. We need to change this organization from average costing to standard costing (first in first out).
    The question I have is, what needs to be done to do this? In addition, should we have any concerns on when the switch is made. ie. End of Month, End of Quarter, End of Year.
    Thanks in advance for any help!

    Dear User
    It is simple, in ORG-2 u need to change your Cost method from Avg to Standard.
    Assume, for ORG-2 your Periods start from Jan to Dec.....in your case, lets say for Jan10, you close your period and performed the AVG costing and send it to GL.
    Now you want to change for FEB-10 your cost method should be Standard, Here you need to do certain standard set ups and that will take care for ORG-2. Once you did this set up, u can view the costing method under Std cost method irrespective of Monthly/Qtryl/Half yrly and for this, there won't be any issue.
    Regards
    Raj

  • R12: Is Inventory setup mandatory for Operating Unit setup?

    Hello,
    I am doing the setup of an operating unit for a business on a fresh R12 install.
    Is the setting up of the Inventory Organization (with all the info like e.g material account, cost of goods sold etc) is mandatory even if the business will not setup inventory module?
    Vik

    Hello Manish,
    In the example you gave, when talking about
    Jain, Manish wrote:
    ..the system specifically ask you to enter the Inventory Organization field with the inv org you have defined.are you referring to the setup from Financial Options --> Supplier-Purchasing tab --> where we have a field "Inventory Organization"?
    This is not a required field and can left null.
    Or If we do not have the Operating Unit with "Inventory Organization" as classification, an error will popup when setting up payables?
    The problem is that, we have to ask the client about the accounting key for material, COGS etc... and he want to know why we need this since he does not use Inventory module.
    Vik

  • Independent delivery numbers for each Inventory Organization.

    Hi.
    To all the community.
    We have an EBS instance with multiorg. We have 3 companies, and each company has its set of books, operating unit and inventory organization.
    Actually, the EBS is seeting up in a way that is giving a unique delivery number (for all operating units --> for all inventory organizations) from a unique sequence, when the user is making the picking release.
    Actually, the spanish authorities has established that each company must have a unique sequence for the delivery number when we make the picking release.
    My question is if is it possible to setup the EBS in a way where each company
    have its own sequence for the delivery number, in order to have a separate
    sequence number, not overlapped between them.
    Thanks a lot in advance for the answers or suggestions.

    you can try creating a document category for table WSH_NEW_DELIVERIES, and then assign individual document sequence for each operating unit. See if this works.

  • Need help about Financials Operating Unit Level Setup data object transforming

    Hi All,
    We met some issues while using iSetup to create new OU from existing one via 'Financials Operating Unit Level Setup’ template and need your help.
    We can perform Extracting successfully, but when we’re tring to proceed Transform, it seems iSetup can’t meet our expectation.
    Firstly, after succesful creation of the Transform for 'Financials Operating Unit Level Setup’.
    We clicked the transform icon and it led us to the Details page.
    However, we can’t search out any result on that page, is it a bug?
    If we didn’t performed ‘Transform All’, then there’s no row shows on Transform Details page so we can't make any transform, as below:
    But after performing a ‘Transform All’ task, revisite the Details page and unfreeze, Operating Units and Inventory Organizations became transformable, as shown in below screenshots.
    Secondly, we found the transformable data objects are so limited, even the whole Payable Options and Finacial Options doesn’t support, as well as the Operating Unit short code.
    Is there any documents indicating which data objects are transform supported? Or if there’s any sql query for it?
    Will be very appreciated if anyone can help.
    Regards,
    Genghua Guo

    Hi,
    According to your description, my understanding is that machines failed to ping the server name, and successfully to ping its IP address.
    First check to see if DNS related port 53 is opened on the DC, or disable any anti-various software temporally, then ping the DC’s
    FQDN and confirm that if the name would be resolved.
    >The host 7acf7675-12f6-4280-84ff-ca225bc99373._msdcs.REGENCYVILLAGE.LOCAL could not be resolved to an IP address.
    You domain name is REGENCYVILLAGE.LOCAL. It seems that the DNS server failed to resolve your DC’s name. check the zone named REGENCYVILLAGE.LOCAL to see if an A record is corresponding to your DC.
    >75.75.75.75 (<name unavailable>) [Invalid], 75.75.76.76 (<name unavailable>) [Invalid]
    It seems that invalid IP address of DNS server on the TCP/IP properties of DC. 
    I want to confirm with you that if you have installed the DNS with installing AD DS. Just the DC’s name can’t be resolved? Or any other device also has the same question?
    =======
    You may use AD DS Best Practices Analyzer (BPA), which is a server management tool that can help you implement best practices in the configuration of your Active Directory environment. Detailed information reference:
    https://technet.microsoft.com/en-us/library/dd391875(v=ws.10).aspx
    besides, suggestion about Active Directory Best practices, just for you reference:
    https://technet.microsoft.com/en-us/library/cc778219%28v=ws.10%29.aspx?f=255&MSPPError=-2147217396
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Configuring Legal Entity as Operating Unit without creating new OU

    Hi,
    I have read the doucment "120funmo.pdf" on page 25/60. Eastern operations can be created as Legal entity and identify as Operating Unit and Inventory organization without creating any new OU and INV. ORG.
    How this can be achieved?
    I have created Ledger and "Eastern Operations" as Legal Entity and trying to find a way to identify it as OU and INV. ORG.
    Thanks,
    Narendra
    Edited by: 869369 on Jun 29, 2011 11:51 PM

    Suppliers are across all Operating Units so you see the same set across Operating Units.
    Supplier Sites are partitioned by Operating Unit.
    Regards,
    Gareth

  • Change the Operating Unit and GL set of books on a responsiblity

    Hi Every one
    few of the responsibilities which were configured have a either a wrong of set of books or a wrong operating unit
    For example a responsibilty which was suppose to have US Set of Books and US operating Unit has MX Set of Books and US Operating Unit
    though in Multi Org setup MX set of Books is associated to MX operating Unit. Also vice versa happened on other responsibilities for example right set of books but wrong operating unit.
    My question what is the impact of changing GL Set of Books, MO Profile Value to right one? we already have one year transactions on these responsibilities which are related Oracle Cost Management and Oracle inventory.
    Thanks in advance.

    I am running into similar question - I am on R12 and am back tracking some origional set up issues
    I want to change a opearing unit to report to a different GL ,I vcan change it in HR Organization profiles however If i post an entry via AP to GL it shows up in the (old ) GL
    Is there a process i can run to update ?

  • PR Number, Operating unit and Organization

    Can any one please let me know if there is any Table or View available which gives me the relation between PR number, which Operating unit it belongs to and the Organization it belongs to.
    For a given PR number I want to find out its Operating Unit and Its Organization.
    Regards
    Hawker

    To get the operating unit try
    SELECT NAME
      FROM hr_operating_units
    WHERE organization_id = (SELECT org_id
                                FROM po_requisition_headers_all
                               WHERE segment1 = '&PR_NUM')For the inventory org, try
    SELECT mp2.organization_code
      FROM po_requisition_headers_all prha,
           po_requisition_lines_all prla,
           mtl_parameters mp2
    WHERE prha.requisition_header_id = prla.requisition_header_id
       AND mp2.organization_id = prla.destination_organization_id
       AND prha.segment1 = '&PR_NUM'Hope this helps,
    Sandeep Gandhi

Maybe you are looking for

  • Follow up To my initual Bt Infinity problem

    Seeing that i cannot get a speedtest done through the btspeedtester one i just managed to do a test to see what my general connection is like. As i stated yesterday my download speed is down to 28 mb where i should be getting 57.7 according to Bt whe

  • How can I get iTunes Match to download songs on new iphone5s?

    Hi, I just exchanged the iphone4 for for the iphone 5s. For five days now it says 'Loading iTunes Match' on the display of the new phone when I go to 'Music'. Same thing for photographs. What can I do? So far I've checked that all the right things ar

  • Digital Signatures for PM orders

    Hi! Requirement: I am supposed to implement the usage of Digital Signatures in PM orders. The requirement is such that every time a PM Order is created, a couple of users must sign it off using digital signatures with the user's logon password. Simil

  • Oracle virtual machine in pl/sql hirearcy Profiler

    When I use pl/sql's hierarcy profiler tool. I get an output and when I look that output I see PLSQL."".""."__plsql_vm" on one line and also PLSQL."".""."__anonymous_block". I searched to google but I couldn't find anything about it. I mean, I would l

  • Class Event Error

    ***INCLUDE MZTEST_CLASS . DATA gr_event_handler TYPE REF TO lcl_event_handler . *--Creating an instance for the event handler CREATE OBJECT gr_event_handler . *--Registering handler methods to handle ALV Grid events SET HANDLER gr_event_handler->hand