Application alias shows up only when logged in as SYS

Oracle 11gR2
APEX 4.2.3
RHEL 6.3
select *
from   apex_applications
where  workspace = 'MY_WORKSPACE';
-- 0 rows
When logged into APEX as a user with a workspace assigned (MY_WORKSPACE) that contains an application (and an application alias), no rows are returned when given the application alias in the query above (see the above SQL).
But log in as SYS and the application alias is there -- i.e. a row is returned.
What could be causing this?

Many dictionary views limit rows returned by level of access.
For instance, schema owners will only see applications related to the workspace their associated with.
Some views won't let you see any rows unless you're querying via APEX (not SQL Developer), eg: apex_application_files

Similar Messages

  • Fonts not showing correctly only when on my account page on app store

    fonts not showing correctly only when on my account page on app store

    Firstly, make sure that your device is not hidden (left hand pane). If it just reads device then toggle between SHOW and HIDE.
    Secondly, try all the other ports on your computer, even a number of times.
    Thirdly, if you have another computer try plugging your device into it without taking any action, give it a moment, remove it and try it back in your other computer again.
    Failing all that, see here - http://support.apple.com/kb/TS1538 for Windows and http://support.apple.com/kb/TS1591 for Macs
    And failing all that put the device into Recovery mode. See here and note the paragraph 'If you restore from a different computer.... ' down near the bottom of the page -
    http://www.apple.com/support/ipad/assistant/itunes/

  • Show LOV only when field is blank

    Hi all,
    My environs:
    Oracle 10g on Windows
    Forms [32 Bit] Version 9.0.4.1.0 (Production)
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Oracle Toolkit Version 9.0.4.1.0 (Production)
    PL/SQL Version 9.0.1.5.1 (Production)
    My problem:
    I have a field in a block, that is text_item and is tied to a LOV item. I want the LOV to show up automatically, each time I tab into it, only when the item is BLANK (say when I am trying to insert into the block). When on query, it should only display the queried value into the field, and user can choose to activate the LOV, by pressing F9, if she wants to. It now displays automatically each time text item is in focus (works fine when user is inserting, but annoying when she has queried the form, and trying to tab thru. Each time she focuses on the field, LOV is popping up!)
    The current property setting on the text field item: Type: Text Item
    List of Values : MY_LOV_NAME
    Validate from List : Yes
    Properties on MY_LOV_NAME
    Automatic Display: Yes
    Any suggestions? Or Item level trigger i can use, and if so, when build_in can I use?
    New to forms and will greatly appreciate advice from pros!!
    Thanks
    Libran_girl

    It is very simply,
    IN When-new-item-Instance
    DECLARE
    V_LOV BOOLEAN;
    BEGIN
    IF :ITEM_NAME IS NULL
    THEN
    V_LOV = SHOW_LOV(LOV_NAME);
    END IF;
    END;
    give it a try, you will get your result, if it doesn't work then try :block_name.item_name
    Abbas

  • Rd web showing all remoteapps when logging in with an account of a trusted domain

    we have a dmz with a separate domain. there is a one way trust to our local domain
    In the dmz domain there is a rdweb and rd gateway. When logging in with an account from the dmz domain in the rdweb it's all fine but when logging in with an account from the trusted domain all remoteapp's are shown
    all servers are 2012r2

    Hi sir,
    Please make sure your account has already added into your Pay-As-You-Go subscription as co-administrator role . If the account was not in your subscription please add it and try to login on from your VS again.
    If you always occurred this issue, you can try to download the publish file and import it into you VS, please follow this steps:
    http://azure.microsoft.com/en-us/documentation/articles/mobile-services-windows-how-to-import-publishsettings/
    Regards,
    Will 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Show ItemRenderer only when editing (onclick)

    I have a datagrid, that after the user has logged in becomes editable.
    I would like that when the user clicks into a given field, say a date or number field, an itemRenderer that corresponds to the type of date appear.
    Example: if i click into the date field, i get a datechooser, or a numericStepper when i click into a number based field.
    Then after I click out of that field, it just shows the value, no longer the itemRenderer.
    FYI, I am using Pure MVC, so this logic is in a mediator '.as' class.
    Please help.

    I am getting the itemEditor to work mostly now.
    problem i am having is, after i switch the datagrid to become editable and then click into a given field (ie: itemEditor as a numeric stepper), if i just click in and out of the field, but do not make any changes to it, the data in the field either becomes "NaN" (in the case of a numeric stepper editor) or just blank (in the case of a combo box editor)
    Here is my code:
    DataGrid.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <!--
    PureMVC AS3 Demo - Flex Application Skeleton
    Copyright (c) 2007 Daniele Ugoletti <[email protected]>
    Your reuse is governed by the Creative Commons Attribution 3.0 License
    -->
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns="*"
    width="100%" height="100%">
    <mx:Script>
      <![CDATA[
      import com.*;
      import flash.events.Event;
      import mx.controls.DataGrid;
      import mx.controls.dataGridClasses.DataGridColumn;
      import mx.controls.Alert;
      import flash.net.URLRequest;
      import mx.controls.NumericStepper;
      import mx.controls.DateChooser;
      import mx.controls.CheckBox;
      import mx.controls.ComboBox;
      public static const CREATION_COMPLETE: String = "myCreationComplete";
      public static const LOAD_SETTINGS: String = "load settings";
      private function dateFormat(item:Object, column:DataGridColumn):String
      return df.format(item.date);
      public function onLinkBtnClick(request:URLRequest):void
      //trace("urlRequest: "+request)
      try {
        navigateToURL(request);
      }catch (e:Error) {
        // UNFORTUNATELY, THE ERROR IS THRU INTERNET EXPLORER AND IS NOT CAUGHT HERE
        trace("error: " + e)
        Alert.show("There was an error in opening the requested file!")
      }]]>
    </mx:Script>
    <mx:DateFormatter id="df" formatString="MM/DD/YY"/>
    <mx:VBox width="100%" height="100%" verticalGap="0" >
      <mx:HBox id="cbHBox" width="100%" height="0" fontWeight="bold" horizontalAlign="right" visible="false" >
      <mx:CheckBox id="selectAllCB" label="Select All / None" labelPlacement="left" fontWeight="bold" color="0xFFFFFF" />
      <mx:Spacer width="{colSelected.width/2 + 2}" />
      </mx:HBox>
      <mx:DataGrid id="settingsDataGrid"
      height="100%" width="100%"
      editable="false"
      horizontalScrollPolicy="off">
      <mx:columns>
        <mx:DataGridColumn width="24" headerText="Number" dataField="number" resizable="false"/>
        <mx:DataGridColumn width="120" headerText="Title" dataField="title" />
        <mx:DataGridColumn width="20" headerText="Date" dataField="date" labelFunction="dateFormat" editorDataField="dfDate" itemEditor="com.view.itemRenderers.DGDateFieldEditor"  resizable="false" />
        <mx:DataGridColumn width="12" headerText="Book" dataField="book" editorDataField="nsBook" itemEditor="com.view.itemRenderers.DGNumericStepperEditor" resizable="false" />
        <mx:DataGridColumn id="colType" width="14" headerText="Type" dataField="type" editorDataField="cbType" itemEditor="com.view.itemRenderers.DGTypeComboBoxEditor" resizable="false" />
        <mx:DataGridColumn width="10" textAlign="center" headerText="Link" sortable="false" draggable="false" resizable="false"
        dataField="link" itemRenderer="com.view.itemRenderers.DGLinkButtonEditor"
        rendererIsEditor="true" editable="false"/>
        <!--<mx:DataGridColumn id="colSelected" width="46" headerText="Select" visible="false" editable="false" itemRenderer="{CheckBoxRenderer}"  editorDataField="selected" />-->
        <mx:DataGridColumn id="colSelected" width="46" textAlign="center" visible="false" sortable="false" draggable="false" resizable="false"
        headerText="Select" dataField="sel" itemRenderer="com.view.itemRenderers.DGCheckBoxEditor"
        rendererIsEditor="true" editorDataField="cbSelected"/>
      </mx:columns>
      </mx:DataGrid>
    </mx:VBox>
    </mx:Canvas>
    DGNumericStepperEditor.mxml
     <?xml version="1.0"?>
    <!-- itemRenderers\dataGrid\myComponents\EditorDGCheckBox.mxml -->
    <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
    implements="mx.controls.listClasses.IDropInListItemRenderer,mx.managers.IFocusManagerComp onent"
    horizontalAlign="center" verticalAlign="middle">
        <mx:Script>
            <![CDATA[
             import mx.controls.listClasses.ListData;
       import mx.controls.dataGridClasses.DataGridListData;
       import mx.controls.listClasses.BaseListData;
       import mx.controls.dataGridClasses.DataGridItemRenderer
       import mx.events.FlexEvent;
       import mx.controls.Alert
       private var _listData:DataGridListData;         
                // Define a property for returning the new value to the cell.
                public var nsBook:Number;           
                // Implement the drawFocus() method for the VBox.
                override public function drawFocus(draw:Boolean):void {
        bookNS.setFocus();
       [Bindable]
       override public function set data(value:Object):void{
        super.data = value;
        bookNS.value = data[_listData.dataField];
       override public function get data():Object {
        return super.data;
          public function get listData():BaseListData
        return _listData;
       public function set listData(value:BaseListData):void
        _listData = DataGridListData(value);
            ]]>
        </mx:Script>
    <mx:NumericStepper id="bookNS" horizontalCenter="center" maximum="18" width="100%"
            click="nsBook = bookNS.value" />
    </mx:VBox>
    PLEASE HELP, getting these itemRenderers and itemEditors to work properly is DRIVING ME CRAZY!!!

  • Buddies not showing in list when logged into single account & logged out of others

    BUG
    I have multiple iChat accounts (AOL, ME.com, Mac.com, Jabber).  When I change the default behavior to log all accounts in at the same time with the same message (basically setting all but one acocunt to "offline") my buddies all disappear.  It appears there are now separate buddy lists for each account - but now way to populate those lists from the other accounts (no ability to import/cut-paste). 
    Often I use my Me.com account for work related issues and only logon to AIM when I am available for distractions/Family/etc.  Having to hand enter a large list of potential buddies across mutiple accounts seems unreasonable and was not an issue under previous iChat versions.

    Hi,
    There is a way to "Transfer" Buddies Wholesale to a new Buddy list  (my best to 292 Buddies)
    Option (Preparation)
    In the Address Book create Group of those Buddies you want in the new List.
    Action (the Deed)
    Highlight the Buddies/Contacts that you want to move
    If you are not using the Option use the CMD and Click method to highlight many but leave others.
    Now Drag the highlighted list to the New Buddy List.
    Tidy up by dragging those with Screen Names only from one list to the other.
    Re-organzie in to Groups you want/need.
    NOTE.
    This can be done from AIM Logins names (AIM, @mac.com and MobileMe) to other AIM Login Buddy lists
    It can also be done between Jabber and GoogleTalk lists (or Jabber to Jabber as GoogleTalk is a Jabber server)
    Although both type of Buddy List can have Screen Names that look like emails - so therefore have the same Format- which causes them to look like they will be Buddies, they will always appear Off line in the New list and you will not be able to Contact them.
    Optional Method
    Highlight (Using CMN Click if required) the Buddies you want to move and just drag from one list to the other.
    Overall note.
    When you drag they will be put in the Group that you happen to be hovering over when you let go. (place them in the new list
    You may want to Add a new Group first then drag them into the Right groups afterwards (you are likely to have to do the moves anyway)
    8:23 PM      Friday; August 5, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Application won`t start - starts when logged in as another user

    An application created by Unity doesn`t start. When I double click (or right mouse click and choose `open`) nothing happens. However, when I log in as another user, or when I try to run the same program from a flash drive, it works. I tried a lot, including repairing permissions, but nothing helped.
    Thanks in advance !

    Try logging into your user while holding down the shift key on your keyboard, to supress any startup items that may be interfering with your program.
    If that does not do it, look for a preference file in you user folder by choosing the Go menu from the Finder and selecting Go to Folder and enter ~/Library/Preferences and checking for files having to do with your application. If there are any, move them to your desktop and try again.
    If that does not fix it, move them back, replacing the new ones that will be built. Also, if your program uses any data files or libraries when started up, try removing those. Again, if not fixed, put them back.

  • Show scrollpane only when table has x rows

    Is there any way to not make use of scrollpane when a table currently has less that 5 rows ?
    I have my table embedded in a JScrollPane, but I want to show the scrollpane only if my table has atleast
    'x' number of rows.
    Thanks,

    Something like...
    DefaultTableModel tm = new DefaultTableModel(data, index);
    int size = tm.getRowCount();
    JTable t = new JTable(tm);
    JPanel p = new JPanel();
    if(size > 5)
      JScrollPane jsp = new JScrollPane(t);
      p.add(jsp);
    else
      p.add(t);
    // add p to JFrame

  • MacBook Pro Turns off Randomly Only when logged in OSX 10.8.2

    Hi,
    I have a 2010 Macbook pro with Mountain Lion 10.8.2. For a couple of weeks now, when its not plugged in to AC it turns off randomly, not at any specific battery%.
    Things I have tried already that were not helpful:
    - System profiler battery: 374 cycles, Battery Status: Normal
    - SMC reset
    - Clean install of Mountain Lion without any Migraion of old System files (wanted to do this anyways before the problem arose)
    - Its does not seem to be a heating issue, has happened at low temperatures
    What I have noticed is that if I either run the diagnostics at startup or enter to recovery mode, I can run the battery all the way to 0% (lasts a while) and this random swtiching off doesn't occur. It only happens when I am logged in to OSX. This makes me think its not a battery issue either.
    Any help would be great.
    Thanks!

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click  Log in.
    *Note: If FileVault is enabled under OS X 10.7 or later, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Report showing data only when preview in Eclipse is executed

    Hi people,
    I intend to do a dynamic report sending two parameters and displaying on browser.
    My application runs under Coldfusion 9 and i'm using Java Reporting Component for report generation and Crystal Reports Design for Eclipse 2.0 for design and Oracle 10g database.
    In first preview it shows the parameter window and after confirmation the report is generated. But when i preview again the report is generated with the older data. It seems that the data in the first execution is cached.
    In Coldfusion execution the report appears in browser when the value on the line parameter.setCurrentValue("","Pessoa",value); is the same used in preview. After change this an generic exception Error loading JDBC driver. Class 'oracle.jdbc.driver.OracleDriver' not found is throwed.
    The Coldfusion code is below.
    <cfscript>
         byteRead                    =     '';
         exportFormat               =     createObject('java','com.crystaldecisions.sdk.occa.report.exportoptions.ReportExportFormat').PDF;
         reportBuffer               =     createObject('java','java.io.ByteArrayOutputStream');
         reportDocument               =     createObject('java','com.crystaldecisions.reports.sdk.ReportClientDocument');
         reportParameter               =     createObject('java','com.crystaldecisions.reports.sdk.ParameterFieldController');
         printOutputController     =     createObject('java','com.crystaldecisions.reports.sdk.PrintOutputController');
         connInfo                    =     createObject('java','com.crystaldecisions.sdk.occa.report.data.ConnectionInfo');
         reportPath                    =     expandPath('report/DividasPessoas.rpt' );
         reportDocument.open(reportPath, 0);
         parameter = reportDocument.getDataDefController().getParameterFieldController();
         parameter.setCurrentValue("","Credor","1");
         parameter.setCurrentValue("","Pessoa","226426");
         printOutputController = reportDocument.getPrintOutputController().export(exportFormat);
         reportDocument.close();
         do{
              byteRead = printOutputController.read();
              reportBuffer.write(byteRead);
         }while( printOutputController.available() NEQ 0 );     
         reportBuffer = reportBuffer.toByteArray();
    </cfscript>
    <cfheader name="content-length" value="#ArrayLen(reportBuffer)#" />
    <cfheader name="content-disposition" value="inline;filename=Report.pdf" />
    <cfcontent type="application/pdf" variable="#reportBuffer#" />
    I googled a lot about the problem, reviewed all Eclipse options to disable the "cache" but everything was unsuccessful.
    I don't know if missing code is causing this or another component that i need to use.
    Any suggestions?
    Thanks everybody for attention and sorry for english errors.
    Ian

    Hi,
    Regarding your query that when you preview a report that has parameters in it, the prompts daillog box comes when you first preview the report.when you again preview you get the old values again.
    For this there is a refresh button, click on refresh, it will again promt you for parameters.
    Thanks
    Prithvi

  • HOW TO SHOW PLUGS ONLY WHEN TRACK IS SELECTED??

    Hello, I has an m audio axiom pro, and it had a cool feature where when you selected a track in logic the plugs you were using for that track would pop up on the screen, when you went to the next track only that tracks plugs would show....
    Is there a way/key command to set this up?
    Thanks!!

    Hello, I has an m audio axiom pro, and it had a cool feature where when you selected a track in logic the plugs you were using for that track would pop up on the screen, when you went to the next track only that tracks plugs would show....
    Is there a way/key command to set this up?
    Thanks!!

  • No volume only when logged in in lion

    I am having trouble with my volume. The speakers are not the problem because when i boot it up, i get the Mac's startup sound loud and clear. After i log in to any of my accounts the volume gone. It is not on mute. I am running Mac OS X Lion. Please help if you can, i appreciate it!

    Search for my posts.   I was able to fix mine by calling apple care.  

  • LinkedIn doesn't show the CAPTCHA when logging in

    While trying to log in to LinkedIn, the CAPTCHA, or security tool, doesn't show up on the screen and therefore can't get type the letters/numbers to get in. Any advice on who to rectify this? Version 3.6.8

    Hi,
    The configuration is under Admin-Setup-BP-Address Format. Each country has a built-in format for address initially.
    Thanks,
    Gordon

  • ORACLE Not Available - only when logged on as another user

    I can't figure out what I forgot. I installed everything (RH 6.1
    and standard) and can login as internal from user oracle no
    problems.
    When I login from a user I have granted dba to I get Error
    01034: ORACLE not Available. This is in sqlplus. I am sure it is
    something obvious as I had it working before my 5th reinstall.
    Thanks,
    Jon Griffin
    null

    Jon,
    Are you sure that the Database is started? You will get this
    error if it isn't.
    Chris
    Jon Griffin (guest) wrote:
    : I can't figure out what I forgot. I installed everything (RH
    6.1
    : and standard) and can login as internal from user oracle no
    : problems.
    : When I login from a user I have granted dba to I get Error
    : 01034: ORACLE not Available. This is in sqlplus. I am sure it
    is
    : something obvious as I had it working before my 5th reinstall.
    : Thanks,
    : Jon Griffin
    null

  • Chromium passwords missing ONLY when logging in via lxdm

    Crazy I know but it's true.  If I log in via lxdm and from with in chromium: preferences>personal stuff>manage saved passwords both "saved passwords" and "never saved" are blank.  If I switch /etc/inittab to use lightdm, telinit 3 && telinit 5 and log in, all passwords are there and populated.  WTF?

    I have the same problem with chrome. Has anyone found a solution for this? Adding
    auth optional pam_gnome_keyring.so
    session optional pam_gnome_keyring.so auto_start
    to /etc/pam.d/lxdm didn't helped for me.

Maybe you are looking for