Error :Inventory Problem

Hiiii..,
Im upgrading my oracle apps from 12.0.4 to 12.1.1, im following the metalink document Oracle E-Business Suite Release 12.1.1 Maintenance Pack Installation Instructions [ID 752619.1]
Im currently doin the Upgrade OracleAS 10g Release 3 (10.1.3) to Patchset 4 (10.1.3.4) (Required) step.
For that i have downloaded the Patch 7272722.
I have set my oracle home to <INST_TOP>/ora/10.1.3 and also source the <sid_machine>.env
Now when i trying to runInstaller, there is no product listed inside "Installed products" tab..
In my linux 32-bit system there is no file like oraInst.loc inside /etc instead the oraInst.loc file is located inside '/u01/oracle/NEW/apps/tech_st/10.1.3' directory
and my oraInventory is located inside ' u01/oracle/NEW/inst/apps/NEW_msftrac2/admin/oraInventory'
Plz anyone suggest me a solution to apply this patch set...
waiting for your replies
Thanks and Regards.

Hi,
From R12, all the oracle homes information is stored in local inventories.
You can create global inventories using the following doc.
How to Create a Clean oraInventory in Release 12 [ID 834894.1]
In addition please see
How to find the location of GLOBAL Inventory and LOCAL inventory on R12.x ? Need Clarifications Oracle Inventory [ID 878717.1]
How to create, update or rebuild the Central Inventory for Applications R12 [ID 742477.1]
Global and Local Inventory explained [ID 360079.1]
Thanks

Similar Messages

  • Error:Inventory Account Missing in AP Invoice

    Hi
    I'm using SAP Business One 2007B, While raising A/P Invoice from a GRPO an Item Shows the Error Inventory Account Missing since all of its Accounts are given in all the setup like Warehouse, Item Group, and Everything. Kindly help me

    Hi
    Please go to the item master data
    Note on what base the G/L accounts are set
    If they are on base on item group ,
    Note the G/L accounts set in that particular  item group
    If it is on base on warehouse please check the G/L accounts of the warehouse which is selected in GRPO
    If it is on base on item level then check in item master data
    Please tell me if u still do not find the solution
    Also tell me if this problem is with some particular BP ,item ,Warehouse , or it is over all
    Thanks
    Avtar Singh Saini

  • OWA error: A problem occurred while you were trying to use your mailbox (Exchannge 2010 SP3)

    Hi!
    I have several mailboxes that are was moved from Exchange 2007 to Exchange 2010.
    Sometimes occurs a problem: in OWA may appears error "A problem occurred while you were trying to use your mailbox" when selecting interface elements (such as "Options", "Public Folders",
    "Reminders"). After this error user cannot access to mailbox through OWA during 10 minutes. The error "A problem occurred while you were trying to use your mailbox" appears in top of browser window on any computers. This behavior is manifested
    in any browser, but it can not be associated with any particular event.
    Access to mailbox through Outlook or through mobile devices (ActiveSync) continues to work fine in this time.
    The errors in Application log on Client Access Server is absent (including error with EventID 9646). ExBPA is not showing anything specific to that error message. Test of OWA connectivity working successfully.
    In the logs of IIS finded records:
    2014-08-26 09:23:01 172.16.0.31 GET /owa/ &ex=UE:Microsoft.Exchange.Data.Storage.TooManyObjectsOpenedException 443 DOMAIN\username 172.16.4.218 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.1;+WOW64;+Trident/5.0;+SLCC2;+.NET+CLR+2.0.50727;+.NET+CLR+3.5.30729;+.NET+CLR+3.0.30729;+Media+Center+PC+6.0;+InfoPath.3;+.NET4.0C;+.NET4.0E;+.NET+CLR+1.1.4322;+MS-RTC+LM+8)
    200 0 0 31
    Someone faced with such issue?
    Have ideas to solve the issue?

    Hi,
    Event 9646 occurs if a MAPI client opens more than the default value. You can follow the steps below for troubleshooting:
    1. Run regedit, and then click OK.
    2. Expand the following registry subkey:
       HKEY_LOCAL_MACHINE \SYSTEM\CurrentControlSet\Services\MSExchangeIS\ParametersSystem
    3. Right-click ParametersSystem, point to New, and then click  Key.
    4. Type MaxObjsPerMapiSession, and then press ENTER to name the new subkey.
    5. Right-click MaxObjsPerMapiSession, click New, and then click DWORD Value.
    6. Type Object_type, and then press ENTER to name the object.
    Note: Object_type is the name of the object type in the error message that is mentioned in the "Symptoms" section.
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • I am not able to open iCloud from pc, error is "problem with the server". what should I do?

    I am not able to open iCloud from pc, error is "problem with the server". what should I do?

    Go to Settings>General>Restrictions>Accounts (near the bottom) and set this to Allow Changes.  You will then be able to access Settings>iCloud again.

  • Error logging problem:

    error logging problem:
    I would like to implement an error logger that will do the following tasks when a error/exception arrises:
    - surpress the DacfErrorPopupLogger
    - alert the user that an error has occured with a simplified popup (create a global listener then use the ErrorAttributes to create the text of the popup)
    - log the error in a file with a timestamp and all error information
    - later if the above works....i would like to add the error attributes (time stamp, error type) to a oracle object/ Jdev domain.
    Questions:
    What is the best technique to use....errorManager, error logger ...?? combination
    How do i use the error manager to register listners for the errors?.
    In the following code i am not sure how to access the ErrorsAttributes[] array that is returned by loggerReader.getErrors();
    Any general tips places to find sample code on errorManager or associated interfaces, will be appreciated
    I used the OutPutStreamLogger to write error information to a FileOutputStream then a loggerReader to get the error attributes from the file. The reason i went in this direction is because i found some smple code on the outputStream logger.
    package DACVideo;
    import oracle.dacf.util.errorloggers.*;
    import oracle.dacf.util.errormanager.*;
    import oracle.dacf.util.errorloggers.InputStreamLoggerReader.ErrorAttributes;
    import java.io.*;
    * A Class class.
    * <P>
    * @author Adam Maddox
    public class ErrorLogger extends Object {
    static OutputStreamLogger logger = null;
    static InputStreamLoggerReader loggerReader = null;
    public ErrorLogger() {
    System.out.println("==============ErrorLogger Created==============");
    //remove default error logger (popup logger)
    ErrorManager.removeErrorLogger(ErrorManager.findLoggerByName(DacfErrorPopupLogger.NAME));
    try
    logger = new OutputStreamLogger(new FileOutputStream("out.dat"));
    loggerReader = new InputStreamLoggerReader(new FileInputStream("out.dat"));
    catch(java.io.IOException e)
    System.err.println("Error!");
    try
    ErrorManager.addErrorLogger(logger);
    catch(NameAlreadyRegisteredException e)
    System.err.println("A Logger with this name is already registered.");
    private void closeErrorLog()
    //close the OutputStream, to force flushing
    logger.closeOutputStream();
    ErrorManager.removeErrorLogger(logger);
    public static void showErrorLog()
    ErrorAttributes[] errorArray = loggerReader.getErrors(); <<<<CANNOT GET ERROR ATTRIBUTES ??
    null

    JDev could you help??

  • Oracle error - Open problem

    hi friends,
    on accessing the database i get this following error:
    Open Problem - ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist Execution Problemnull
    How can i resove it...

    Here's a wild idea.... check the Oracle site/documentation for suggestions ?

  • Error in problem  class important

    Hi Gurus,
    we are facing problem while activating the transferstructure
    when are activating using the program:
    RS_TRANSTRU_ACTIVATE_ALL
    we are getting
    error in problem class important.
    All Thaughts are considered.
    Regards,
    Ajay.

    Need tyo make sure the problem is with the query/workbook are general issue with all workbooks/query.
    1. Make sure the base query of work book is still executable. RRMX/RSRT.
    2. Execute the work book in Bex/Excel and look for definition of workbook; there might be some thing in the workbook referencing other than base query.
    3. If other workbook are also not working? need to check if other users have same issue.?
    Hope this will help to narrow the problem.
    Gopi

  • ERROR 101 PROBLEM

    Error 101 (problem extracting the installer): Creative Suite 6 Master Collection Trial
    This question is Not Answered.
    21-May-2012 19:26
    #trial_download #creative_suite_6   
    I have 400 gb of free space. 32 gb of ram.Im using Win7 64bit SP1. Have downloaded to the default folder and "tried the solutions" on the adobe troubling shooting guide. There seems to be alot of users with the same issue. Please advise.

    If you are continuing to have an error 101 after the steps you have listed then I would recommend initiating a direct download.  You can find more information on how to initiate a direct download at http://forums.adobe.com/thread/981369.

  • I have purchased adobe photoshop element 10 editor today but been having problem downloading.. it says error and problem on verification. Also tried contacting customer support but couldn't get through? can I still get my money back?

    i have purchased adobe photoshop element 10 editor today but been having problem downloading.. it says error and problem on verification. Also tried contacting customer support but couldn’t get through? can I still get my money back?

    Hi ...
    If you have anti virus software installed, you need to disable that in order to download apps.
    Apple's policy clearly states that, "all sales are final" >  iTUNES STORE - MAC APP STORE - TERMS AND CONDITIONS
    edited by:  cs

  • Priemere Pro consistantly crashed upon export, I cleaned media cache and that seemed to help. Now export errors unknown problem... read to uninstall and reinstall and now I can not open up PPCS5

    Here is my problems with Premiere Pro CS5
    When I export a project... the computer crashes.
    I was able to get a tech chat and they would clean the media cache
    so I did that.
    Then, I got an export error "unknown problem" I then read in a forum to uninstall and reinstall Premiere pro
    Now on my very nice relatively newer IMAC, when I go to applications to open it... I can not find a purple tab to open it. It just has a presets folder, then open that and it has styles, templates, textures but, now little purple Pr to open or drag to my dashboard.
    Help PLEASE!!! I have wasted 20 hours of editing time, and work because of crashes, and problems.

    Here is my problems with Premiere Pro CS5
    When I export a project... the computer crashes.
    I was able to get a tech chat and they would clean the media cache
    so I did that.
    Then, I got an export error "unknown problem" I then read in a forum to uninstall and reinstall Premiere pro
    Now on my very nice relatively newer IMAC, when I go to applications to open it... I can not find a purple tab to open it. It just has a presets folder, then open that and it has styles, templates, textures but, now little purple Pr to open or drag to my dashboard.
    Help PLEASE!!! I have wasted 20 hours of editing time, and work because of crashes, and problems.

  • Trying to upgrade to 10.6 so my iPhone could synch...I'm getting this error message "Problem with this Windows (XP) Installer package.  A program required for this install to complete could not be run."  Any ideas?

    I had iTunes 10.2.1.1 but needed to upgrade to 10.6 so my iPhone could synch...I'm getting this error message "Problem with this Windows (XP) Installer package.  A program required for this install to complete could not be run."  Any ideas?

    This has been fixed.  Answer is that I needed to go to "Apple Software Update" and repair it.  (From my Control Panel).

  • Error "DATABASE PROBLEMS WITH TABLE MC11VA0HDRSETUP"

    Hi Friends,
    I got the following message when am trying to delete the setup tables.
    " Error DATABASE PROBLEMS WITH TABLE MC11VA0HDRSETUP"
    Am trying to delete the setup tables for application '11', but it gives me the above error. I have gone throug similar threads but it did not solve my issue.
    Please can anyone provide a solution.
    system detials:
    R/3 release    - 4.6c
    PI                 - 2004_1_46c
    SAP_BW      - 30B
    PI_BASIS     - 2003_1_620
    Any information will be appreciated
    Thanks,
    VBR

    Hi Kishor,
    Thanks for your reply.
    I have gone through that SAP Note 456102 and it was not of much help for our issue because we are ahead of PI that is mentioned in the note.
    Can you send your email id so that i can forward the error screenshots.
    Regards,
    VBR

  • EVDRE error "encountered problem when retrieving data from webserver"

    Hi,
    in a EVDRE we always get the error "encountered problem when retrieving data from webserver"
    When analysing this further we noticed this is always generated when a base member is selected in the CV and the expansion on the row for this dimension is has one of the following expansion settings:
    DEP
    ALL
    NOEXPAND
    if we select SELF, the error disappears again and the EVDRE works fine again ... is this normal behavior?
    there is no problem with application nor dimension.
    D
    solved it

    Note that the keyword "ALL" does not include the member itself. This may cause some confusion, but as Harish implies, when you select a base member it finds no matches if your memberset is "ALL".
    If you want to design a report to handle the user moving back and forth between base and non-base members in their CV, you either need to include SELF,ALL or SELF,DEP, or something similar....
    OR you need to get a little fancier, and use EVPRO to look and see if the CV member is base -- evpro(app,member,"CALC") -- and then use some conditional logic in Excel to choose the correct expansion options. If Calc=N, use Self, otherwise use SELF,DEP or whatever you choose. This can be a bit tricky if you then want the user to be able to drill down in the report (especially if you want the workbook option to insert add'l rows on the expansion, rather than replace), but it's all possible.

  • ITunes version 11.1.5.5 error A problem caused the program to stop working correctly.

    iTunes version 11.1.5.5 error A problem caused the program to stop working correctly.

    See Troubleshooting issues with iTunes for Windows updates for advice on reinstalling iTunes which may well fix the issue.
    If you still have trouble could we please have the exact text of any error message?
    tt2

  • Error out problems with measuring frequency VI

    I am having some error out problems with measure frequency VI. The instructions is change error out from indicator to control but does not work. Anyone can help? The VI is attached
    Attachments:
    Measure Frequency VI error.vi ‏27 KB

    This VI does not have an error out. Obviously, you replaced a subVI that did have an error out with this one, otherwise you would not have been able to create this wire.
    Simply remove the wire or save the subVI with another name then modify it to have the error out that you are looking for.
    Hope that this helps,
    Bob
    Bob Young - Test Engineer - Lapsed Certified LabVIEW Developer
    DISTek Integration, Inc. - NI Alliance Member
    mailto:[email protected]

Maybe you are looking for

  • Upgrading Audigy 2 ZS with internal Platinum Dr

    I originally purchased the ZS card without the platinum dri've. Recently I wanted to connect my Xbox to my HTPC via optical so I could listen to Dolby Digital. My friend gave me his internal platinum dri've for the ZS as he wasn't using it anymore. I

  • Adobe: WHAT IS YOUR PLAN FOR DPS/ACROBAT/DISTRIBUTION?

    Based on Matthew's post in this thread: http://forums.adobe.com/thread/898426?tstart=0 I'm frankly concerned about investing any more time and resources into DPS without SOME SORT OF OUTLINED PLAN from Adobe.  Hinting that you may 'limit' functionali

  • 2.0.1 Update Deleted App Recognition

    After spending 6 hours updating my original iPhone to system 2.0.1 and restoring multiple times today, all of my purchased apps are no longer recognized as installed by the App Store. When I open the description for Day Bank, for example, it lists th

  • Editing with External Editors

    Heya folks, a quick query as i suspect ive probably missed something, i have Pixelmator installed as a cheaper image editor with much of the functionality of Photoshop, and i want to use it as my external editor. How do i go about doing that? I go to

  • Is there ANY way to boot up with OS 9?!?!

    Hi, this is my first post here, and I'm pretty desperate. I've recently upgraded to 10.4.7, and I've unfortunately just learned that I've lost the ability to start in OS 9. Actually, it's been lost for a while now, but I've just now noticed when I ne