How to list the elements IR hidden via API?

I have several elements hidden, created at the time of the design in the area of IR report, such as, P10_ITEM1, P10_ITEM2 etc.
I need to create the PL/SQL code that needs to loop through all the hidden objects
Something like
for i in 1..APEX_APPLICATION.G_F01.COUNT LOOP
--logic
end loop;
But if I'm just doing me, code fragment above does not deal with the elements created at design time;
So is it possible to refer to the elements of design in a loop, i.e. without knowing their names assigned to its creation?

Hello

You can use APEX_UTIL. SET_SESSION_STATE
http://docs.Oracle.com/CD/E37097_01/doc/doc.42/e35127/apex_util.htm#autoId113

FOR c1 IN(
select ITEM_NAME
from APEX_APPLICATION_PAGE_ITEMS
where APPLICATION_ID = :APP_ID
and PAGE_ID = :APP_PAGE_ID
)loop
  APEX_UTIL.SET_SESSION_STATE(c1.item_name, 'some value');
end loop;

But I do not know is that what you really want.
If you explain in detail requirement, it would be useful.

Kind regards
Jari
-----
My Blog: http://dbswh.webhop.net/htmldb/f?p=BLOG:HOME:0
Twitter: http://www.twitter.com/jariolai

Tags: Database

Similar Questions

  • How to list the columns for a view

    Dear experts

    I know how to list the columns in a table. This easy by querying the data USER_TAB_COLUMNS dictionary.

    But my problem is how to issue a query that returns the columns for a view?

    Thanks in advance

    USER_TAB_COLUMNS stores the metadata for both views.

    Select * from user_tab_columns where table_name = 'YOUR_VIEW_NAME"of order of column_id.    -Replace with your view_name (mandatory course)

    See you soon,.

    Manik.

  • How to list the Total number of messages in the specific queue

    Hi all
    Message queue
    How to list the total number of messages in the specific queue using wlst

    Published by: 666666 on 8 March 2012 04:42

    You might have more luck post it on the forum JMS...

  • How to list the active recording points in a session?

    How to list the active recording points in a session?

    Brands of Marcelo - ESRI wrote:
    How to list the active recording points in a session?

    not easily

    http://www.orafaq.com/Forum/t/122719/2/

  • How to replace the element on the page master on master spread [JS CS5]

    Hi all

    There is a big media (scripts) on how to replace the element template on a page of a specific document, but my problem is, I've added new Master spread based on a further propagation where newly added distributed Master I need to replace all the elements to master basic page.

    pageItems [curPageItem] .override (destinationPage)

    works well if you replace the elements of master page on the pages of a document, but what works for replace page elements master master page for example

    pageItems [curPageItem] .override (destinationMasterPage)

    Thank you

    Mac

    Similar code worked for me (in CS4 - the machine, I had very practical is the one I use to accompany clients on older versions). Are you sure that your destinationMasterPage is a page and not a spread? This would cause a failure.

    Dave

  • How to remove the old drivers (hidden) command line?

    Hello

    I want to try to remove all the hidden command prompt devices. There is a way to this topic?

    For example;

    type driverquery on cmd and sort all the lists of hidden devices

    After that type Remove any device (for example) and remove this hidden device

    Thank you.

    Enbiya salvation,

    Thanks for posting in the Microsoft Community.

    You can manually remove hidden devices by following the steps below.

    1. press the key Windows + X key, then select "Device Manager".

    2. from there, select the view > show hidden devices.

    3. now, select the hidden device > right click and select "Uninstall" to permanently delete or 'Disable' to disable the device.

    To find the command prompt commands and settings command line of how to do the same with the command prompt, you can follow the link below and check if it helps.

    Windows Device Console (Devcon.exe)

    https://msdn.Microsoft.com/en-us/library/Windows/hardware/ff544707 (v = vs. 85) .aspx

    Please let us know if the problem is resolved or you need additional assistance.

  • How to access the elements in main.mxml file ActionScript?

    I'm having problems creating a panel using the Extension Builder SDK. It seems that all the examples explain how a CS5 document using a control panel, but I found no examples of how to control the items in the Panel via ActionScript code.   Furthermore, we use CS Extension Builder SDK with Flash Builder 4.  Here's a simple example of were I'm stuck.

    I create a project Extension generator for a panel of PS named: 'CSExtensionTest '.  In the main.mxml file create a button with id = "btnPSCode".

    ****************************************************************************************** *****************************************

    File:

    hand. MXML

    ****************************************************************************************** *****************************************

    <? XML version = "1.0" encoding = "utf-8"? >

    < mx:Application

    ' xmlns:mx = ' http://www.Adobe.com/2006/MXML " " layout ="absolute" historyManagementEnabled = "false""">

    < mx:Script >

    <! [CDATA]

    [

    Bindable ]

    private var hostName:String = HostObject.mainExtension;

    []] >

    < / mx:Script >

    "" < mx:VBox height = "100%" width ="100%" verticalAlign = "middle" horizontalAlign ="center">

    " < mx:Button id ="btnPSCode"label ="PS code run"click ="CSExtensionTestPhotoshop.run ()"enabled =" hostName.indexOf{('photoshop') >-1}"/ >

    " < mx:Button id ="btnJSXCode"label ="code JSX run"click ="CSExtensionTestJSX.run ()"/ > "

    < / mx:VBox >

    < / mx:Application >

    ****************************************************************************************** *****************************************

    How can I access the properties of this element in the CSExtensionTesJSX.as file?

    ****************************************************************************************** *****************************************

    File:

    CSExtensionTesJSX.as

    ****************************************************************************************** *****************************************

    package

    {

    Import com.adobe.csxs.core.CSXSInterface;

    Import com.adobe.csxs.core.csxs_internal;

    Import com.adobe.csxs.types.SyncRequestResult;

    Import mx.binding.utils.BindingUtils;

    Import mx.core.ButtonAsset;

    Import mx.core.mx_internal;

    Import MX.utils.object_proxy;

    public class CSExtensionTestJSX

    {

    public static function run():Sub

    {

    var myCSXS:CSXSInterface = CSXSInterface.getInstance ();

    var result: SyncRequestResult = CSXSInterface.instance.evalScript ('jsxFunction');

    btnPSCode.enabled = false;

    }

    }

    }

    ****************************************************************************************** *****************************************

    I get this error:

    image001.png

    I had initially written a panel using a Flex project and was able to access the properties of the items in the file main.mxml directly.  It seems that I can't do that.  Did I miss something in the code?  Am I missing some kind of library?  I'm sorry, I'm not very experienced in the development of Adobe, but we are trying to become more involved in the development of plugins and extensions for CS5.  Any help will be greatly appreciated.

    You must pass a reference to your object main mxml in the run method. For example:

    hand. MXML:


    http://www.Adobe.com/2006/mxml"layout ="absolute"historyManagementEnabled ="false">
       
           

    [Bindable]
    private var hostName:String = HostObject.mainExtension;
               
    ]]>
       
       
           
       

    testJSX.as:

    package
    {
    import com.adobe.csxs.core.CSXSInterface;
    import com.adobe.csxs.types.SyncRequestResult;
       
    Import mx.controls.Button;

    public class testJSX
    {
    public static void run(m:main):void
    {
    var result: SyncRequestResult = CSXSInterface.instance.evalScript ("jsxFunction");
    var b:Button = m.myButton;
    }
    }
    }

    HTH.

  • How to overcome the elements to the elements currently in the notification area

    original title: I want to move some items in the taskbar notification area of tasks of items being passed to current items.  Customization of seems only to allow me to display them or hide them when not in use.  I don't seem to be able to exceed the elements for active items.  Any ideas?

    I want to move some items in the notification area of task bar of items passed to current items.  Customization of seems only to allow me to display them or hide them when not in use.  I don't seem to be able to exceed the elements for active items.  Any ideas?

    When a program is open and minimized in the Notification area, the list should be created automatically in the «Current items» list Similarly, when you close the program, it is entry list under "recent items".
    Ramesh Srinivasan, Microsoft MVP [Windows Desktop Experience]

  • How to get the element selected listfield and goto next page?

    Assalaamualikum

    I try parsing the XML from a url and show in listfield.

    problem:

    How to get the selected item and passing the variable and than goto next page?

    my code:

    package parsepack;

    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Vector;

    Import javax.microedition.io.Connector;
    Import javax.microedition.io.StreamConnection;

    Import net.rim.device.api.system.Bitmap;
    Import net.rim.device.api.system.Display;
    Import net.rim.device.api.ui.DrawStyle;
    Import net.rim.device.api.ui.Field;
    Import net.rim.device.api.ui.FieldChangeListener;
    Import net.rim.device.api.ui.Graphics;
    Import net.rim.device.api.ui.Manager;
    Import net.rim.device.api.ui.UiApplication;
    Import net.rim.device.api.ui.component.ListField;
    Import net.rim.device.api.ui.component.ListFieldCallback;
    Import net.rim.device.api.ui.container.MainScreen;
    Import net.rim.device.api.ui.container.VerticalFieldManager;
    Import net.rim.device.api.xml.parsers.DocumentBuilder;
    Import net.rim.device.api.xml.parsers.DocumentBuilderFactory;

    to import org.W3C.DOM.document;
    Import org.w3c.dom.Node;
    Import org.w3c.dom.NodeList;

    extends xmlparsing public class UiApplication implements ListFieldCallback, FieldChangeListener
    {

    Public Shared Sub main (String [] args)
    {
    xmlparsing app = new xmlparsing();
    app.enterEventDispatcher ();
    }

    public long mycolor;
    Connection _connectionthread;
    private static ListField _list;
    private static Vector listElements is new Vector();.
    public display display = new MainScreen();
    MainManager VerticalFieldManager;
    VerticalFieldManager subManager;

    public xmlparsing()
    {
    Super();
    pushScreen (screen);

    final Bitmap Imagearriereplan = Bitmap.getBitmapResource ("blackbackground.png");

    mainManager = new VerticalFieldManager(Manager.NO_VERTICAL_SCROLL |) Manager.NO_VERTICAL_SCROLLBAR)
    {

    public void paint (Graphics graphics)
    {
    graphics.drawBitmap (0, 0, Display.getWidth (), Display.getHeight (), Imagearriereplan, 0, 0);

    Super.Paint (Graphics);
    }

    };

    subManager = new VerticalFieldManager(Manager.VERTICAL_SCROLL |) Manager.VERTICAL_SCROLLBAR)
    {
    protected void sublayout (int maxWidth, maxHeight int)
    {
    int displayWidth = Display.getWidth ();
    int displayHeight = Display.getHeight ();

    Super.sublayout (displayWidth, displayHeight);
    setExtent (displayWidth, displayHeight);
    }
    };

    Screen.Add (mainManager);

    _list = new ListField()

    {

    public void paint (Graphics graphics)

    {
    graphics.setColor ((int) mycolor);
    Super.Paint (Graphics);

    }

    };
    myColor = 0x00FFFFFF;
    _list. Invalidate();
    _list.setEmptyString ("* only supplies not available *", DrawStyle.HCENTER "");
    _list.setRowHeight (50);
    _list.setCallback (this);
    mainManager.add (subManager);
    listElements.removeAllElements ();
    _connectionthread = New Connection();
    _connectionthread. Start();
    }

    protected boolean navigationClick (int status, int time)
    {
    Try
    {
    Here, go to another screen if you need.

    }
    catch (System.Exception e)
    {
    System.out.println ("Exception:-: navigationClick()" + try ());
    }
    Returns true;
    }

    private class login extends thread
    {
    Public connection()
    {
    Super();
    }

    public void run() {}
    Doc document;
    StreamConnection conn = null;
    InputStream is = null;
    try {}

    Conn = Connector.open (StreamConnection) ("http://ec2-54-248-241-248.ap-northeast-1.compute.amazonaws.com/koperasi-akr-trial/cgi-bin/gw-pinjama...

    DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance ();
    docBuilderFactory.setIgnoringElementContentWhitespace (true);
    docBuilderFactory.setCoalescing (true);
    DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder ();
    docBuilder.isValidating ();
    is = conn.openInputStream ();
    doc = docBuilder.parse (is);
    doc.getDocumentElement () .normalize ();
    List of NodeList = doc.getElementsByTagName ("ID");
    for (int i = 0; i)< list.getlength();="" i++)="">
    Node node = list.item (i) .getFirstChild ();
    listElements.addElement (textNode.getNodeValue ());
    }
    } catch (Exception e) {}
    System.out.println (try ());
    } {Finally
    If (is! = null) {}
    try {is.close ();
    } catch (IOException ignored) {}
    } If (conn! = null) {}
    Try {conn.close () ;}
    catch (IOException ignored) {}
    }} UiApplication.getUiApplication () .invokeLater (new Runnable() {}
    public void run() {}
    _list. SetSize (listElements.Size ());
    subManager.add (_list);
    Screen.Invalidate ();
    }
    });
    }

    }

    ' public void drawListRow (list ListField, Graphics g, int index, int y, int w)
    {
    Your string = (String) listElements.elementAt (index);
    int yPos = 0 + y;
    g.drawLine (0, yPos, w, yPos);
    g.drawText (, 5, 15 + y, 0, w);
    }

    public {get {Object (ListField list, int index)
    {
    Return listElements.elementAt (index);
    }
    public int indexOfList (String prefix, ListField list, int, string)
    {
    Return listElements.indexOf (prefix, string);
    }
    public int getPreferredWidth (ListField list)
    {
    Return Display.getWidth ();
    }
    public final void insert (String toInsert, int index) {}
    listElements.addElement (toInsert);
    }

    ' Public Sub fieldChanged (field field, int context) {}

    }
    }

    Thank you.

    I told you that replace the navigationclick() method where initialize you your listfield

    as I think that changing your code and then answer me

    _list = new ListField()
    {
    protected boolean navigationClick(int status, int time)
    {
      Dialog.inform("hi");
      return true;
    }
    
    public void paint(Graphics graphics)
    {
    graphics.setColor((int) mycolor);
    super.paint(graphics);
    }
    };
    
  • SQL - How to complete the elements of the App in bulk?

    Hi all

    I am filling a lot of elements of the application in bulk, without going through the list of all of them.

    So, by example, if I have an APEX application the elements defined, say

    : F999_TEXT1

    : F999_TEXT2

    : F999_TEXT3

    .. and in the code I wanted to fill these App items in bulk to the help of arrays and loops with this kind of definition...

    declare
      type array_somedata
    is varray(3) of varchar2(10);
      array1 array_somedata
    := array_t('Matt', 'Joanne', 'Robert');


      type array_AppItem is varray(3) of varchar2(10); 

      array2 array_AppItem := array_t(': F999_TEXT1 ', ' : F999_TEXT2 ', ' : F999_TEXT3');


    What is the method by which I can tell...

    array2(1) := array1(1) ;


    where array2(1) is the element of the app: F999_TEXT1 to be filled of array1(1) data "Matt."

    You can use apex_util.set_session_state

    apex_util.set_session_state ('F999_TEXT1', value);

    Then maybe

    apex_util.set_session_state (array2 (1) array1 (1));

    Note that the element does not need a colon.

    Now that said, are you sure you want to do this? You want to discuss the requirement of the business you are trying to accomplish?

    Maybe we can help.

    Thank you

    -Jorge

  • How to list the cars on unix terminal databases

    Hi guys, I want to know how to list all the cars on unix terminal databases.
    the following command lists all databases running on a server

    *'ps - ef | grep smon | AWK '{print $8} ' | f '_' awk ' {print $3} "*.

    These databases, I try to find all the databases that are active rac.

    I tried srvctl status database-d 'database name'
    but with that I was able to find information on the single database at a time. So I'm looking for a single command that lists all the cars to a one-way ticket databases.
    can someone help me please understand this command

    Thank you

    Try:

    srvctl config database
    
  • How to list the VMs and blue file associated by cluster

    I tried to figure out how to get the list of virtual machines on a particular cluster of ESX and their associated blue records.  I tried to change some of the scripts I found that all virtual machines and their files... but can't seem to get them to identify to a cluster.

    Someone has something that I could try?

    There are indeed a few scripts that give the railways blue folder for virtual machines.

    It is an adapted version of one of my scripts that does state on the virtual machines for a specific cluster.

    $report = @()
    $cluster = 
    
    Get-Cluster $cluster | Get-VM | Get-View | % {
    
         $current = Get-View $_.Parent
         $path = $_.Name
         do {
              $parent = $current
              if($parent.Name -ne "vm"){$path = $parent.Name + "\" + $path}
              $current = Get-View $current.Parent
         } while ($current.Parent -ne $null)
    
         $row = "" | select ClusterName, VMName, Path
         $row.ClusterName = $cluster
         $row.VMName = $_.Name
         $row.Path = $path
         $report += $row
    }
    
    $report
    

    If you want to see the list in the 'blue' folder_name order, you can change the last line

    $report | Sort-Object -Property Path
    
  • How to list the numbers in the list of values for a url parameter IRIN/filter

    Hello

    I'dl likes to call it the Apex interactive report with filter IRIN parameter page in the URL
    to get the report to get a list of the IDS of the action.

    When the filter looks like IRIN_ACTION_ID:189353, I get the report for action_id = 189353 correctly.
    However, the point would be to get the report for a set of values action_id, but I am struggling to find the format how to list more worth action_id to achieve the desired result.


    It works, gives what I expect:
    http://../pls/Apex/f?p=999:916:1087915793180497:CIR:IRIN_ACTION_ID:189353

    These formats do not work, here, I'm trying to get the action_id report IN 189353,19004
    http://.../pls/Apex/f?p=999:916:CIR:IRIN_ACTION_ID:189353 %2C 190043
    http://.../pls/Apex/f?p=999:916:CIR:IRIN_ACTION_ID:189353, 190043

    Action_id = 190043 is not included in the report that there is.

    Please can someone confirm how the values of type numbers must appear in the URL for the IN operator?

    Thank you very much
    Lajos

    Published by: lvarady on 10-Sep-2011 06:39

    The way to proceed is to encapsulate all the values passed within backslashes. Like this: \189353,190043\

    Passing in your url and it has all the great work!

  • How does integrate the Elements 9 with Lightroom?

    I use Lightroom, but wants to recover a part of the Assembly of the Elements 9 power but while staying in Lightroom.

    I've noticed in Adobe, Lightroom information. There is integration between CS5 and Lightroom but Adobe says nothing on the elements.

    How do, or only the 9 elements fit into Lightroom?

    You will be editing an RGB-converted in PSE, not the NEF image - nothing can change the NAVE, but because of the integration, LR will not need to create to TIF on the path by PSE because it uses silently ACR to open the EPS file.  When you save off PSE, you save like some other filetype that NAVE, TIF, PSD, JPG, or your choice, and LR must stack as you do with your workflow "Topaz".

    The integration will work better if you're in the same compatible version of LR and ACR, where the latest versions of each are 3.4.1 LR and ACR 6.4.1.

  • How to get the element highlight DataGrid?

    Hello everyone...

    I've already looked in a lot of sites and forums, and I can't find anything...

    I need to get data on the element (not selected) highlighted on my DataGrid (I intend to use the MouseOver event)...

    does anyone have an idea on how to do it?

    PS Sorry for the grammar errors... my English is not very good...

    Hello

    Add an event listener for the itemRollOver event of the datagrid to get the index of the item highlighted.

    
    
    protected function dataGrid_itemRollOverHandler(event:ListEvent):void
    {
         var item:Object = dataGrid.dataProvider[event.rowIndex];
    }
    

Maybe you are looking for

  • lost the "back" button and all other settings as well. No display of the firefox symbol

    I lost the toolbar. No return or next, no house icon,.not even the arrow top left Firefox, yet I am connected

  • Logic pro 9 will not launch on El Capitan 10.11.2

    Hello I just installed Logic Pro 9 on my system El Captan. When I try to start it, a message I should update my logic pro to the latest version and it does not start? Is this normal or is there any problem with the system here? I really have to buy t

  • Fast forward and rewind

    When I play a file and want to move forward towards a particular point in time registration or back controls "Fast forward" and "Rewind" doesn't seem to work. The FF takes just the player at the end of the file and the RW just bring it at the beginni

  • Laptop still slow even after standard performance settings

    I'm about to throw my laptop out the window, so any help would be appreciated. He turned slowly for about a year now. For example, it may take 20 seconds to open a Windows Explorer window. It is a HP and is three years old. Recently, I have deleted a

  • How to handle complex properties after creating components?

    If I create a new object of a ComponentDefinition, I pass a variable as a property to it. page var = serviceDetailsPage.createObject (); page.service = servicesDataModel.data (row); NAV.push (page); The content of "page.service" is an object and I ne