Where does OEM store information about SOA composite instances

Hi All,
I am posting this query the third time here. I really and urgently need information on where this OEM 12c Cloud Control stores the information about the SOA composite instances like.. if the instances is completed, running,faulted,terminated in the management repository or it does not store these information at all. But then from where it fetches the information on faulted instances which it shows on a SOA composite home page in OEM console.
I really need some concepts on this.
Please help!!
Thanks in Advance!!

This forum is answered on a best effort basis. For time sensitive urgent issues, please log a service request with Oracle Support.

Similar Messages

  • How does Jbuilder store information about user created packages

    Hi ,
    I am new to Jbuilder . I am trying to create a hierarchy of classes, eg:- com.test.first.servlet.abc.java . How do i add this hierarchy to the Jbuilder project. I have manually tried creating folders using New Folder feature, i guess thats not the way its supposed to be done.
    I also opened the .jpx with a wordpad , to see what kinda xml tag is being used to create a package of classes. There is no information about that at all. Right now i am copying a .jpx file, i got from god knows where & editing that for my present project.
    Any suggestions as to whats the right way of creating one !!?
    Thanx b4 hand,
    Maddy

    If you're trying to add an existing java projects source files to a jbuilder project then select the Project Properties dialog from the Project menu. Navigate to the Source tab and add the directory that contains the new source files.
    Dave

  • FontBook - where does it store font informations?

    As I've posted here before, I've been massively frustrated by Leopard's FontBook over and over again... so much so that this afternoon's longish post was deleted by the modgods here (they say "Your post was removed from Apple Discussions as it contained feedback or feature requests" when they mean "You used foul language to describe Apple products"
    Anyway, I've now installed Leopard on an external disk with one, and one purpose only: to get exactly the font files that are part of OS X 10.5.
    Having done that, I
    - deleted everything in /Library/Fonts
    - copied all the original Apple system fonts from the external disk
    - changed owner group and access data for each font resource to be exactly like the virgin 10.5
    - deleted the FontBook pref file in ~/Library/Preferences
    - deleted all ATS cache files
    - rebooted
    Now when I open FontBook, (of course) it still displays all sorts of fonts from before this open-heart surgery operation.
    So my questions are:
    - where does FontBook store its font informations?
    - how does one clear, delete, wipe out, nuke or kill these informations... whatever is necessary to not have Zombie font descriptions lurking in FontBook?
    TIA if anyone has an answer to enlighten this murky swamp!

    Maybe this is interesting to someone: after my 6th or so cold reboot this morning, and Spotlight having started its ritualistic "Indexing" my external FW harddrives (for the 6th time in 3 days...), my Console is filled with hundreds of this:
    23.11.07 02:34:35 com.apple.ATSServer[940] 2007.11.23 02:34:35.85
    23.11.07 02:34:35 com.apple.ATSServer[940] A fatal error was detected using fontiD 131127 while processing a message (id: 11) from pid=425.
    23.11.07 02:34:35 com.apple.ATSServer[940] Font Info:
    23.11.07 02:34:35 com.apple.ATSServer[940] In-memory font for ATS owner 311 -> pid 425.
    23.11.07 02:34:35 com.apple.ATSServer[940] FontObject 0x2debd0; ID 131127 ( 0x20037: gen: 2; index: 55 )
    23.11.07 02:34:35 com.apple.ATSServer[940] Name:
    23.11.07 02:34:35 com.apple.ATSServer[940] No name in cache
    23.11.07 02:34:35 com.apple.launchd[1] (com.apple.ATSServer) Throttling respawn: Will start in 10 seconds
    23.11.07 02:34:45 com.apple.ATSServer[941] FODBError: FODBRemoveFromAnnex - Got called to remove an annexIndex that does not match what is in the font
    23.11.07 02:34:45 com.apple.ATSServer[941] ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Now ATSserver is throttling and re-spawning, seemingly forever.
    Since this OS experience can't possibly get much worse -- I guess even Windows would be better at this point -- I'll go and delete all ATS caches (again) as well as FontBook's cache files, and reboot (again).
    Oh joy.

  • Where does EBS store customized LOV elements?

    Dear All,
    We are developing a report on EBS r12 >> Payables >> Payments screen.
    The Functional Consultants Team added a DFF ( view_inv_pay.DESC_FLEX ) with only 1 segment and its description at the Invoice Payment block level ( VIEW_INV_PAY )
    which synchronizes with each matched row in this block.
    The values of the DFF come by selecting from an attached customized List of value that the Functional Consultants Team had populated its elements using data loader.
    We have a requirement to display the DESCRIPTION of DFF segment in the report not its actual value.
    So the question is:
    Where does EBS store the data related to a customized LOV ?
    And how to join between the LOV’s under laying tables and the below report tables
    ( AP_CHECKS_ALL AC , HZ_PARTIES HZP , AP_SUPPLIERS PV , GL_DAILY_CONVERSION_TYPES GDCT , AP_INVOICE_PAYMENTS_ALL  AIP , AP_INVOICES_ALL AI ) to display the DFF description?
    Since, only the actual DFF values are stored in AP_INVOICE_PAYMENTS_ALL table.

    Dear Sandeep,
    That is great, but what about the joining condition.
    I know that i can join by the segment value in the AP_INVOICE_PAYMENTS_ALL table
    to be like below:
    SELECT ffv.flex_value, ffv.description
    FROM fnd_flex_values_vl ffv, fnd_flex_value_sets ffvs , AP_INVOICE_PAYMENTS_ALL API
    WHERE ffvs.flex_value_set_id = ffv.flex_value_set_id
    and API.SEGMENT1 = FFV.FLEX_VALUE ;   -- Assuming that the actual DFF value stored in SEGMENT1
    AND ffvs.flex_value_set_name LIKE '&value_set' But for tuning issues is there any an alternative to previous condition?
    Edited by: 670612 on Mar 21, 2012 1:47 AM

  • Document from file - how better store information about document?

    I have a text file that contains information about documents (content from groups than define the document - one row is one document). Every group content from fields (from 10 to 70 in every group). Document consist of 9 groups. In one documen can difference number of groups (> 1 group). E.g. one document can have 3 group1, 2 group6. In another document 2 group9, 1 group 6 and so on. I need to store document in DB and must edit document (by JFrame). To store document I use object MyDocument to store information about document.
    3 solutions:
    1. Store every group as list from hastables
    public class MyDocument {
       private ArrayList<Hashtable<String, String>> group1;
       private ArrayList<Hashtable<String, String>> group2;
       private ArrayList<Hashtable<String, String>> group3;
       private ArrayList<Hashtable<String, String>> group4;
       private ArrayList<Hashtable<String, String>> group5;
       private ArrayList<Hashtable<String, String>> group6;
       private ArrayList<Hashtable<String, String>> group7;
       private ArrayList<Hashtable<String, String>> group8;
       private ArrayList<Hashtable<String, String>> group9; 2. Store all groups as one list from hashtables
    public class MyDocument2 {
      private ArrayList<Hashtable<String, String>> allGroups;
    } 3. Store groups as lists consist from individual objects (MyDocumentGroup1, MyDocumentGroup2 and so on.)
    public class MyDocument3 {
       private ArrayList<MyDocumentGroup1> group1;
       private ArrayList<MyDocumentGroup2> group2;
       private ArrayList<MyDocumentGroup3> group3;
       private ArrayList<MyDocumentGroup4> group4;
       private ArrayList<MyDocumentGroup5> group5;
       private ArrayList<MyDocumentGroup6> group6;
       private ArrayList<MyDocumentGroup7> group7;
       private ArrayList<MyDocumentGroup8> group8;
       private ArrayList<MyDocumentGroup9> group9;
    public class MyDocumentGroup1 {
       private ArrayList<Hashtable<String, String>> group1;
    public class MyDocumentGroup9 {
       private ArrayList<Hashtable<String, String>> group9;
    }What solutions is better? Or maybe has another solution?

    Maybe better to store one document in ONE HashMap
    public class M2Document {
         private HashMap<String, String> data = null;in the next format:
    -------------key ---------value----------
    GroupID_FN | some value
    where, GroupID is ID of group, FN - field number
    example:
    -------------key ---------value----------
    Group1_1 | some value
    Group1_2 | some value
    Group2_1 | some value
    Group2_2 | some value
    Group3_1 | some value
    Group3_2 | some value

  • Where does TREX store data?

    Hi all,
    Sorry if my question is stupid, but I didn't find any document writes about database of TREX. So where does TREX store data?

    Hi,
    TREX creates an index from documents in a document set. An index is a collection of selected terms that represent the content of the documents indexed. To produce this, TREX indexes the original data and stores the index generated. TREX is therefore a secondary data store.
    The data that the TREX queue server (queues) and the TREX index server and its search engines (search index, text-mining index, and attribute-engine index) access is not stored in a database. It is stored unencrypted in the file system as flat files in the file system. You protect the TREX files and indexes located in your file system by configuring the security of your file system. You can find details on this in the security documentation for your operating system.
    Read this
    http://help.sap.com/saphelp_nw04/helpdata/en/62/468698a8e611d5993600508b6b8b11/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/39/025d83ca90a04c8a6151309d6d9f60/frameset.htm
    Thanks

  • Safari keeps shutting down on my iPad very often. Does anybody have information about this problem? Thanks

    Safari as well as other apps like USA Today and BBC, shut down very often in my iPad. I have experienced this problem before, but now it happens all the time. I can hardly have a full web surfing session without this annoying interruption.
    When I restart the app I usually get to the page I was reading so I don't understand what's going on.
    Does anybody have information about this issue? Any suggestions or solutions?
    Thanks

    Rick --
    Safari has never needed Rosetta to run.
    It fact, it makes it run agonizingly slow --
    or could cause it to crash. That's probably your problem.
    I you really need Rosetta to work with this app, your Math program is using really old technology,
    and was built to run on OS9, or even OS8.
    Example: Many of us used to use PageMaker for designing brochures.
    When Macs went to 10.2.8 or so, PageMaker couldn't run, so Apple included
    a faux environment on newer Macs, where old apps & games would run.
    That was about 5 or more years ago. The need for Rosetta is very very rare,
    as most all apps used today would be newer than 5 years old.
    Like Mulder said, a crash report might help identify the exact culprit.
    EDIT: Have you tried turning Rosetta off???? Just to test it??
    Message was edited by: ~Bee
    Message was edited by: ~Bee

  • Where does MAX store channel config such as names, input type, and scalers

    Where does MAX store the channel configuration such as the channel names, input type (volts, current, etc), and scaling info?
    Unfortunately, our hard drive failed and our Labview back up folder didn't include the MAX channel description/configuration.  Our hard drive is currently at a data recovery service and it would be much simpler if we could recover the file instead of re-creating all the channels within MAX.  Any help to find the actual location and file name/s would be greatly appreciated.
    We are currently using Labview 7.1 on an XP platform that is now freshly installed.  Once I complete the install, I plan on making a ghost image of the drive to prevent this from every happening again
    Thanks

    Thank you for contacting National Instruments.
    I believe the information you want is contained in this KnowledgeBase article:
    Where Can I Find the Default NI-DAQ Configuration File (niconfig.daq) for Measurement & Automation Explorer (MAX) Under Windows 98/2000/XP?
    http://digital.ni.com/public.nsf/websearch/AAB44ACFF1A81F5286256C6C000035CC?OpenDocument
    Michael P
    National Instruments

  • Where does Messages store attachments on the iPad?

    Where does Messages store attachments on the iPad?
    some photos are quite large, so it would be good to know where they go, and how to manage the app.... ;)

    Managing memory usage is not possible because the user does not have access to the file structure (unless you have jail broken your iPad that is).

  • Where does iPhone store backups in Mac and Windows?

    Sorry I could not find the answer elsewhere.
    Where does iPhone store backups on Windows and Mac?
    Can the location be changed?
    Thanks!

    Mac:
    Library/Application Support/MobileSync/Backup/
    Windows:
    C:\Documents and Settings\username\Application Data\Apple Computer\MobileSync\Backup
    (Note you may need to turn on show hidden files and folders to see it on Windows)
    As far as I know, you can't change it.
    Good Luck!
    EDIT: Too slow to post :P.

  • Where does Keynote store the audio files in a presentation

    I have slides with individual audio files. When I import or attach the file and then save the presentation, it changes the file name to .mov extension. Where does Keynote store those files? I would like to edit the saved Keynote version, but cannot locate the .mov file!

    I'm not exactly sure of what you want to do, and I'm not sure if my answer is the most efficient, or even wholly correct, but here goes ...
    When you save a KN presentation (a KN doc) which includes an audio (or movie) file, you can save it 2 (3?) ways: either without or with the file being copied into the document, or as a "package". In a test file I just made with 3 white slides (title, slide with song, second slide with song) the results:
    without: 3.8 MB; with: 9.4 MB; package: 9.4 MB. The essential difference, aside from size, is that if saved without, if you play the KN on another machine which doesn't have those audio files on it, the audio won't be there. To make the KN truly portable, you must save with, or as a package. (I'm not too sure of the concept of package in KN. In PP, saving as a package means you end up with a folder, which contains the PP and the media files, each as separate entities. Saving a KN package yields not a folder but a file, which looks to me identical to the result achieved by simply saving with, and seems to behave identically, as well.) The audio file you used will in any case remain where it was before you used it, but, if the KN doc is saved with, or as a package, a copy of it will go into the KN doc.
    But then, what do you mean by "edit"? What do you want to edit, the KN presentation, or the audio file within it? If the former, I don't understand where the problem might be. If the latter: using the QT inspector within KN, you can change the length of the audio file (where in the song it starts and stops), whether to start it on click, or automatically after transition, or to loop it. If you wanted to do some other, more exotic audio editing, like reverbs or other effects, I'd do that on (a copy of) the original audio file (found wherever it was before) with another app (GarageBand, for instance), and then I'd replace the first, non-edited, version of the audio file in the KN doc with that.
    Have I missed something?
    Message edited by gbdoc: maybe someone will chime in to clarify the difference between "saved with" and a "package"

  • Where Does Lightroom Store  Catalogs, Previews, and Backups?

    1.   By default, where does LR store:
    a. Catalogs (.lrcat)
    b. Previews (.lrdata)
    c. Backups of Catalogs and Previews
    2.  Can these locations be changed?
    2a. If so, how does one specify where LR will store each of the above?
    3. Is there a specific relationship of location the Catalog, the Preview, and the Backups, or any partial combination of those three,  must remain in?
    3a. If so, what is/are that/those relationships?

    a) By default in the Lightroom folder within My Pictures / Pictures
    b) Always in the same folder as the catalogue
    c) Wherever you tell it - which should be somewhere different. No backup of Previews.
    Re 2, just move the catalogue in Explorer / Finder, double click it. If you didn't move the Previews, LR starts a new one in the same folder as the catalogue, following (b) above.
    Re 3, answered above. Backups can / should be elsewhere and it's your choice where.
    Notice that in Catalog Settings there's a Show button that reveals where your catalogue is.

  • Where does iPhone store contacts?

    Hello,
    I will be in a different country for a few days and I will buy a SIM card from a different operator over there.
    Where does iPhone store contacts? Will my contacts stay on the phone with the new SIM card?
    Thank you.

    Contacts are stored on the device. The iPhone does not store contacts on the SIM. Make sure you have been backing up the device and syncing your contacts with a supported application on the computer or iCloud or other cloud service. Changing the SIM will not affect your contacts.

  • Does someone know information about Company name:TianMei Electronic Trade Co., Ltd Address:Anbao Building No.28 street, quanzhou , FUJian, China.Is it Legit to buy there or not? or what information you have???please answer

    Does someone know information about
    Company name:TianMei Electronic Trade Co., Ltd
    Address:Anbao Building No.28 street, quanzhou , FUJian, China
    Pleas abswer is it legit or not?
    Does someone have got any experience with that company?
    Any information is welcome?
    Or is it somekind on cheating ?`?
    Do i get there a legit iphone or somekind of Chinese knock offs?
    <Email Edited By Host>

    You can look for authorized Apple resellers here:
    https://locate.apple.com/cn/zh/
    If you have any doubts about any reseller, I strongly advise that you not purchase from them. Buy your iPhone directly from Apple and you will then have no worries.
    Regards.

  • TS4036 where does icloud store my mac osx recovery key?

    where does icloud store my mac osx recovery key for file vault?

    Note that you have to have specifically chosen to store the key with Apple at the time you created the FileVault encryption, and chosen security questions so that you can identify yourself when you come to retrieve it. If you did not store it with Apple in this way and do not have a record of it elsewhere then you cannot proceed. All this has nothing to do with iCloud and the process is not automatic.

Maybe you are looking for