Report on the APEX users and workspaces...

How are stored the apex users... is there a table that I can access...
I would like to create a report in my OBIEE that displays what users exist in what workspaces apex (apex security)...

Hello

Users of the workspace are stored in table.
If you are on version 3.2, something like

SELECT user_id,
  user_name,
  first_name,
  last_name,
  security_group_id,
  apex_util.find_workspace (security_group_id) AS workspace
FROM apex_030200.wwv_flow_fnd_user

Of course, you must have privilege to query this table

Check also check WWV_FLOW_USERS

BR, Jari

Tags: Database

Similar Questions

  • UTF8 National characters in the reports of the APEX

    Hello

    We have a table of type NVARCHAR2 column (200), which contains characters russion (utf8).

    It is stored and displayed correctly in our development tools.

    However, in the reports of the APEX (Classic and IR), the values are truncated. It's the same thing when you make a SELECTION in the SQL workshop.

    Once the setting (SELECT * FROM NLS_DATABASE_PARAMETERS):

    PARAMETER VALUE
    NLS_NCHAR_CHARACTERSETAL16UTF16
    NLS_LANGUAGEAMERICAN
    NLS_TERRITORYAMERICA
    NLS_CURRENCY$
    NLS_ISO_CURRENCYAMERICA
    NLS_NUMERIC_CHARACTERS.,
    NLS_CHARACTERSETWE8ISO8859P1
    NLS_CALENDARGREGORIAN
    NLS_DATE_FORMATDD-MON-RR
    NLS_DATE_LANGUAGE

    AMERICAN

    APEX Application is created by default, no globalization setting is changed.

    Any ideas?

    Best regards

    Martin

    APEX and UTF-8 FAQ autour?

  • The number of characters in the CLOB column is supported by the report of the APEX

    Hello

    Actually, I have a report of the Apex based on CLOB column, which includes data whose length exceeds 10,000 characters.

    up to 10,000 characters, it works fine, but once it get records with characters more than 10 + lift

    ORA-06502: PL/SQL: digital or value error: character string buffer too small

    Thank you and best regards,

    Ashish

    2902196 wrote:

    Please update your forum profile with a recognizable username instead of "2902196": Video tutorial how to change username available

    Always include the information referred to in these guidelines when you post a question: How to get the answers from the forum

    Actually, I have a report of the Apex based on CLOB column, which includes data whose length exceeds 10,000 characters.

    up to 10,000 characters, it works fine, but once it get records with characters more than 10 + lift

    ORA-06502: PL/SQL: digital or value error: character string buffer too small

    The maximum size of a column report CLOB value is 32 KB. However, the maximum size for the content of the line of the full report is also 32 KB (including the HTML markup), so you can be hitting this limit because of the size of your 10 K CLOB data + the rest of the line.

    According to the database character set and the characters which that contains data, the character encoding may use more than one byte to represent a character.

  • How do the query select outer join to a report of the APEX

    Hi all

    I'm Ann.

    I have a select statement that is used to calculate statistics for a month (October 2012 in this example)
    Select ph.phase_number
    sum ((case
    WHEN ph.date_finished IS NULL or ph.date_finished > last_day (TO_DATE (' ' Oct 2012 ', ' MY YYYY' "))
    THEN last_day (TO_DATE (' ' Oct 2012 ', ' MY YYYY' "))
    Of OTHER ph.date_finished
    END)
    (-ph.date_started + 1) / count (def.def_id) as avg_days
    Ph phase_membership
    inner join court_engagement this on ph.mpm_eng_id = ce.engagement_id
    join in-house defendant def on ce.defendant_id = def.def_id
    where def.active = 1
    and ph.date_started < = last_day (TO_DATE (' ' Oct 2012 ', ' MY YYYY' "))
    and ph.active = 1
    and UPPER (ce.court_name) LIKE '% '.
    Rollup Group (phase_number)
    ;

    The result is as below
    Phase_Number AVG_DAYS
    Phase One 8.6666666666666667
    Phase two 14.6
    Phase three 12
    11.4615365

    I have another list of selection mainly the list of months between two date value.
    Select to_char (which_month, 'LUN YYYY') as display_month
    de)
    Select add_months (to_date (' ' August 2012 ', ' MY YYYY' "), rownum-1) which_month
    of object
    where
    rownum < = months_between (to_date (' ' Oct 2012 ', ' MY YYYY' "), add_months (to_date (' ' August 2012", "MY YYYY"), - 1))
    order of which_month)

    The query result is as below

    DISPLAY_MONTH

    AUGUST 2012
    SEP 2012
    OCT 2012

    Is it possible I can join these two select statement above to generate a comparable result:

    Days of month Phase number Avg
    August 2012 Phase One 8.666
    Sep 2012 Phase One 7.66
    Oct 2012 Phase One 5,66
    August 2012 Phase two 8.666
    Sep 2012 Phase two 7.66
    Oct 2012 Phase two 5,66
    August 2012 Phase three 8.666
    Sep 2012 Phase three 7.66
    Oct 2012 Phase three 5,66

    Or
    Days of month Phase number Avg
    August 2012 Phase One 8.666
    August 2012 Phase two 7.66
    August 2012 Phase three 5,66
    Sep 2012 Phase One 8.666
    Sep 2012 Phase two 7.66
    Sep 2012 Phase three 5,66
    Oct 2012 Phase One 8.666
    Oct 2012 Phase two 7.66
    Oct 2012 Phase three 5,66

    And it can be controlled by Phase number or month.
    My other colleague suggested I should use a left outer join, but after having tried many ways, I'm still stuck.

    I tried select is
    Select a.display_month, b.* in)
    Select to_char (which_month, 'LUN YYYY') as display_month
    de)
    Select add_months (to_date (' ' August 2012 ', ' MY YYYY' "), rownum-1) which_month
    of object
    where
    rownum < = months_between (to_date (' ' Oct 2012 ', ' MY YYYY' "), add_months (to_date (' ' August 2012", "MY YYYY"), - 1))
    order which_month)) a left outer join

    (Select to_char (ph.date_finished, 'MY YYYY') as join_month, ph.phase_number)
    sum ((case
    WHEN ph.date_finished IS NULL or ph.date_finished > last_day (TO_DATE (a.display_month, 'MY YYYY'))
    THEN last_day (TO_DATE (a.display_month, 'MY YYYY'))
    Of OTHER ph.date_finished
    END)
    (-ph.date_started + 1) / count (def.def_id) as avg_days
    Ph phase_membership
    inner join court_engagement this on ph.mpm_eng_id = ce.engagement_id
    join in-house defendant def on ce.defendant_id = def.def_id
    where def.active = 1
    and ph.date_started < = last_day (TO_DATE (a.display_month, 'MY YYYY'))
    and ph.active = 1
    and UPPER (ce.court_name) LIKE '% '.
    To_char (ph.date_finished, 'MY YYYY'), group (phase_number) rollup) b
    On a.display_month = b.join_month

    but then I get an error
    SQL error: ORA-00904: "A." "" DISPLAY_MONTH ": invalid identifier

    I need to view a report on the APEX with option for people to download at least format CSV.
    Already 1 inteactive report in the page, so I don't think adds another interactive report without using the iframe trick.

    If any of you have any ideas, please help.

    Thank you very much.

    Ann

    Hello Ann,.

    Frank has done a very good job. I am also impressed.

    Is in regard to your correction to his question, the problem is on this replacement you did

    last_day(TO_DATE(am.which_month,'MON YYYY'))
    

    AM.which_month is already a date type, and you don't need to convert it to this day.
    Here is the correct way:

    last_day(am.which_month)
    

    There are also sometimes with the data you've posted have no line for this month. So I also added a function NVL to display 0 under avg_days for these cases.

    Here is my corrected query:

    DEFINE startmonth = "Aug 2012";
    DEFINE endmonth   = "Oct 2012";
    WITH  all_months  AS
    (
       SELECT ADD_MONTHS(to_date('&startmonth','MON YYYY'), ROWNUM-1) AS which_month
       ,      ADD_MONTHS(to_date('&startmonth','MON YYYY'), ROWNUM  ) AS next_month
       from all_objects
       where
       rownum <= months_between(to_date('&endmonth','MON YYYY'), add_months(to_date('&startmonth','MON YYYY'), -1))
    )
    SELECT TO_CHAR (am.which_month, 'Mon YYYY')  AS month
         , ph.phase_number
         , NVL(sum ( (CASE
                     WHEN ph.date_finished IS NULL OR ph.date_finished > last_day(am.which_month)
                     THEN last_day(am.which_month)
                     ELSE ph.date_finished
                  END
                 ) - ph.date_started + 1
               ) / count(def.def_id), 0) as avg_days
      FROM all_months am
           LEFT OUTER JOIN  a_phase_membership  ph  PARTITION BY (ph.phase_number)
              ON  am.which_month <= ph.date_started
              AND am.next_month  >  ph.date_started
              AND ph.date_started <= last_day(am.which_month)  -- May not be needed
              AND ph.active = 1
           LEFT OUTER JOIN  a_engagement  ce
              ON  ph.mpm_eng_id = ce.engagement_id
              AND ce.court_name IS NOT NULL  -- or something involving LIKE
           LEFT OUTER join  a_defendant     def
              ON  ce.defendant_id = def.def_id
              AND def.active = 1
     GROUP BY ROLLUP(phase_number, am.which_month)
     ORDER BY  am.which_month
            ,  ph.phase_number
    ;
    
    The output is:
    MONTH    PHASE_NUMBER           AVG_DAYS
    -------- -------------------- ----------
    Aug 2012 PHASE ONE                     0
    Aug 2012 PHASE THREE                   0
    Aug 2012 PHASE TWO                     0
    Sep 2012 PHASE ONE                    12
    Sep 2012 PHASE THREE                   1
    Sep 2012 PHASE TWO                     9
    Oct 2012 PHASE ONE                     8
    Oct 2012 PHASE THREE                   0
    Oct 2012 PHASE TWO                    14
             PHASE ONE                    11
             PHASE THREE                   1
             PHASE TWO                  11.5
                                  9.71428571
    

    I don't know if that's really what you want. In the case check it and let me know.

    Kind regards.
    Al

  • Most of the property windows and workspaces do not appear

    Just installed Captivate 5 on Mac 10.6.4, but most of the property windows and workspaces do not appear.

    With only the skin editor and view of connection, I was able to properly record a demo of very simple software. After watching a few tutorials, I realized that there is more to this product that I see. Nothing appears when I try to choose a workspace, display the Filmstrip window, etc. Help?

    Hi Katherine,

    It seems that the preferences of the Captivate has been corrupted. Can you try to delete the preferences for the following location?

    Location of preferences: /Users/ [username] / Library/Preferences

    In this folder, a folder named Adobe Captivate 5 must be present. You can go ahead and delete it.

    Try launching Captivate after deleting this file. Hope it works!

    Concerning

    Antonio Banderas Michel

    http://blogs.Adobe.com/Captivate

  • String after ' &lt; ' character is not in the reports of the Apex

    Hello

    I've created a report where a column has ' < ' and ' > ' symbol included in this one.
    example of
    1. abc < def girou
    2 abc < def girou
    3 abc > def girou

    If assumes that the data for the column "xyz" in table 1 has 3 data into it above.

    In a report, I show this column with a simple select statement "xyz select from table1.
    the output like this

    1. abc
    2 abc < def girou
    3 abc > def girou


    The report ignores the string after ' < ' and works fine if I have space.

    Can someone help me with this please

    Published by: user12589255 on July 27, 2010 14:39

    Published by: user12589255 on July 27, 2010 15:21

    Hi user12589255,

    I think he just change report column display in the "Standard report column" type to "escaped...". "to overcome this problem.

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins

  • Call Javascript in the header of the report of the Apex

    Hello
    I have a javascript function in my html page header I would like to call from my report using a link. I tried to configure the URL of the link column in the report attributes box: javascript:send_sub_email('sharon'). It does not work. My other problem is to know how to pass the value of column of the report to the javascript function. Does anyone know how to do this? All the suggestions and help is greatly appreciated.

    Sharon

    Sharon,

    You should have your JS function in the header section of the HTML Page...

    Lets say your a column named 'EMP_ID' report and now in your report, change the link column and the target set in the updated URL section form URL and after

    javascript:send_sub_email('#EMP_ID#');
    

    So when the user has clicked on the link, it'll pass respective EMP_ID to JS function

    See you soon,.
    Hari

  • error reported from the transport layer and the error description was impossible to extract

    Hi, can someone please explain how to get rid of the pop-up message when the computer starts up:
    error reported from the transport layer and the error description could not be found! the message has been lost
    Windows XP Virgin internet net gear wireless. I searched on the internet - nothing except suggestions, this is the internet
    connections but is not working okay I tried microsoft fix
    Thank you john

    Hi, I just started to use the hard drive that had the problem, it's still there. The problem is with the raid card. (no problem on other drives) In system config, starting there are two enteries: SATARAIDS and silcfg. I checked the SATARAIDS, rebooted

    missing message. I deleted all the files SATARAIDS and silcfg. my computer, properties, hardware - deleted. deleted the folder in program files. did a scan to remove any files or file fragments on the raid drivers. I did not know I had lefe the cd in the drive for the raid drivers I have in yesterday. I rebooted.
    after reboot, there not says found new hardware "raid card" perhaps because the disc was in the drive and it automatticly installed drivers. FIXED
    NO MORE ANNOYING MESSAGE
  • My wife is the administrator user and she forgot her password and she did not save what we can and there are only standard users on this PC, what can we do?

    My wife is the administrator user and she forgot her password and it does not back up and there is only standard users on this PC, what can we do?

    If your wife was using his account with "computer administrator" privileges, and then use the built-in account named "Administrator".

    By default, the built-in account named "Administrator" doesn't have a password.  If you have XP Pro, you can access the administrator account (with no other connected users) Welcome screen by pressing CTRL + ALT + DELETE twice to bring up the "classic" logon window  Enter the administrator user and leave the password empty box.

    In XP Pro or XP Home, you can access the administrator account by restarting mode without fail (repeatedly press F8 to leave immediately after the computer starts / restarts; if you see the Windows logo, you waited too long and you will need to try again).  Once Windows starts in Mode safe mode, the administrator account will appear on the Welcome screen.

    Once you are in the administrator account, go to control panel > user accounts to reset the password of an account with "computer administrator" privileges or create a new user account with privileges "computer administrator."

    If the password that you lack to the built-in, ' administrator' account politics of Microsoft for these forums forbid us to provide you with any information that might help you to bypass this password.

  • Locking down system and now get error 'Could not load the profile user and loading of temporary user account' when you try to open a session

    When my computer is on suddenly power went and my system also closed that crashed without logging my user account. now, I started my computer and I tried to open a session in my account (having only one user account) but he goes to the temporary login account, it displays "could not load the profile user and loading of temporary user account if you make changes to this user account it will be erased when you connect after." What can I do? How can I solve it? I use windows xp.

    Original title: Temp user login

    Hi indhru,

    1. Did you the latest changes on the computer?
    2. You have security software installed on the computer?

    Try the step after the connection to the temporary account below.

    1. Click on the Start menu.
    2. Type Regedit in the Run dialog box, and then press enter
    3. Access
      HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
    4. There is 1 line for each profile. Especially if a profile is bad there are 3 things worth visiting:
    • Make sure that the name of the key are not ends in ".bad".
    • Make sure the RefCount value is 0
    • Ensure that the status value is 0
  • How to unlock the c: drive. I have only access to the folder users and subfolders.

    I have only access to the folder users and subfolders.  Everything I tried was "access denied."  I can't get to the root of c:.

    Hi, Scrivmark

    The default C: drive system is not intended to access directly by users and therefore users have restricted access to its root in the premeditated or premeditated damage prevention vital system files. If you are an administrator you can allow full access to your account to all or specific files on drive c (including a root folder) by editing its ' authorization of the lists by right-clicking on a file and choosing "Security."
    If you are not an administrator, you should ask another user whose account is Administrator (or equivalent) privileges to access the interesting files to your account.
    In both cases, you must understand damage system files, you can do.

    This suggestion is the intention that your computer is virus-free.

  • Power outage required that I put in place a new user in Vista that I did. Now I can't find the original user and associated files. All files seem to be missing. Help?

    Laptop must have been left on. Last night power Outtage. I went back and put the computer to find guests requiring that I created a user, I did. Now, I can't find the original user and all files seem to have disappeared.  Have Vista

    Hello

    1. don't you make changes on the computer before this problem?
    2. do you remember the exact and complete message on this line?

    Check if you can find the user original files of accounts in the following path:
    C:\Users\[user account name]

    The article could be useful to you.
    Difficulty of a corrupted user profile
    http://Windows.Microsoft.com/en-us/Windows-Vista/fix-a-corrupted-user-profile

  • I have the permissions user and shared II records security standards for WIN 7

    I have

    WIN7 TO PERMISSIONS USER

    Can I remove the authenticated user and the generic "users."  I am the only user/administrator on this PC at home.

    • Authenticated users
    • SYSTEM
    • (Administrators)
    • (Users)

    Is - is this normal with the sign $?  Can I remove the CPI and users?

    II

    SHARED FOLDERS (computer management)

    • ADMIN$ remote administrators
    • Sharing by default $ CAN
    • IPC$ remote IPC
    • Users

    I have a standard WIN 7 concern.  I'm the only user.  I want to clean and remove everything that is not standard.

    Please notify.

    Thank you.

    LW

    Those who are normal and necessary for the proper functioning of many systems and processes. For example, even if you are the only user, good number of system background process running as another user account to provide IBC sand (insulation) to avoid vulnerabilities.

  • I forgot my password to get on my computer like im the main user and have my password need anything I don't have a reset disk

    I forgot my password to get on my computer like im the main user and have my password need anything I don't have a reset disk please help

    Hello, sxyria

    Unfortunately, we are unable to provide assistance in bypassing the security or the recovery of passwords.

    David
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Where the local users and groups in Win 7 Home Premium? I don't find it in computer management.

    Where the local users and groups in Win 7 Home Premium?  I don't find it in computer management.

    Elevate your privileges permanently would defy the purpose of UAC and is therefore not available. There are two ways to start a command prompt:

    1. click on the start planet.
    2. type the three letters cmd in the search box.
    3. press on Ctrl + Shift + Enter
    4. click on "run as Administrator".

    or:
    1. create a shortcut on the desktop for cmd.exe.
    2. right click.
    3. click on run as administrator

Maybe you are looking for