Support position on pagination in Apex

Hi,
I've been trying to find whether Oracle officially support access to the "pg_min_row", "pg_max_rows" and "pg_rows_fetched" parameters to f via the use of
FLOW_CURRENT_MIN_ROW, or via wwv_flow package variables, etc, but can't find any kind of documentation / statement of support for this. Is there any?
If not, what's the current Oracle-supported mechanism (if any) for getting this information?
Also, I know that Apex actually uses a slightly different mechanism (via wwv_flow_data) to "know" what pagination set it's on (since you can link back to a page without the pg_min_rows etc parameters being specified on the URL and still see the same pagination set), and I was wondering if it's actually possible to "officially" (i.e. in a supported sense) get the set of data that Apex is going to display, rather than having to select it out of wwv_flow_data and parse the colon-delimited information in there).
Regards

Apple's normal position is that they have no position on third-party products.
But from what I've read, you will need the drivers from the CD as they're not part of the Mac OS X distribution, though the ATI driver for other-model cards may work to get the card working. If you need further clarification or information, you may want to call ATI's tech support.

Similar Messages

  • Custom pagination for APEX 4.2 interactive report using Page Zero

    Hi,
    I want to implement an «Custom pagination for APEX 4.2 interactive report» using a «page zero».
    I recently migrate from Apex 3.1 to Apex 4.2 and my «Custom pagination for APEX 3.1 interactive report» using a «page zero»  is not working any more.
    So now I try to adapt an excellent example of Jari Laine for 4.0 but using a page zero.
    I put the code JavaScript to Page zero but I must create an dynamic action to fire only for an interactive report region.
    It’s a good idea?
    Thank you

    Thought I would try once more with my DatePicker question.
    On the Apex.Oracle.Com website I have created a 1 page application that has an Interactive Report.
    [url http://apex.oracle.com/pls/apex/f?p=15655:1]
    user = 'test'
    password = 'test'
    I have 2 questions :
    (1) In IE7, press 'Actions', 'Filter'. On the Column dropdown list, select 'Order Timestamp'.
    Notice the prompt icon to the right of the 'expression'. This should change to the Datepicker, but in IE7 it does not. Try the samething in Firefox or Chrome and the Datepicker will appear.
    Is this a BUG, or does Apex 4.02 not support IE7 ?
    (2) In Firefox or Chrome, where you can now see the Datepicker, you will notice that it is the new style picker, not the old style ( called 'classic' ). I want to change it so that it shows the 'classic' datepicker not the new, but cannot see how to do it, if indeed you actually can.
    I would really appreciate it if someone could take a look and let me know if I am going mad, or if we need to get all our users onto IE8. We have now gone live with Apex 4.02 and need to resolve these issues.
    Thanks in advance.
    Edited by: DooRon on 10-Mar-2011 05:13

  • XMLType index supporting position in XPath

    I would like to know if it is possible to create index which will support position function in XPath.
    For example:
    Xpath:
    select extractValue(p.pack_content,'/Data/Contractors/Contractor[278]/PermissionNumber')
    from packages p;
    The table packages is based on the schema and it is created by the statement:
    CREATE TABLE packages
    (pack_id NUMBER primary key,
    pack_content XMLType
    XMLTYPE COLUMN pack_content
    XMLSCHEMA "http://www.example.com/example" ELEMENT "Data"
    VARRAY pack_content."XMLDATA"."Contractors"."Contractor"
    STORE AS TABLE pkg_contractors
    ((PRIMARY KEY (NESTED_TABLE_ID, SYS_NC_ARRAY_INDEX$))
    ORGANIZATION INDEX OVERFLOW);
    What kind of indexes should I create?
    Grzegorz.

    Just a stupid example to see if it could be done (not that it works);
    Does it make any sense ?
    No idea if this will work for you, you should further test it
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    5 rows selected.
    SQL> create table temp
      2  (lclob xmltype)
      3  ;
    Table created.
    SQL> insert into temp
      2  values('<itemMaster>
      3  <itemNumber>001000222</itemNumber>
      4  <itemDesc>HGR REUSE BX FOR HANGERRTNS </itemDesc>
      5  <paltSize>1</paltSize>
      6  <stdUOM>1</stdUOM>
      7  <shflfUOM>1</shflfUOM>
      8  <aliases>
      9  <upcCode>123456</upcCode>
    10  <upcCode>490010002222</upcCode>
    11  </aliases>
    12  </itemMaster>
    13  ')
    14  ;
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select extractvalue(lclob,'/itemMaster/aliases/upcCode[position()=2]') from temp;
    EXTRACTVALUE(LCLOB,'/ITEMMASTER/ALIASES/UPCCODE[POSITION()=2]')
    490010002222
    1 row selected.
    SQL> set autotrace on
    SQL> select extractvalue(lclob,'/itemMaster/aliases/upcCode[position()=2]') from temp;
    EXTRACTVALUE(LCLOB,'/ITEMMASTER/ALIASES/UPCCODE[POSITION()=2]')
    490010002222
    1 row selected.
    Execution Plan
    Plan hash value: 1896031711
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |     1 |  2002 |     3   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS FULL| TEMP |     1 |  2002 |     3   (0)| 00:00:01 |
    Note
       - dynamic sampling used for this statement
    Statistics
              0  recursive calls
              0  db block gets
              7  consistent gets
              0  physical reads
              0  redo size
            476  bytes sent via SQL*Net to client
            385  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed
    SQL> create index pos_idx on temp
      2  (extractvalue(lclob,'/itemMaster/aliases/upcCode[position()]'));
    Index created.
    SQL> select extractvalue(lclob,'/itemMaster/aliases/upcCode[position()=2]') from temp;
    EXTRACTVALUE(LCLOB,'/ITEMMASTER/ALIASES/UPCCODE[POSITION()=2]')
    490010002222
    1 row selected.
    Execution Plan
    Plan hash value: 1896031711
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |     1 |  2002 |     3   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS FULL| TEMP |     1 |  2002 |     3   (0)| 00:00:01 |
    Note
       - dynamic sampling used for this statement
    Statistics
             19  recursive calls
              0  db block gets
             19  consistent gets
              0  physical reads
              0  redo size
            476  bytes sent via SQL*Net to client
            385  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed
    SQL> begin  dbms_stats.set_table_stats
      2  ( ownname => 'MARCO'
      3  , tabname => 'TEMP'
      4  , numrows => 50000000  , numblks => 1200000  );
      5  end;
      6  /
    PL/SQL procedure successfully completed.
    SQL> select extractvalue(lclob,'/itemMaster/aliases/upcCode[position()=1]') from temp;
    EXTRACTVALUE(LCLOB,'/ITEMMASTER/ALIASES/UPCCODE[POSITION()=1]')
    123456
    1 row selected.
    Execution Plan
    Plan hash value: 1896031711
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |    50M|  4768M|   265K  (2)| 00:53:04 |
    |   1 |  TABLE ACCESS FULL| TEMP |    50M|  4768M|   265K  (2)| 00:53:04 |
    Statistics
              8  recursive calls
              0  db block gets
              9  consistent gets
              0  physical reads
              0  redo size
            470  bytes sent via SQL*Net to client
            385  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processedMessage was edited by:
    mgralike

  • APEX_MAIL support on Oracle's free APEX hosting site

    Did anybody know the status of APEX_MAIL support on Oracle's free APEX hosting site (http://apex.oracle.com/pls/otn/f?p=....)?
    I tested the following 'after submit' process in a testing APEX page without any error message.
    begin
    APEX_MAIL.SEND (
    p_to => 'my_email_address',
    p_from => 'my_email_address',
    p_body => 'This is a test from APEX form button -- number 5',
    p_subj => 'Test Subject ');
    end;
    But I did not receive the email.

    I tried different hotmail and yahoo mail addresses.
    If p_to and p_from were the same hotmail email addresses, the emails would be lost.
    if p_to and p_from were the same yahoo email addresses, the emails would be received.
    This is something caused by hotmail.
    The test can be done in SQL commands screen.
    APEX_MAIL.PUSH_QUEUE ('localhost',25) did work beautifully.
    You could see the message as follows in the SQL commands screen.
    Pushing email 4600499720366254834
    Pushed email 4600499720366254834
    Pushing email 4600892230805594626
    Pushed email 4600892230805594626
    Pushing email 4600897927845600827
    Pushed email 4600897927845600827
    Statement processed.

  • Submit form on report pagination?  (APEX 2.2.0)

    This may be a really basic question, and I apologize if it's been answered elsewhere.
    Is it possible to have the form submit when changing pages in a report through the pagination links? I have a bunch of checkboxes that I want to preserve across page "turns". The pagination by default is just a hyperlink and not a form submission, so the values get lost.
    If it is possible, what do I need to do?
    Thanks!
    Don
    P.S. - I found Submit page before launching report link but that's about the CSV download link, and I can't find a way to apply that here.

    Earl,
    There is an APEX paginated report where one of the columns is for a call to HTMLDB_ITEM.CHECKBOX for each row. The form on the page submits back to the page itself. On form submission, the values for the checked boxes are stored (as a CSV list) in a page item. There are a few other buttons on the page which the users can use, but the important part in this question is the check boxes. At the very end of the process, something happens with all of the values in the CSV list.
    The issue I am having is that when the user clicks the "Previous" or "Next" links, the check boxes on that "page" of results are not processed.
    Thanks for your help so far. The solution I came up with was to redesign the interface so that the user has to explicitly choose to save the checked values, though I am curious about the original question, which boils down to, "can you have the pagination buttons submit the page instead of not?"

  • Does anybody in any kind of real support position look at this?

    I submitted a post on this support community web site 2 weeks ago, and no one has submitted any kind of reply.
    I noticed that there are other posts here with similar non-response times. Does anyone wiht any support knowledge
    ever look at this and give any feedback?

    All of us here are only end users just like you.  Apple does provide support via these forums.
    B-rock

  • Position Available for an APEX Contract Developer - Knoxville, TN USA

    Note - If this type of post is not allowed in this forum it may be deleted.  I don't want to break any forum rules.
    But, if it is OK here goes... :-)
    I won't go into details here, but my company is looking for an APEX contract developer. I have been doing APEX development for 5+ years and 2 developers have been doing APEX development for 2+ years and have had great success with APEX. That has turned into a lot of demand for our services and created a backlog. So, my company is looking for an APEX contract developer to help with the backlog. If you are interested you may contact me.
    Thanks, Tony

    Tony,
    Can you contact me offline in regards to your opening?
    texas DOT apex DOT developer AT gmail DOT com
    Thank you,
    Tony Miller
    Dallas, TX

  • Pasar valores a otra Pagina (de Apex a PHP)

    Buen día
    Tengo una página básica en ápex que captura el valor de dos campos y los debe de pasar a una página PHP pero no encuentro la forma de que estos valores me pasen a la pagina PHP si alguien tiene esto resuelto
    Gracias por la Ayuda

    Lo termine solucionando el problema era que uno de los includes entraba en conflicto con la pagina de plantilla porque estaba mal editado

  • AnyChart 6 (HTML Support) and APEX?

    Hi,
    I would like to know if there are any pans on Orace side to support AnyChart 6 (HTML5 support) in future version of APEX? Flash graphs are very nice, but they are Flash based and show pretty bad performance, even if in APEX 4.0 they perform much better than in earier versions.
    Since Flash is on the way to dissapear, it woud be nice to know what is to be expected of the reporting support in APEX. TIA.
    Tamas

    Hi Patrick and Roel,
    Thank you for the SoD.
    I know that no dates are enclosed and it makes no sense to ask for one, but could you please tell, how will the release cycle of APEX is going to be? With APEX 3.x it was very infrequent, with APEX 4.x it seems to change but still very hard to calculate. On the other hand it would be good to know, wether we should start to use AnyChart 6 and later migrate to the new APEX version that is comming with HTML5 support or we should better wait, because it is comming soon (i.e. in 1-2 months)?
    Regards,
    Tamas

  • How to set encoding in Apex Listener

    I have a problem conversion characters when using Apex listener
    The problem occurs in two different configurations:
    1. APEX Listener 2.0 running on GlassFish Server Open Source Edition 4.0 Oracle Database 11g Release 11.2.0.3.0 (NLS_LANGUAGE: AMERICAN, NLS_CHARACTERSET: AL32UTF8)
    2 . APEX Listener 2.0 running in standalone mode Oracle Database 10g Express Edition Release 10.2.0.1.0 (NLS_LANGUAGE: AMERICAN, NLS_CHARACTERSET: AL32UTF8)
    to demonstrate the problem I created a restful service, which is in the GET method returns the result of the query :
    select: p_param as "result" from dual
    parameter : p_param transmitted via http header
    parameter : p_param set to 'sample data дф ' , the last two characters - Cyrillic
    Http Request is as follows:
    GET http://xxx.xx.xxx.xxx:8080/apex/encode HTTP/1.1
    Accept-Encoding: gzip, deflate
    param: sample data дф
    Host: xxx.xx.xxx.xxx: 8080
    Connection: Keep-Alive
    User-Agent: Apache-HttpClient/4.1.1 (java 1.5)
    in both cases, the return value - <result> sample data 4D </ result>
    I could not find documentation on how to avoid re-encoding?
    regards.

    With a WE8MSWIN1252 (or comparable charset) database, fronted by APEX listener, and the absense of NVARCHAR2 support in APEX, is there an option to build an APEX application supporting UTF-8 characters anyway, without converting the whole database to UTF-8?
    As "Application Builder User’s Guide" is quite tight-lipped when it comes to UTF-8 support, can somebody recommend an APEX FAQ concerning UTF-8 support in APEX?
    Thanks and regards, Tom

  • Positioned updates with Oracle 8.1.6.3

    Hi,
    I'm testing Oracle ODBC driver 8.1.6.3 in a
    Windows95 environment and I'm trying to
    execute the following command:
    SQLSetPos(hStmt, 1, SQL_UPDATE,
    SQL_LOCK_NO_CHANGE);
    When the method is executed, it returns -1.
    It seems like the Oracle ODBC driver 8.1.6.3
    does not support positioned updates in
    Windows95. However, the same command does
    work in a Windows NT4 environment.
    Is this a bug in Oracle ODBC driver 8.1.6.3?
    Is there a way (workaround) to make the
    SQLSetPos command work in Windows95?
    Thanx,
    -- Andre W.
    null

    Hi,
    I just found out what my problem was.
    Oracle ODBC driver 8.1.6.3 does not support
    positioned updates. For that you must use
    the cursor library. When I did my test
    in Windows95, I had a resource problem; the
    cursor library could not be loaded. The
    Oracle ODBC driver 8.1.6.3 probably uses
    more resources than older versions !!
    -- Andre W.
    null

  • How to position a select list in the create region

    Hello,
    I would like to position a select list item in the create region, I think we can do that somehow using javascript but I don't have an idea how to make it.
    Thanks in advance!

    In this example you can see how to position the elements:
    http://apex.oracle.com/pls/apex/f?p=31517:242
    You don't need javascript for that. The element attributes are enough for that.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • PROBLEMS WITH APPLICATION - APEX 3.2

    Hi Experts, we have an application that have the next features:
    - Mounted on Apex 3.2 Embedded PL/SQL Gateway
    - Oracle 10.2 on a SunOS 5.10
    - The users access the application with Microsoft Internet Explorer
    Over the past few weeks we are having the following problems:
    - Several attempts to login
    - Lost of connection when working with the app
    - On some ocassions the app get's lazy
    To try to encapsulate the main cause of the problem I have to monitor several aspects like:
    - Network
    - User Web Browser
    - Data Base Server
    - Data Base Instance
    I need your help in order to determine the best way to monitor the Data Base, for example: Make sure that the Apex is working properly, that http Embedded is ok ...etc. What aspects regarding Oracle Application Express I need to ensure so the application is OK and the issues could be for networking, all kind of scripts or commands will be very usefull.

    About the Apex Activity the logs shows normal behavior, the database server has enough resources to support the processes.
    When Apex was installed on the server, looking the documentation ... About Choosing an HTTP Server ... two options available, Oracle HTTP Server and Mod_plsql and Embedded PL/SQL Gateway, the choice was Embedded PL/SQL Gateway because is all in the database server and nothing additional has to be installed.
    According to this information how can I check the status of the 8080 port ??? and how can I check the process related to it ????
    Regards,
    Jesus.

  • Oracle support & VMware

    We've a customer that wants to run Oracle DB and Oracle WebLogic server that are virtualized using VMware.
    The customer is under the impression that Oracle support terms don't allow this.
    Based on a web search I just did this doesn't seem correct.
    What is Oracle's current support policy for these products on VMware? Are Oracle DB and Oracle WL server supported on VMware?
    Can you refer to an official policy document?
    marko

    You could read the following MOS note :
    Support Position for Oracle Products Running on VMWare Virtualized Environments ID 249212.1+
    Briefly, none of the Oracle products are currently supported on VMWare. If you have an issue, you first may have to reproduce it in a non-VMWare environment (in a supported env.) before raising a SR.
    Nicolas.

  • Encoding in apex

    hi !
    i create application whit 1 report page thae get data from a table .
    this table has charactor set WE8ISO8859P1 and when application build , the web browser can't display , and when i change encoding of my browser to arabic(windows) i can view my reasult, what can i do ???
    i want that when application run , set view encoding of my browser to ,arabic(windows), by default,
    this is charactorset that i need to set = ar8mswin1256

    With a WE8MSWIN1252 (or comparable charset) database, fronted by APEX listener, and the absense of NVARCHAR2 support in APEX, is there an option to build an APEX application supporting UTF-8 characters anyway, without converting the whole database to UTF-8?
    As "Application Builder User’s Guide" is quite tight-lipped when it comes to UTF-8 support, can somebody recommend an APEX FAQ concerning UTF-8 support in APEX?
    Thanks and regards, Tom

Maybe you are looking for