Oui inventory list clean-up

Hi Friends,
I have deinstalled oracle 9i on our AIX 5L server and remove its
corresponding file system directory.
But when i run OUI installer, i still can see on the inventory list of
installed product home the ora9iHOME. How can I clean it up and remove
this non-existing home that the OUI shown? What inventory file does it
read from?
Thanks a lot

There are some inventory files that are created when you install Oracle and it creates a log for every successful or unsuccessful installations,
Maybe, it is taking the values from this file. If you delete those inventory files, they should not appear. Normally, if you see in windows, if you install oracle in a folder like 'd:\oracle\ora92' then inventory files would be created in 'c:\program files\oracle\inventory' like this.
This could have happened in your AIX box in some other folder. Thats the reason.
Any one has different ideas?

Similar Messages

  • Include asset in inventory list - asset master record

    Hi
    What is the importance of "include asset in inventory list" in asset master record.
    Thanks in advance
    prasad

    Hi Hariprasad,
                In industries it is a practice to physically count the assets and keep a record of it as a part of maintenance and it is also a statutory requirement in certain countries. In order to count the assets and cross check with the assets recorded in the system, SAP provides a report for listing the assets. The list is based on plant and cost center. In a real-life situation practice, you would then distribute this list to the persons who are conducting the actual physical inventory.
    The path for this report is as follows:
    <i><b>On the Application Tree Report Selection Assets Management screen, select the following in the report tree: Asset portfolio --> Inventory lists -->Inventory list</b></i>
    <b>Only if the Include asset in inventory list in the asset master record is ticked you can get the output as a part of this list.</b> So if you want to count and verify this asset physically check this box.

  • Inventory listing report to view item balance with the model number in R3

    Hi,
    Anyone have any ideas does R3 provide standard report to view the report with inventory listing on balance,description,model number?
    Kindly provide the t-code.

    Hi Karen,
    Check the below reports (t-code's)
    MB52, MMBE, MB5B, MB51
    If you need additional info revert.
    if helpful award points
    Regards,
    Vivek

  • User default format in printing inventory list

    Hi experts,
    I have a question about the user default print format.
    When I try to print out a output for inventory list, the print format turn to be a format that I donu2019t want to use, I have to change the format manually everytime. Is there any method that I can set the user default print format for a specific output?
    Thanks,
    Nadali

    The SAP form is INVENT
    But you can create your own form.
    You need to assign your own form to RM07IDRU in OMBU
    Then you can use MI21 to print you own physical inventory document

  • Customize Inventory List in xMAM

    Hi,
    I am working on customising the Inventory Management Screen in xMAM (version 3.0 SR4 PL0) where I am facing some issues.
    The standard Inventory Screen has following fields: Material, Equipment, Serial No, Stge Loc, Qty and Unit as shown [here|http://img512.imageshack.us/my.php?image=capture0103pu5.png]
    When I click on the material field information regarding that material pulls up.
    We have done the Customer Enhancement (BADI changes) by referring to the xMAM Enhancement guide so the Manuf Part Number gets displayed as shown [here|http://img512.imageshack.us/my.php?image=capture0102no6.png].
    This means the complete data is in Inventory SyncBO (Mam070) and Manuf Part NUmber is Mam070Item010.
    Now my requirement is to have this field in first Main Inventory List so that users can see first hand and give them alternative so that can search by Manuf part Number as well.
    So is it possible to have an Inventory list which displays data from Mam070 and Mam070Item010 at the same time?
    Any suggesstions / help will be appreciated.
    Chintan

    Oliver,
    I am using MAM3.0 SR4 and on Patch Level 0.
    I am able to get Manuf PArt Num from MAM070Item010 now. There was a typo at my end. All becuase classic Copy-Paste error. I was looping in second for loop with i instead of j and hence the error. I have corrected it and the code is attached.
    By the way there is no method elementAt for BOList class hence I am using get(int) method. Here is what I wrote for  Controller.
    ZInventoryList.java
         public Forward onLoad(Forwards forwards)
              System.out.println(">>>>>>>> ZInventoryList : onLoad called <<<<<<<<<<<<<<<");
              InventoryCustomController custom = getInventoryCustomController();
              Context context = getContext();
              try
                   Mam070Manager manager = (Mam070Manager) naming.lookup(Mam070Manager.class.getName());
                   BOList temp = manager.getMam070s();
                   Mam070 inv = null;
                   if (temp != null)
                        for (int i = 0; i < temp.size(); i++)
                             inv = (Mam070) temp.get(i);
                             String strInvKey = inv.getKey();
                             custom.setSelectedInventory(strInvKey);
                             Mam070 inventory = getInventoryCustomController().getSelectedInventory();
                             Mam070Item010 item = null;
                             BOList itemList = manager.getMam070Item010s(inventory);
                             if (itemList != null)
                                  for (int j = 0; j < itemList.size(); j++)
                                       item = (Mam070Item010) itemList.get(j);
                                       if (inv.getMaterial().equalsIgnoreCase("000000000000000865"))
                                            System.out.println("ZInventoryList : Material                : " + inv.getMaterial());
                                            System.out.println("ZInventoryList : Enhancement Flag      : " + inventory.getEnhancementFlag());
                                            System.out.println("ZInventoryList : Mfr Part Num           : " + item.getFieldValue());
                                       ZInventoryListBO bo = new ZInventoryListBO(inventory,item);
                                       bo.setInventory(inventory);
                                       bo.setItem(item);
                                       context.setValue("InventoryList", "true");
                                       context.addValue("inventory", inventory);
                                       context.addValue("item", item);
              catch (BOException e)
                   e.printStackTrace();
              return super.onLoad(forwards);
    Well Mam070Item010 is the standard BO class and not just for Customer Enhancement. When the value is displayed on Item Detail screen this class has the Customer Enhancement data I mean.
    So now I get to see the data I want to (i.e Manuf Part Number) on System Console.
    Next thing was to create a new BO class to hold the data as suggested in the Guide.
    Here it is : ZInventoryListBO.java
    public class ZInventoryListBO extends AbstractBO implements BusinessObject
         public ZInventoryListBO(Mam070 inventory, Mam070Item010 item)
              System.out.println("++++++++++ ZInventoryListBO called ++++++++++ ");
              Hashtable bos = new Hashtable();
              bos.put("inventory",inventory);
              if (item !=null)
                   bos.put("item",item);
    Am I on right track???? Question is how to show up the values I am getting on System consoles in the Inventory List??
    PS: Some screenshots :
    [MAM070|http://img162.imageshack.us/my.php?image=capture0103fq3.png]
    [MAM070Item010|http://img292.imageshack.us/my.php?image=capture0104zz0.png]
    Chintan
    Edited by: Chintan Virani on Feb 18, 2008 8:44 PM

  • Format of Inventory List

    Hi Experts,
    I have a problem when printing LI04 inventory list, after I print an inventory list and go to SP02 to check the output request, I found the print format was set to X_PAPER, can someone tell me where I can make the settings to make the print format always default to X_65_80?
    Thanks,
    Emily

    Inventory list in WM is not a SAPscript form, it is just a report RLLI0400.
    If a spool request is generated without an allocated format,   format X_PAPER is used at printing.
    For more background I recommend to read Oss-notes 25549 and 2374

  • Error in printing Inventory list (LI04)

    Hi Experts,
    I am printing inventory list using Tcode LI04. I have entered the WH number, Inventory record and select the print list.
    However I am getting a runtime error. I would like to ask if there is a limit in the quants to be processed using the transaction?
    Many thanks for your help.
    Mylene

    Hi Mylene
    With this you need to give List name and Print report name also to make output come.
    Amol

  • Can you sell two products from one inventory listing?

    The scenario is as follows:
    We buy one product 'ABC' from our supplier and store this in a location in our warehouse.
    We sell this product to our customers as part number 'ABC'.
    The issue arises because we also sell this product as a different product 'XYZ', which is basically product 'ABC' but it is tested before it leaves the warehouse and supplied with a certificate and is charged out at a higher price.
    Is it possible to set up an inventory listing for product 'XYZ' that will send the picker to product 'ABC' and reduce this items stock level?
    Any help on this would be great as it has been a problem for us for some time.

    Hi Philip,
    I have an idea to do it.
    Create an extension field( Customer Part No) in product master level and fill this field with the customer part no apart from the original material ID. Extend the same to the screens you may work and also to output forms as well.
    Extend this field to all the screens and output forms, so that this will reflect in the output forms. Here you can see 2 fields one is of original material ID and another one is of customer material ID.
    Hence the person who is going to pick the material will have 2 ids in hand and the inventory will be maintained in the Original Material ID(ABC) itself.
    Just check this work around, it may help you.
    If you dont need the Original Material ID(ABC) to reflect in the output forms, then create 2 forms one is with the Original Material ID(ABC) and another one is without Original Material ID(ABC). So that before releasing any transactions we can choose anyone of the document be clicking the Edit Output Settings.
    Regards,
    Samraj

  • Encountered problem(s) when trying to collect OUI inventory

    Hi,
    In the dbconsole of the EM show de message "Encountered problem(s) when trying to collect OUI inventory : Failed to collect OUI inventory: no oraInstaller in java.library.path Failed to collect OUI inventory: null". what is the problem ?
    Thanks.
    O.S. Windows Server 2003 R2 x64

    Thanks Eric Jenkinson, I have not found errors in with Opatch.
    I enclose result to you:
    GRAVE:OPatch invoked as follows: 'lsinventory '
    INFO:Starting LsInventorySession at Thu Jan 04 11:18:06 CET 2007
    INFO:Lsinventory Output file location : C:\oracle\product\10.2.0\db_1 \cfgtoollogs\opatch\lsinv\lsinventory-2007_Jan_04_11-18-06-CET_Thu.txt
    INFO:--------------------------------------------------------------------------------
    INFO:Productos de nivel superior instalados (1):
    INFO:Oracle Database 10g 10.2.0.1.0
    INFO:Hay 1 productos instalados en este directorio raíz de Oracle.
    INFO:
    INFO:No hay parches temporales instalados en este directorio raíz de Oracle.
    INFO:
    INFO:--------------------------------------------------------------------------------
    INFO:Finishing LsInventorySession at Thu Jan 04 11:18:07 CET 2007
    I have not found either errors that make reference to the problem of the inventory in the archives that you indicate. But that I have found the following errors in the emagentfetchlet.log file:
    007-01-04 11:07:54,921 [main] WARN track.OracleInventory collectInventory.683 - Check emd.properties for OUI classpath entries.
    2007-01-04 11:07:54,984 [main] WARN track.OracleInventory collectInventory.683 - Check emd.properties for OUI classpath entries.
    2007-01-04 11:07:54,984 [main] ERROR track.SnapshotFactory collectSnapshot.240 - ECM: Error occurred while collecting Oracle Software: Encountered problem(s) when trying to collect OUI inventory :
    Failed to collect OUI inventory: no oraInstaller in java.library.path
    Failed to collect OUI inventory: null oracle.sysman.comm.ecm.trk.GettingComponentException: Encountered problem(s) when trying to collect OUI inventory :
    Failed to collect OUI inventory: no oraInstaller in java.library.path
    Failed to collect OUI inventory: null
    at oracle.sysman.emd.ecm.track.OracleInventory.createLiveSnapshotComponent(OracleInventory.java:336)
    at oracle.sysman.emd.ecm.track.InventorySnapshotComponentType.createLiveSnapshotComponent(InventorySnapshotComponentType.java:88)
    at oracle.sysman.emd.ecm.track.SnapshotFactory.collectSnapshot(SnapshotFactory.java:203)
    at oracle.sysman.emd.ecm.track.SnapshotFactory.main(SnapshotFactory.java:358)
    What problem that this happening? Thanks for the help !

  • I am having a challenge getting an uploaded Podcast to appear on iTunes inventory list although it is present once I click on a left hand column for Podcasts (the extra step may make it too elusive for listeners to find.)

    Each week, a Radio Program is uploaded from my website to iTunes for access to our community. The December 17, 2012 episode and January 7, 2013 episodes, although they've been uploaded, will not appear on the Inventory on iTunes. When I look to the left of the running list of Inventory, which appears in alphabetical order, the word Podcast appears to the left with a number 1 next to it - as if there's a message waiting. When I click
    there and open, the December 17 episode is listed.
    Is there a way for the Podcast to join the other episode titles in chronological order? There will be another new one from this morning to join the list.
    (I have not heard back from Express Apple, have tried iTunes Support, Blog Talk Support, etc.)
    Thanks for any insights or tips....

    Hi Trukntigger,
    Thank you for visiting the HP Support Forums and Welcome. Thank you for sharing your findings we appreciate you taking the time to post.
    Have a great week.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Inventory list with moving average price

    Hi all,
                 How do I get the list of inventory stock using the valuation method as MOVING AVERAGE.
    Iam able to get the list using last purchase price, But how do I get it using Moving average Price.
    Thanks in advance.

    Moving average price for item might be different by each warehouse.  Inventory Valuation Report can be used to get the whole picture for any single item by moving average price.
    If you want to get more items, you can try this query to see:
    SELECT T0.ItemCode, T1.ItemName, T0.WhsCode, T0.OnHand, T0.AvgPrice, (T0.OnHand * T0.AvgPrice) AS 'Amount'
    FROM dbo.OITW T0 INNER JOIN dbo.OITM T1 ON T0.ItemCode = T1.ItemCode WHERE T0.OnHand > 0
    Thanks,
    Gordo

  • Oui Inventory dir does not exist or is not writable

    Hello there.
    So this is another problem when installing 9i on HP-UX 11.0.
    After entering the group the oui request to execute the /tmp/OrainstRoot.sh with root privileges.
    Finished the script without any errors as root
    the oui show an error
    The Oracle Universal Installer Inventory on this system does not exists or is not writable.
    - I checked that I really executed the script as root without any error
    - and the install user (oracle) is member of the install group (oinstall)
    So I checked every of the suggested problems without results.
    If you encountered the same problems somewhere...please let me know.
    Thanks
    Sigi

    I'm having exactly the same problem trying to install 10g on HPUX 11.23.
    The orainstRoot.sh script completed successfully but then I get the same error as you.
    Did you manage to resolve this issue? Sorry I'm no help to you,
    cheers,
    Scott

  • Oracle 10g OUI Product List

    I am preparing to install Oracle EE 10g R1 on a Linux box that is being set up as I type. My customer does not want a TYPICAL install but the option to limit products. Trying to be proactive, I'm trying to find the list of products you get when you choose CUSTOM install (waiting to get the list by running OUI would be a problem) but can't seem to find such a list on OTN or Metalink.
    If anyone has this list, I'd really appreciate a copy. In the meantime, I'll keep looking.

    Have you checked your Platform? The Installer is available for x86 and sparc platforms.
    Its possible that you have downloaded the installer for x86 platform and trying to install it on the sparc platform

  • How do you delete a home from OUI's list

    This is I hope relatively generic.
    I install databases and clients on different machines (Sun Servers, windows clients). The OUI (v2.x.x) keeps the list of homes and appears to have no method of removing a home from it's list. If we upgrade (and change the name of the home to match the version) or for some reason want to change the location of the installation, the OUI does not get rid of the "old" home. It in fact will recreate the directory where the old stuff resided if we delete it by hand at the OS level.
    Is there in fact an option in the OUI (maybe some alternate keystroke) to allow removal or renaming of a home?

    &gt; I've only ever removed Oracle homes by editing the
    &gt; registry on Windows. I suspect that this is highly
    &gt; nonsupported, I know it's a bit tricky to get
    &gt; everything right, and I know that the OUI gets very
    &gt; unhappy if you don't get everything right. I'd be
    &gt; happy to post those steps if you're interested.
    &gt;
    &gt; Justin
    Thanks.... been there, done that many times. I know the drill.
    I hoping for an "official" method (something actually a part of the OUI). This is close to being a bug. If you mistype a HOME name, you're stuck with it forever.
    Since i've got multiple platforms to deal with, knowing how to 'trick' the system on Windows is not very helpful on UNIX.

  • Slow Moving Inventory - List Material where Sales Goods issue is 1 Year

    Hi Gurus,
    One of my Clients is looking for a Slow Moving Inventory Report in BW where the Sales (PGI) for the Material did not happen in the last one year.
    Could you please help me with the best way to accomplish this requirement?
    Thanks
    Srini

    Hi,
    Just try this, if it works( i think it should work) then you wont have to code for virtual KF/chars and this will also boost the performance wrt Virtual KF.....
    Get your data for the last year..and Set condition where Sales = 0.
    So this should filter data and you would get data where Sales = 0.
    Let me know if this is working or not
    Thanks
    Gaurav
    Assign pts if this helps*

Maybe you are looking for

  • Is there any way to find out the serial number to an old ipod that i cannot find?

    theres a recall on the od ipod nanos the 1st generation ones and i purchased one and im not sure when and currently i am unaware of the whereabouts of the ipod. is there any way to find out the serial number without actually finding the ipod to confi

  • ITunes 9/iPod OS 3.1.1 combo has too many issues/bugs

    After upgrading to iTunes 9 and Touch to 3.1.1 I am having too many issues: iPOD TOUCH: 1. Everytime I launch music, it displays "upgrading library" message and takes eons (5 minutes) to show the library 2. Playlists don't work: most playlists show t

  • Can menu bar use variants instead of hard coding in GUI Status?

    Hi Experts, I am trying to select data into a variant from one table. This variant will be used for text in Menu Bar of GUI Status. I used to hard coding in Menu Bar. Is it possible for variants instead of hard coding in Menu Bar? If not, any flexibl

  • Concatenating VARCHAR2 to pass to a Java method

    Hi, I've imported in Oracle 10g a Java method which processes a String. I've mapped the String to a varchar2 as follow: create or replace function PARSE(input in varchar2) RETURN varchar2 as language java name 'Base64.decodeToString(java.lang.String)

  • Monitoring the workflow steps in SAP EP7

    Hello, I'm using Travel Management in SAP EP7. When users send a expenses request, workflow is triggered. I need to show users where workflow is in certain moments. I mean, in which step the workflow is. Please, how can I do it? Thank you