Which table/view stores information on APEX user groups?

Hi All,
I need to list all the APEX users, their roles(i.e. IS_ADMIN or IS_DEVELOPER) and the user groups they belong to.
Can some one kindly share the information on which tables/views will have all this information?
I am aware of apex_workspace_users which tells me about the roles (i.e. IS_ADMIN or IS_DEVELOPER).
Thanks in advance.
Annie

Thanks jari for your help.
I did manage to get the information on user groups by using APEX_UTIL.get_groups_user_belongs_to function.
However there are two issues in that:
Firstly, the requirement is that i should be able to retrieve this details by executing queries in SQLPPlus and not APEX WS. However, executing APEX_UTIL.get_groups_user_belongs_to function in sqlplus returns no data. That means there are certain permission issues on the underlying tables.
Secondly, the user groups are listed in a single row and I'd like the result in the multiple rows.

Similar Messages

  • Which table/view stores the Driver values for each project

    Hi,
    I want to report on projects and drivers and the rating (Extreme, Moderate, low etc.) that have been assigned to each project.  I cannot seem to local the correct table/view.  I found the driver table and analysis tables but not one that has
    a project and ratings.
    What is the table / view?
    Regards Andrew
    Andrew Payze

    Hi Andrew,
    That would be the MSP_Project_Impact_values in the published schema.
    Please note that querying this particular schema is not supported.
    Hope this helps
    Paul

  • OTA/OLM 11.5.10 : which tables/views hold info for Ext, Int Training , Certifications.

    Hello,
    which tables/views stores information about .
    Internal Training history
    External Training History
    Certifications
    in R 11.5.10 ?
    I found the following tables
    OTA_NOTRNG_HISTORIES_V  -- supposedly stores external training history, is this the right one for external training ?
    OTA_CTRNG_HISTORIES_V  -- stores combined training history , how to pick 'Internal' history from this view , if this is the right one ?
    OTFV_COMBINED_TRAINING_HISTORY -- stores combined training history , how to pick 'Internal' history from this view , if this is the right one?
    could not find any table in 11.5.10 for certifications.
    Thanks

    FSKB     G/L Account Posting
    this transaction is not working

  • Which table/view storing the page information?

    Can someone tell me which table/view I can query to get the page name, id, and authorization scheme assigned to it?
    Thank you kindly
    Jean drouin

    desc flows_020100.wwv_flow_steps
    Name Null Type
    ID NOT NULL NUMBER
    FLOW_ID NOT NULL NUMBER
    TAB_SET VARCHAR2(255)
    NAME NOT NULL VARCHAR2(255)
    ALIAS VARCHAR2(255)
    PAGE_COMPONENT_MAP VARCHAR2(255)
    STEP_TITLE VARCHAR2(255)
    STEP_SUB_TITLE VARCHAR2(255)
    STEP_SUB_TITLE_TYPE VARCHAR2(30)
    FIRST_ITEM VARCHAR2(255)
    WELCOME_TEXT VARCHAR2(4000)
    BOX_WELCOME_TEXT VARCHAR2(4000)
    BOX_FOOTER_TEXT VARCHAR2(4000)
    FOOTER_TEXT VARCHAR2(4000)
    HELP_TEXT CLOB()
    STEP_TEMPLATE NUMBER
    BOX_IMAGE VARCHAR2(255)
    REQUIRED_ROLE VARCHAR2(255)
    REQUIRED_PATCH NUMBER
    HTML_PAGE_HEADER CLOB()
    HTML_PAGE_ONLOAD VARCHAR2(4000)
    ALLOW_DUPLICATE_SUBMISSIONS VARCHAR2(1)
    ON_DUP_SUBMISSION_GOTO_URL VARCHAR2(4000)
    PAGE_IS_PUBLIC_Y_N VARCHAR2(1)
    PROTECTION_LEVEL VARCHAR2(1)
    SECURITY_GROUP_ID NOT NULL NUMBER
    ERROR_NOTIFICATION_TEXT VARCHAR2(4000)
    ID2 NUMBER
    LAST_UPDATED_BY VARCHAR2(255)
    LAST_UPDATED_ON DATE
    GROUP_ID NUMBER
    PAGE_COMMENT VARCHAR2(4000)

  • Which table/view has the schema details?

    Hi All,
    In which table/view I can view the different schemas present in the database? Should I sign-in as SYS or any user can read from that table?
    Please help...
    Thanks in advance...

    DBA_USERS will tell you the users that have been created in the database. Some or all of those users may have objects in their schemas, which you can see via DBA_OBJECTS.
    You don't need to be a DBA to query those views, but you do need appropriate privileges. Depending on your Oracle version, you'd need either the SELECT_CATALOG_ROLE role, the SELECT ANY DICTIONARY privilege, or a direct privilege grant on the particular views you're interested in.
    Justin

  • Make tables, views etc, aviable for public users, how could sql look like?

    Hey specialists,
    I produced under my username several tables, views and sequenzes. How could sql or Psql look like to create for all items a public synonym.
    where could I read more information about giving privilegs for tables etc to other users, for instance in dba-studio
    regards
    robert

    Hi!
    Create a sql script for sql*plus like:
    set head off echo off feedback off pagesize 999 line 120 trimsp on
    spool crepsn.sql
    select 'create public synonym ' || object_name || ' for '|| object_name || ';' || chr(10)
    from  user_objects
    where object_type in ( 'TABLE', 'VIEW', 'SEQUENCE', 'PACKAGE', 'PROCEDURE', 'FUNCTION' )
    and   object_name not like 'BIN$%'
    and   object_name not in ( select synonym_name
                               from   sys.dba_synonyms
                               where  owner = 'PUBLIC'
                               and    synonym_name = object_name
                               and    table_owner =  user )
    order by object_type, object_name
    spool off
    prompt creating Public Synonyms
    set termout on feedback on
    @crepsn
    set echo offThis creates public synonyms for the given object types of objects the current user is the owner of.
    If you get an error that a public synonym is already defined, the obectname
    is already in use by another user in the database.
    After this you have to give other users / public access to your objects via grants.
    Regards

  • How to get the List of Database Objects (Table/View) for a given APEX Page.

    Hi,
    I have an application and that consist of pages like page1,2,3,.....
    *1.* I want a report which can give me the list of all the Pages1,2,3,....
    I am using the following query to acheive this.... THIS IS FINE..
    select a.workspace, a.owner, a.application_name, b.page_id, b.page_name
      from apex_applications a,
           apex_application_pages b
    where a.workspace = b.workspace
       and a.application_id = b.application_id*2. Now, I want for each individual page*, the list all the database objects (tables/views), which that page is using.
    I am using ALL_DEPENDENCIES , but I am not getting the result.
    So, want to know if there any view/table, where I can get the Application Pages & there database object list...
    Thanks,
    Deepak

    Hari,
    Thanks for the response.
    The view APEX_APPLICATION_PAGE_DB_ITEMS will only give me the table name related to any Page Items defined to that page..It will not give me all the database objects..
    suppose we have a Page, having a report based on multiple tables and there is no Page items defined on that page, we will not have any value in this ....DB_ITEMS table. same thing if we have define some PL|SQL(using some table/view) in a Process, that will not be populated in .....DB_ITEMS table. I want some thing like all the database objects (table/views/function/procedure/.....) for a particular Page ID.
    Thanks,
    Deepak

  • Documentation on table, view and procedures of the user portal

    Where can I find documentation on table, view and procedures of the portal user?
    Thanks.

    PL/SQL API doc here :
    http://www.oracle.com/technology/products/ias/portal/html/plsqldoc/pldoc1014/summary.html
    VIEWS doc here :
    http://download-uk.oracle.com/docs/cd/B14099_19/portal.1014/b14135/pdg_cm_api.htm#CHDIFAGE

  • Table that stores information about function module

    Hi All,
    I know that table TFDIR stores primary information about any function module.
    Could anyone tell me where the code of that function module gets stored in?
    Also.. If I want to write an ABAP code to read the function module code then what is the best possible solution?
    Thanks in advace and any answer will be appreciated.
    Regards
    Jignesh

    Hi All,
    Apologies for the same!
    The codes are not stored in any table, they are stored as cluster.
    To read the code, you can use READ REPORT.
    But there you must provide the Include Name For Example , If you want to read the code of READ_TEXT,
    READ REPORT 'LSTXDU01'.
    You can get this include name inside include LSTXDUXX
    Table TFDIR also stores the program name and include number.
    You need to truncate first 3 char 'SAP' and append UXX at the end and that will be your program name.
    Then we can use READ REPORT!!!
    Regards
    Jignesh

  • When i Hold the document (in MIGO -GRN) which table its stores

    Hi,
    which table we get this temporary contains for printing purpose .
    Edited by: Annasaheb More on Sep 23, 2008 8:30 AM

    Hi,
        The tables are MKPF and MSEG which store when MIGO GRN is done
    Regards

  • Which table holds INFOSET information?

    Hi,
    Does anybody know which table holds information about infosets?
    For a certain type of analysis I need to find out which source-objects are used in an InfoSet by means of an automated (ABAP) process.

    Hi
    Actually I dont have any Infoset created.
    But if I am not wrong, just "DISPLAY THE DATA" through tyhe particular INFOSET object.
    Check whether you can see the any TABLE NAME...??But I dont think so..It is also more like Multi Provider.
    Just the difference is that Multi Provider...UNION OF SETS and Info set  uses JOINS of SETS.
    Also you dont need run the Automate process for INFOSET.
    Once the INFOPROVIDER or OBJECT you are using in Infoset updated already, then you would be able to see DATA.
    Hope this helps. Also check for more info in SAP HELP.
    check this link:
    http://help.sap.com/saphelp_nw70/helpdata/en/ad/2225391d4f000be10000000a114084/frameset.htm

  • Which table/view holds Oracle procedure code?

    On a course a while back, I remember being told one could query an Oracle table/view to list PL/SQL code against a procedure/package.
    I cannot recall this table/view - any help please?
    Thanks

    Hi,
    Also, please not that editing from dba_source directly can be a real pain, and ther new SQL Developer tools has a cool interface for editing PL/SQL source code:
    http://www.oracle.com/technology/software/products/sql/index.html

  • CO, which table decribes "cost center" and "cost center group"?

    Hello experts,
    now I have the transaction KP06. Maybe through customizing the user has built a "cost center group" for some "cost center".
    In which table can I find out the relationship between the "cost center" and "cost center group" ?
    Thanks.
    RD
    Edited by: Marching Dai on Jun 16, 2008 2:05 PM

    Hi Arun,
    Please check this link
    http://www.erpgenie.com/abap/tables_fi.htm
    Please check CKPE --->CO-PC Cost Object Hierarchy: Individual Objects
    CSKA Cost Elements (Data Dependent on Chart of Accounts)
    CSKB Cost Elements (Data Dependent on Controlling Area)
    CSKR Resource master record
    CSKS Cost Center Master Data
    Best regards,

  • Apex user groups

    Hi,
    I created an application on Apex.oracle.com (v4) to familiarise myself on the tool. I had created 2 users called maryjane and and harryhill. I had created 2 user groups called DECISION_MAKER and RFO_READER. I had assigned maryjane to DECISION_MAKER and harryhill to RFO_READER quite easily.
    The version of Apex in my office V3.2.1. I tried to do the above. Can create the 2 users and 2 user groups. However, both maryjane and harryhill seems to be assigned to DECISION_MAKER and RFO_READER user groups by default. I can't see a way of removing harryhill from the DECISION_MAKER user group and maryjane from the RFO_READER user group.
    I will appreciate it very much if someone can tell me how I can do this in Apex V3.2.1
    Thanks.

    kawan2 in case your issue has not been resolved, here is what I did:
    I also have created 2 groups: one for full access and another one for restricted access. Now, when I edit any user, in the "User Groups" I see both groups. However only the highlighted one is the active one. So if you change the group by clicking on its name and then clicking on apply changes button, the user gets assigned to the different group.
    I hope this helps.
    Daniel

  • Interesting Information about Hyperion User Groups and Conferences

    Ed Roske has an interesting post on his blog, including a letter from John Kopcke (SVP of EPM at Oracle). There is a lot of content discussing the disbandment of the Hyperion User Groups and the absorption by OAUG with the new Hyperion SIG (Special Interest Group). In addition there is discussion of conference's focusing on Hyperion content.
    Take a look at http://looksmarter.blogspot.com/2008/06/john-kopckes-letter-to-hyperion.html
    Best Regards,

    Gary,
    Thanks for nice post

Maybe you are looking for

  • How Do I create an Admin account?

    Hi This sounds silly but.... How do I set up an administrator account ? I am using DW CS3 and ADDT and PHPMYADMIN I can create a table with a level_user field and al the other usual fields I can use the login wizard and / or the ADDT control panel to

  • Runtime error in IE 7

    A site I use has a pop up applelet window which works fine in IE 6 However I recently downloaded the IE 7 Beta version and, when using that, get a runtime library error and a fata errror in iexplore.exe, closing all windows if the error message windo

  • Does it matter who i use to register a domain name?

    thanks.

  • Rollup is going nowhere.

    Hi Gurus; I am having this issues sometimes for one of our cube. While doing the rollup for the aggregates it gets hunged and go nowhere. For example even for few hundreds records it's takes all nights all day if we keep the job and finally we have t

  • Jdbc excel connectivity

    can i connect to excl using java jdbc odbc connection and retrieve data from excel files if yes how