Find the folder name based on the View Name

Hi ,
I need to find out a Folder name based on a View Name . Basically i know the view Name and want to find out the Folder that is created in Discovrer based out of that view.
Does any one know of any EUL table that stores this relationship.
Thanks in advance for your help
Sunny

Hi,
Your requirement can be fulfilled using the following script:
SELECT bas.ba_name,
bas.ba_id,
obj.obj_name folder,
decode(obj.obj_type,
'COBJ',
'Complex',
'SOBJ',
'Simple',
'CUO',
'Custom',
'Unknown') AS obj_type,
decode(obj.obj_hidden,0,'Bare','Hidden') IS_HIDDEN,
obj.sobj_ext_table folder_source_object
FROM eul10g_us.eul5_ba_obj_links bol,
eul10g_us.eul5_objs ; obj,
eul10g_us.eul5_bas ; bas
WHERE obj.obj_id = bol.bol_obj_id
AND bas.ba_id = bol.bol_ba_id
BUT
As you can see from the SQL, only simple folders are mapped to objects.
This means that if the object is used inside a custom folder or complex folder you will not see it.
Tamir

Similar Messages

  • Query to find the Views and synonyms that are accessing through db_link

    HI all,
    Oracle 10g
    I need a Query to find the Views and synonyms that are accessing through db_link.
    ie.
    database A have the db_link to database B through a schema A
    now i need to find what are the Synonyms and views that are accessing through db_link either directly or indirectly..
    regards,
    Deepak
    Edited by: Deepak_DBA on Dec 10, 2010 5:38 PM

    On the second database (B) use this query to find the SQL which used by the schema A (DB LINK USER). Check the SQL_FULLTEXT column.
    select sql_fulltext,sql_id,module,parsing_schema_name,parsing_user_id,first_load_time,loads,users_executing,rows_processed,plsql_exec_time,sorts,fetches,invalidations,parse_calls,cpu_time,elapsed_time,disk_reads,buffer_gets
    from V$sqlarea
    where parsing_schema_name = 'A' --and to_char(first_load_time,'dd/mm/yyyy') like  '%11/08/2007'
    order by first_load_time desc;
    Regards
    Asif Kabir

  • I can not find my book marks tab/tool bar whatever you want to call it and nor can I find the view tab either.

    Some how my daughter got on the computer and either hide or deleted my bookmarks all together. I have looked through your support questions and now I find that I can not even find the view tab or button what ever you want to call it. Please help I need to find these ASAP.
    Thank You

    In Firefox 3.6 and later on Windows you can hide the "Menu Bar" via "View > Toolbars" or via the right-click context menu on a toolbar.
    Press F10 or press and hold the Alt key down to bring up the "Menu Bar" temporarily.
    Go to "View > Toolbars" or right-click the "Menu Bar" or press Alt+V T to select which toolbars to show or hide (click on an entry to toggle the state).
    See also:
    * [[Menu bar is missing]]
    * http://kb.mozillazine.org/Toolbar_customization

  • How to find the views created on a table..?

    Hi all,
    I am having one table name, EMP. I want to know what are the views created on this table. Is there any SQL query is there for this or any another
    way to find it.
    Thanks in advance.
    Pal

    You can use ALL_DEPENDENCIES for that:
    SQL> create view emp_v as select * from emp;
    View created.
    SQL> select name
      2  ,      referenced_name
      3  ,      referenced_type
      4  from   all_dependencies
      5  where  name = 'EMP_V';
    NAME                           REFERENCED_NAME                                                  REFERENCED_TYPE
    EMP_V                          EMP                                                              TABLE
    1 row selected.
    SQL> select name
      2  ,      referenced_name
      3  ,      referenced_type
      4  from   all_dependencies
      5  where referenced_name = 'EMP';
    NAME                           REFERENCED_NAME                                                  REFERENCED_TYPE
    EMP_V                          EMP                                                              TABLE
    EMP_TRG                        EMP                                                              TABLE
    2 rows selected.
    SQL> Keep in mind that it matters whether you restrict on NAME or on REFERENCED_NAME.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/statviews_1041.htm#sthref935
    edit
    Ah, spoonfeeding!
    Don't you want him to learn something, and to become independent?Now you made me feel guilty ;) ( don't know what Saubhik posted originally, but anyway...)
    I blame my currently terribly slow connection for that...
    Anyway, OP, always start a quick search from the docs first.
    Chances are you'll find your answer yourself.
    Homes:
    http://www.oracle.com/pls/db102/homepage
    http://www.oracle.com/pls/db112/homepage
    Edited by: hoek on Oct 15, 2010 2:53 PM

  • I can't find the View Tab to Zoom in and out! My font got so small and I don't know how to enlarge it without zoom!!

    My font on the facebook page has suddenly gotten very SMALL. In the past when this happened in Firefox, I simply went up to the bar and clicked on VIEW and then ZOOMED in or out. NOW there are NONE of the old wanted and loved tabs at the top of the new horrible page. WHERE is the VIEW tab or the ZOOM in and ZOOM out tab??

    Usually you have either the orange Firefox button or the classic menu bar, but not both at the same time.
    You should be able to switch back and forth this way:
    If the classic menu bar is not displayed, tap the Alt key to display it and then use
    View > Toolbars > Menu Bar
    to make it persistent. It should replace the orange Firefox button. To switch back, uncheck
    View > Toolbars > Menu Bar
    Does that work??
    Also, you can zoom by holding the Ctrl key and scrolling your mouse wheel. This is a finder adjustment, but can be harder to control.

  • To find the view link in the attribute definition

    Hi, I am using Jdev 10.1.3.2 and ADFBC. I have two master/detail view objects which have view link defined between them. Now I am trying to do deep copy, but I don't want to hard code the view link accessor name in the code. Here is the part of the code to get the list of attributes:
    ParentVORow newRow = (ParentVORow)parentVO.createRow();
    StructureDef def = newRow.getStructureDef();
    AttributeDef[] attrs = def.getAttributeDefs();
    Now view link accessor is in attrs, but how can I tell which attribute in attrs is a view link accessor without comparing to the attribute name?
    Thanks!

    Please see section "25.3.4.1 Determining the Attribute Kind at Runtime" of the ADF Developer's Guide for Forms/4GL Developers on the ADF Learning Center at http://www.oracle.com/technology/products/adf/learnadf.html for more information on this.

  • Finding the View associated with an Element

    Hi,
    Is there any way to find the javax.swing.text.View associated with an Element without iterating over every view and seeing if ( view.getElement() == element )?
    Thanks,
    Chris

    Don't know if this will help but you can use:
    TextUI ui = textComponent.getUI();
    View root = ui.getRootView( textComponent );
    View child = root.getView(???);
    So if you are iterating through each Element then I am guessing that child index of your Element would be the same index for the View.

  • Find the views where is used a "WHERE" statement

    Hello,
    I know that it is possible to search in a view with CTRL+F but is there also an option to search in al the views from a database for a statement in 1 step (not open each view)
    It will save a lot of time in my case
    Thanks
    for a reply

    Can you try this
    SELECT sm.object_id, OBJECT_NAME(sm.object_id) AS object_name, o.type, o.type_desc, sm.definition
    FROM sys.sql_modules AS sm
    JOIN sys.objects AS o ON sm.object_id = o.object_id
    where type='V' and definition like '%where%'
    ORDER BY o.type;
    --Prashanth

  • How  to find the view/page name in portal

    Hi All,
    I am new in SAP. I have to customize a Compensation page in HR module.
    Could some one help me to find out these things:
    --- How can I find out the page/iview name from portal which I want to customized i.e. I am on HR module of compensation page and I want to know the name of iview/page name.
    --- How can I start development for customization.
    Any type of help will be highly appreciated.
    thanks in advance,
    -Anand

    Hi,
    The component name is FITV_POWL_TRIPS. check this help for more details: https://help.sap.com/erp2005_ehp_03/helpdata/EN/46/51dd0698075e3fe10000000a11466f/frameset.htm
    hope this helps u,
    Regards,
    Kiran

  • Unable to find the Overview View in the DC pcui_gp~xssutils of ESS

    Hi All,
    In ESS application one work set is there with name Overview.When we click on the Overview workset then the page contain 5 links.When i am clicking on Who's who link i am getting error message Page cannot be found.Where as if we will direct click on workset Who's Who then we are able to see the page.
    I have imported the ESS track to NWDS.The i have synced the DC,then i have done Create project .Now i am able to see the DC xssutils in webdynpro explorer.I have expanded the Dc and check all the View present inside DC.However i am unable to find the View similar to Overview page.In Content Administration Overview iView is mentioned as WebDynpro iView.
    Can anybody tell me how i will get the Overview pafe in the DC?
    Is ESS standard package is not deployed to Track properly thats why i am not getting the all view inside the DC?
    Thanks
    Susmita

    The problem is solved by basis team.

  • How to grab the view that comes from Onyx?

    Hello,
      i started using Onyx project recently. That's really amazing what it does. I am wondering if there is some possibility to check the main view ... let my try to explain this.
    I want to change option for esxi5 box - advanced/Logging to external syslog server.
    While in gui i did my steps and Onyx prints the output:
    # ------- UpdateOptions -------
    $changedValue = New-Object VMware.Vim.OptionValue[] (1)
    $changedValue[0] = New-Object VMware.Vim.OptionValue
    $changedValue[0].key = "Syslog.global.logHost"
    $changedValue[0].value = "tcp://x.x.x.x:514"
    $_this = Get-View -Id 'OptionManager-EsxHostAdvSettings-456'
    $_this.UpdateOptions($changedValue)
    This is working as expected. I can throw this to powercli and it will set up the option. This will work only for that particular esxi box. I want to create a loop that will change this option for each esxi box in the cluster.
    The view that onyx is using is : "Get-View -Id 'OptionManager-EsxHostAdvSettings-456'"
    So he already knows the view/host moref .
    But if i would like to have this in a loop so it will do it for each host, so  how can i get to that kind of view ?
    So far i could only build something like
    foreach($vmhostview in (get-view -viewtype HostSystem -Searchroot (get-cluster "xxyyzz").id))
    $changedValue = New-Object VMware.Vim.OptionValue[] (1)
    $changedValue[0] = New-Object VMware.Vim.OptionValue
    $changedValue[0].key = "Syslog.global.logHost"
    $changedValue[0].value = "tcp://x.x.x.x:514"
    $number=$vmhostview.moref.split("-")[1]
    $_this = Get-View -Id OptionManager-EsxHostAdvSettings-$number
    $_this.UpdateOptions($changedValue)
    Which is totally stupid approach i belive although it's working.. splitting moref...
    After some time i noticed that
    http://pubs.vmware.com/vi-sdk/visdk250/ReferenceGuide/vim.option.OptionManager.html
    Says that OptionManager is the property from Config manager. So from that i could get the id of this view:
    ((get-vmhost myHost |get-view).ConfigManager.AdvancedOption).ToString()
    which will result in output : OptionManager-EsxHostAdvSettings-456
    So having this i could do my loop at the end:
    foreach($vmhostview in (get-view -viewtype HostSystem -Searchroot (get-cluster "xxyyzz").id))
    $changedValue = New-Object VMware.Vim.OptionValue[] (1)
    $changedValue[0] = New-Object VMware.Vim.OptionValue
    $changedValue[0].key = "Syslog.global.logHost"
    $changedValue[0].value = "tcp://x.x.x.x:514"
    $_this = Get-View -Id ($vmhostview.ConfigManager.AdvancedOption).ToString()
    $_this.UpdateOptions($changedValue)
    Now i do not know that it was just a luck that i found the location of this view name or is this the way how i am supposed to find the view id name. I am wondering how other people are handling that kind of case, if there is easier way to do it. If someone could share his experience i would really appreciate it.
    Regards,
    Greg

    There is no need to construct these View-Ids as you see them coming from Onyx.
    In fact I would write that script like this
    $changedValue = New-Object VMware.Vim.OptionValue[] (1)
    $changedValue[0] = New-Object VMware.Vim.OptionValue
    $changedValue[0].key = "Syslog.global.logHost"
    $changedValue[0].value = "tcp://x.x.x.x:514"
    Get-View -ViewType HostSystem -Searchroot (Get-Cluster "xxyyzz").ExtensionData.MoRef | %{
      $optMgr = Get-View $_.ConfigManager.AdvancedOption
      $optMgr.UpdateOptions($changedValue)
    Move the part that doesn't change with each HostSystem outside the loop
    The ConfigManager is an array with MoRefs that point to the respective Managers. You can just do a Get-View with a MoRef and it will return the object representing the Manager
    From the Manager object you can now call the method
    Btw, you better consult the latest SDK Reference.
    You can find the HostConfigManager here.

  • Where can I find the photos that were not import in iPhoto library?

    Hi,
    when I open iphoto it always asking me "  9 photos have been found in the iphoto library that were not imported. would you like to import them?
    it does't matter if I answer no ro yet  it will ask me again when I open next time.
    Thanks

    Go to the iPhoto library (by default in your pictures folder) and right click on it - show package contents - find a folder names import or importing and drag it to the desktop (do not make any other changes of any sort) - close the package and launch iPhoto - you should be find - check the import(ing) folder on the desktop and if it has any photos in it you want import them then trash the fokder
    LN

  • How do I customize the toolbar if I've removed the "view" tab from the toolbar?

    I was trying to customize my toolbar while working in excel and accidentally removed all of the tabs along the top toolbar (File, Edit, View, etc).  I can't figure out how to put them back as all of the help threads begin with "go to the View tab".

    Hi, ryanfromtorrance.
    I think I'm understanding what you did.
    You will need to start in the Excel menu bar at the very top of your screen.  The one with the  in the far left corner.  Find the View menu there. It should be three over from the  icon.
    Click View > Customize Toolbars and Menus...
    When the Customize Toolbars and Menus window opens, click the Toolbars and Menus tab, then make sure the checkbox next to Standard is checked.
    That should return the display of your toolbar when you close that customize window.
    I hope this is helpful.

  • How do I remove the "View Coupons" ad that appears in the upper right hand corner of the Firefox window.

    I find the "view Coupon" ad that appears in the upper right hand corner of the Firefox window a great annoyance. I would like to remove it from my computer. Can you tell me how to do this?
    Thanks you

    Go to Tools, Add-ons and disable "Panda Security Toolbar 2.0"

  • How to find database attribute names that correspond to page labels

    I've been tasked with creating one or more views to be used in creating reports. The users know data items by the labels on pages, not the database attribute names. So my dilemma is how to correlate the page labels to the database attributes.
    For example, there's a course details web page. It includes items labeled "Replacement Course", "Inherited Competency Update Setting" and "Attachments", among others.
    Focusing on "Inherited Competency Update Setting"... there's no database attribute called that. I've found COMPETENCY_UPDATE_LEVEL, but I don't know if that is it. And is an "inherited" one different than a non-inherited.
    I've googled about, and discovered that "Inherited Competency Update Setting" can be set by using a workflow named OTA_COMPETENCE_UPDATE_JSP_PRC and setting an attribute named HR_APPROVAL_REQ_FLAG. Further research has lead me to determine that HR_APPROVAL_REQ_FLAG is used only within the workflow system. I've found in SYS.ALL_SOURCE a package OTA_COMPETENCE_SS with a function that gets that attribute's value. It includes a query against WF_ACTIVITY_ATTR_VALUES which retrieves values of YES_DYNAMIC, APPROVAL, NO, YES or NOTIFYONLY. I've not found any code that uses the function.
    Using ALL_TAB_COLUMNS, I'd found COMPETENCY_UPDATE_LEVEL in OTA_OFFERINGS, which contains "APPROVAL" or null. So that may be what I seek, but I can't confirm it.
    I also have been unable to find the translation from "APPROVAL" to "Notification, Automatic Update after Approval" (assuming I'm correct and this is the field)
    I've found a Training Administration Technical Reference Manual for Release 11i, which contains information about the database, but I've found no corresponding document for Learning Management for 12.1 (Only installation and user guides).
    And this is many days' research to find one attribute. Which I'm not certain I've found.
    So, in this case in particular, or any case in general, how does one find the database name for an attribute, given the page label's text??
    Thank you
    Cornell

    Whoa, easier than I'd thought...
    When the page first shows up, there's the About This Page link, at the bottom, clicking it you get to the About Page.
    I noted two sections, Page Definition and Business Component References Details.
    I expanded Business Component References Details and found View Objects. There's a list of views used. I was dismayed that the views don't appear to be in the database. Of course, they're camelCased Java names of Java objects, not database names (although sometimes some of the camelCased tokens might correspond to parts of view names). They are, however, clickable and when clicked the definition shows up, and I was thinking that it would take a long while to find what I was seeking.
    But... Hit the Expand All link in Page Definition, do a find on page for the desired label, and there it is... a row with the label, view object name and attribute! Pay dirt!
    Then go to the Business Component References Details, find the View Object, click it, and there's the view :-) Find the attribute, then the table... easy peasy!
    Thank y'all again

Maybe you are looking for