BUG: Session 0 - Report - Pagination

Hello,
the problem is as follows:
After reloading a report (pagination, next range), the session 0 gets lost.
My setting:
Apex 4.2.2.
Two pages, the first displays a report and the second the details.
The report has activated pagination.
Example for the report source:
SELECT APEX_UTIL.Prepare_Url('f?p='||:APP_ALIAS||':DETAIL:'||:APP_SESSION||'::::P11_OID:'||OID)         AS LINK
Course of events:
Open the report page with session id 0
see the url of the report links, it still has the session id 0
f?p=APEX_CON:DETAIL:0::::P11_OID:58605
Click on the pagination button 'Next'
see the url of the report links, there is a new session id and no session id 0
f?p=APEX_CON:DETAIL:9649916689018::::P11_OID:57645
Thanks,
Max

Hi Jari,
thanks for the quick response.
I tried the following:
Report source:
SELECT APEX_UTIL.Prepare_Url('f?p='||:APP_ALIAS||':DETAIL:'||:APP_SESSION_VISIBLE||'::::P11_OID:'||OID)         AS LINK
Report result:
Open the report page with session id 0f?p=APEX_CON:DETAIL:0::::P11_OID:58605
Click on the pagination button 'Next'f?p=APEX_CON:DETAIL:9649916689018::::P11_OID:57645
Report source:
SELECT APEX_UTIL.Prepare_Url('f?p='||:APP_ALIAS||':DETAIL:666666::::P11_OID:'||OID)         AS LINK
Report result:
Open the report page with session id 0f?p=APEX_CON:DETAIL:0::::P11_OID:58605
Click on the pagination button 'Next'f?p=APEX_CON:DETAIL:666666::::P11_OID:57645
Report source:
SELECT 'f?p='||:APP_ALIAS||':DETAIL:666666::::P11_OID:'||OID         AS LINK
Report result:
Open the report page with session id 0f?p=APEX_CON:DETAIL:666666::::P11_OID:58605
Click on the pagination button 'Next'f?p=APEX_CON:DETAIL:666666::::P11_OID:57645
I think the function APEX_UTIL.Prepare_Url in combination with an AJAX report refresh is the problem.

Similar Messages

  • APEX 3.1 Report pagination style limited by max row count

    I am working on an application using APEX 3.1 and am having trouble keeping the report pagination style as a select list when the max row count for the report is greater than 8000. If I use the select list as the pagination method, the first time that the first page is viewed is fine however all subsequent pages begin to use the "next" and "previous" link method of pagination. This is only occurring when the max row count is higher than 8000 and a select list is used for pagination.
    My question is: is the style of pagination, in Oracle APEX (3.1), limited by the potential number of rows returned for the report? If not, is this a bug with my version of Oracle APEX?

    The source of my problem was that the report referenced a page item for the number of rows. That select list referenced a named List of Values (LOV) that limited the number of rows that the report could display. I removed that reference and my problem disappeared!

  • Is it possible to send a request for report pagination?

    Hi,
    I have a page with 3 regions.
    Only one of these regions is displayed depending on a special request.
    This works fine as long as we don't push the select list for report pagination.
    Do we have any possiblities to send a request when we select another rowrange from the pagination select list?
    At the moment we don't get a request after selecting a new pagination.
    The result is that after the pagination there is no region displayed.
    Thanks in advance
    Ulrike

    Ulrike - For reasons like this, it's best not to use REQUEST to control page rendering behavior. Passing an item value so that it stays in session state gives you more flexibility, e.g., P1_SHOW_REPORT:YES.
    Scott

  • Saving session state during pagination

    See
    http://htmldb.oracle.com/pls/otn/f?p=24317:152
    I hacked into the PPR function to save the checkbox value into session state during pagination.
    Is there a way to do something similar for checkboxes in the report itself rendered using htmldb_item.checkbox()?
    Or is this an ill-advised effort?
    [The UI requirement here is clear...I have a bunch of items over many pages and I want to select them using checkboxes and have the selections remembered as I paginate back and forth.
    If you use Yahoo Mail, Compose a new message, click on the Insert Addresses link and it pops up a window with all your contacts, you can select them using checkboxes and go to the Next/Previous page and it remembers the selections]
    Thanks

    See
    http://htmldb.oracle.com/pls/otn/f?p=24317:152
    Click on the Create/Reset collection button to initialize your own private collection to play with.
    The checkboxes are remembered as you paginate thru the resultset. Basically, the state of the checkboxes is saved into session state using htmldb_Get before calling the PPR function to get the next/previous rows.
    Carl, let me know what you think of the approach. Is it a viable approach? Any caveats?
    [Unfortunately, I had to to make a copy of the builtin html_PPR_Report_Page function to make the above modification in it, didnt see a way to avoid it]
    Thanks

  • Report Pagination

    Hi all,
    I tried searching the forum for Report Pagination question. Couldn't find any. May be I've missed it.
    Here is my question. I have a sql report region which displays initial 5 rows. I want to have a link (show all) when clicked, should display all the records. How "Number of Rows", "Number of Rows(Item)", "Max Row count", "When more data found message" attributes of "Report Attribute" page affect the above solution.
    Thanks in advance.
    - Richard.

    Report region has a option to specify the number of rows to be displayed dynamically. It can take the row count from an page item. So create a hidden page item in the same page (Example Name:P21_REPORT_SIZE) and its default value is 5.
    Create two more links in your page for "show all" and "Show 5" some thing like this
    <a href="f?p=20221:21:&SESSION.::::P21_REPORT_SIZE:1000000">Show All</a>
    <a href="f?p=20221:21:&SESSION.::::P21_REPORT_SIZE:5">Show 5</a>
    Edit your report region and set value for "Number of Rows (Item)" as "P21_REPORT_SIZE"
    Enter "Max Row Count" as 1000000
    Now run the page
    If you click the "Show All" link, will display all the records and "Show 5" will show you 5 records.
    You can look at the same at
    http://htmldb.oracle.com/pls/otn/f?p=20221:21
    Regards
    Balaji

  • Interactive report pagination.

    Hi Folks,
               I have a interactive report page with 15 rows per page pagination.I browse to the 4 th segment of the report (i.e 46-60 rows) and moved out of the page through menu link. When I open that  IR page again it still in the  4 segment rather than first (i,e 1-15 rows). Is there any way change the pagination via page header to reset whenever I open the page.I tried all the option in the report pagination nothing works for me. Looking for guidance from you
    Thanks
    Karthik

    Hi Karthik,
    fac586 is correct.
    APEX URL Syntax: f?p=App:Page:Session:Request:Debug:ClearCache:itemNames:itemValues:PrinterFriendly
    I hope you are passing a URL link from java script in page1 and page2. You can pass RP in ClearCache section in that URL.
    for example, f?p=&APP_ID.:3:&APP_SESSION.:::RP:::
    If your IR is not based on any item values then you can create a Reset Pagination process. Refer the link 8.5 Understanding Page Processes.
    If possible share your java script where you are calling the IR page.
    Thanks
    Lakshmi

  • Bug in Normal report

    Hi all,
         BUG  in normal report program, program of to take print of  rejection invoice ,while taking  the printout after creating the rejection invoice value getting differ(ex: correct value = 100 but ts take like 200/3022 like this). after sometime if i take same program  same variant value comeing  correct( ex correct value = 100) taking correct .its little bit diffcult to check in program . Please guide me  the excatly what could be the promblem reason.
    Regards,
    Santosh

    Hi,
    what do you mean by "normal Report".
    Is it a customer or SAP Report?
    Regards, Dieter

  • Reset report pagination using javascript / ajax ?

    Hiho,
    i have a page where i pull a ppr report from a different page using htmldb_get like described in Carls excellent examples. The first page also contains a textfield to set a where condition in the report, for examle to search a streetname..
    Now i need a way to reset the pagination of the report using javascript.
    Example:
    I search for street_name_1 and the report returns 100 rows, 10 rows on each page. Now i use the pagination links to switch throught report pages to page 5.
    Now i search for street_name_2 and the report returns 5 rows, so this would only be one page in the report. But the report pagination still is on page 5, so no results are shown. And no pagination buttons either.
    What can i do to reset the pagination before i pull the report without submitting the page?
    Thanks for help,
    DIrk

    I have similar problem with AJAX report pagination. When I click the pagination for next set of rows, it gives "undefined" error. I'm trying to call "get.clear('RP');" in the javascript function as susggested in above url, but doen't work. any examples are appreciated.
    thanks,
    Surya

  • BUG- Reports pagination

    I have to post this again as it was listed under different topic-
    Description: Only 15 rows are displayed even when no pagination is selected. I have tried log out/clear cookies etc. I have also set max rows to 100.
    I have posted a test case to reproduce this bug
    Test case link:
    http://htmldb.oracle.com/pls/otn/f?p=26867:6
    Run this page
    Here is the description to reproduce this bug-
    created a table called test-
    2 columns- id and description
    Has 27 rows.
    Create a report. Set pagination scheme to none.
    Set max rows to 100.
    Run the page-
    Only shows 15 rows- no matter what you do
    Please let me know if there is a workaround for this as this is crtical for our application
    Thanks
    Kunal

    Kunal,
    Works now, you had the “number of rows (item)” attributes set to 25. This attribute requires a page item reference, typing in a number results into using the default number of rows, which is 15. This attributes also overwrites “number of rows”, so unless you want to specify the number of rows dynamically at run-time, you should keep that field set to NULL.
    Regards,
    Marc

  • Report pagination bug ?

    Hi,
    I have a sql report with 4 parameters (drop down lists) and pagination.
    I run the report I got 100 lines with right pagination.
    I re-run the report with different parameters. I should see 10 lines, but there's nothing, just the pagination indicating that I should see 10 records. After many tests, always the same result, if a report returns less rows than the previous execution, I just got pagination without the reports. I can see pagination changing when I click on arrows, but still no report output !
    Very annoying behaviour, any idea why ?
    Thank you

    I reset the branch pagination, but it's not woriking. I still have that error for the two details reports when I changed the order by of the master report.

  • Anyone else seeing the page-curl bug I just reported to Apple?

    Here's the bug:
    If you import AVCHD footage into iMovie (or even a screen recording made in QuickTime Player) in "Large" (not full size), the page-curl transition will corrupt when iMovie tries to play it back at the original footage's size or larger (i.e.,the effect will corrupt if you have the editing sub-window showing fairly large in the main editing window, or if you use full-screen playback, or you export the final project in a large size, such as 720p, to iTunes). This doesn't seem to affect footage shot with a Mac's iSight camera.
    What will happen is, in, say, a 25-frame-long page curl (either right or left), roughly Frames 5, 6, and 7 will show plain dark gray, where they're supposed to be showing those frames of the first clip in the transition.
    I've been able to reproduce this bug in iMovie 9.0.7 and 9.0.6, on both a late 2009 iMac i7 and late 2009 13" MacBook Pro. My AppleCare Senior iMovie technician was able to reproduce this on both a 2010 and 2011 21" iMac. (I wonder if this also appears in Final Cut Pro?)
    I first noticed this when I upgraded my OS from Snow Leopard (OS X 10.6) directly to Mountain Lion (now running 10.8.1), as Mountain Lion "broke" every single page curl in every single project I'd made in iMovie (which had worked fine until then) over the last two years. I don't know if this bug was introduced in Lion, since I skipped that OS. Anyone out there know/care to run a test?
    The AppleCare tech told me that the chance of this bug's getting fixed depends, in part, upon the volume of users like you who report it to Apple (at www.apple.com/feedback/imovie.html), and here on the boards. 
    So chime in (here, and at the feedback link above) if you have any observations to add. Thanks!

    I saw something that appears to be possible curl corruption today in:
    curl 7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5.
    It stopped outputting the response content 9 characters before the end of the endline-less response and started spitting out a long string of characters that were based on the next thing it was trying to output which was the prompt:
    Last login: Wed Sep 19 18:06:37 on ttys001
    (my prompt that starts with mac-...)$ curl -v -H "Content-Type: application/json" -H "Accept: application/json" -X POST -d '{"name":"testing"}' http://localhost:3000/companies.json
    * About to connect() to localhost port 3000 (#0)
    *   Trying ::1... Connection refused
    *   Trying 127.0.0.1... connected
    * Connected to localhost (127.0.0.1) port 3000 (#0)
    > POST /companies.json HTTP/1.1
    > User-Agent: curl/7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5
    > Host: localhost:3000
    > Content-Type: application/json
    > Accept: application/json
    > Content-Length: 18
    >
    < HTTP/1.1 500 Internal Server Error
    < Location: http://localhost:3000/companies
    < Content-Type: application/json; charset=utf-8
    < Cache-Control: no-cache
    < X-Request-Id: d9dc4adfc8cbf612feedc3d52b17c0b4
    < X-Runtime: 0.150121
    < Content-Length: 89
    < Server: WEBrick/1.3.1 (Ruby/1.9.3/2012-04-20)
    < Date: Thu, 20 Sep 2012 12:23:45 GMT
    < Connection: Keep-Alive
    <
    * Connection #0 to host localhost left intact
    * Closing connection #0
    {"errors":["No route matches {:action=>\"show\", :controller=>\"companies\", :id=>mammamacmacmac-mmac-mac-mmac-mac-mac-mmac-mac-macmac-macmacmac-macmacmacma cmac-mac-macmac-mamacmamamamamamacmacmamacmamammmmmmmmmmmmamamamamamacmammmmmmmm
    followed immediately by my prompt which begins "mac-". It did this only once when I ran it as the first thing in that terminal session.
    Feel free to post that in your support ticket or send me a link and I can post it. There is definitely a bug.

  • Bug in Classic Report based on Function?

    As a simple example, suppose I want a classic report in which I can change the sort field by selecting from the item P1_SORTFIELD. In Apex 4.2 I was able to implement the report using the PL/SQL function
    return 'select ENAME, SAL from EMP order by ' || :P1_SORTFIELD;
    I cannot do this in Apex 5 on my apex.oracle.com workspace. I either get an "SQL command not property ended" runtime error if I use generic column names, or "not all variables bound" parse error if I don't.
    My real application uses generic column names, so I am most interested in a solution to that.  For example, I tried creating a report having the source
    return 'select ENAME from EMP order by ENAME';
    If I run it using generic column names I still get the "SQL Command not properly ended" runtime error.
    Is this a bug??
    Ed Sciore

    Ed Sciore wrote:
    As a simple example, suppose I want a classic report in which I can change the sort field by selecting from the item P1_SORTFIELD. In Apex 4.2 I was able to implement the report using the PL/SQL function
    return 'select ENAME, SAL from EMP order by ' || :P1_SORTFIELD;
    I cannot do this in Apex 5 on my apex.oracle.com workspace. I either get an "SQL command not property ended" runtime error if I use generic column names, or "not all variables bound" parse error if I don't.
    My real application uses generic column names, so I am most interested in a solution to that.  For example, I tried creating a report having the source
    return 'select ENAME from EMP order by ENAME';
    If I run it using generic column names I still get the "SQL Command not properly ended" runtime error.
    I cannot reproduce the same error messages in my workspace on apex.oracle.com.
    The basic problem here is that the function body will not return a syntactically correct SQL query if the session state value of P1_SORTFIELD is not a valid sort expression for the query. This will always be the case when the region source is validated in the App Builder, and also if P1_SORTFIELD is null at runtime. The solution is to ensure that the function body always returns a valid query irrespective of the value of P1_SORTFIELD:
    return 'select ENAME, SAL from EMP' || nullif(' order by ' || :p1_sortfield, ' order by ');
    Here is another weird thing. I looked at my Apex 4.2 application that got transferred over to Apex 5. The region that does the dynamic sorting still works. But now I just created a new region on that page that has the same source, and as far as I can tell, exactly the same properties. And this region gives me the runtime error. The URL is apex.oracle.com/pls/apex/f?p=80034:33 if that helps.
    Given that I can't reproduce your results based on the information provided, I think we'd need access to the app in your workspace in debug mode to investigate this fully.

  • A bug in ORACLE Report query??

    I need to modify my report by adding a description. I can run my query from SQL statement without a problem. However, when i put it in the report, strange result is happening.
    The result for 1 record used to be 1 page only and now went up to the number of record in the child table.
    Parent query:
    SELECT event_id FROM events;
    One of the child query is as follows:
    SELECT event_id, decode(m_event , 0, ' ', 'X') e_major_ind
    FROM event_responders
    I need to make a modification by adding following to the query:
    (select decode (major_event, 0, ' ', ': '||meaning )
    from domain where domain = 'EVENTRESPONDERS_MAJOR_EVENT' and value = major_event)
    So currently I have the following:
    SELECT event_id, decode(m_event , 0, ' ', 'X') e_major_ind,
    (select decode (m_event, 0, ' ', ': '||meaning )
    from domain where domain = 'MAJOR_EVENT' and value = m_event) e_major_desc
    FROM event_responders
    As soon as I added that subquery, I got an unlinked icon in the query box in the Data Model page.
    Any idea? Is this a known bug? or Am I missing something?
    Thank you soo much for your help.

    SELECT ER.EVENT_ID,
           DECODE(ER.M_EVENT, 0, ' ', 'X') E_MAJOR_IND,
           DECODE(ER.M_EVENT, 0, ' ', ': ' || DOM.MEANING) E_MAJOR_DESC
      FROM EVENT_RESPONDERS ER, DOMAIN DOM
    WHERE DOM.DOMAIN = 'MAJOR_EVENT'
       AND DOM.VALUE = ER.M_EVENTIf you can't get it by joining to your reference code table, use a column formula to return the description.
    Good luck.

  • Updateable Report/Pagination - rows found but not displayed

    Bear with me if there is a post that covers this, as the SEARCH facility seems to be hanging when I search on Pagination.
    I have a SQL Query (PL/SQL Function Body Returning SQL Query) which creates an Updatable Report.
    If I run the Query and the selection criteria results in more than one page in the "search results" and then I go to page 2 or page 3, etc and then peform another search that only results in 1 page of "search results", the actual search results will not display, but the pagination will show the number of rows that should be displaying.
    For example, I search on Coroner "John Black", which returns 55 rows. The first 50 are displayed. The next 5 are on page 2. If I then searchon Coroner "Jim Bean", 22 rows are returned (all on page 1). If I then search on "John Black" again, and this time, go to page 2 (to see the final 5 rows in the result set) and then search on "Jim Bean", I won't get any data in the report for Jim Bean, but a message showing that there are 22 rows of data. However, I cannot get that data to show (even if I select NEXT or PREVIOUS for the pages.
    Then if I go back and select on "John Black", get the same problem. I basically have to sign out completely in order to get this reset.
    Note that the problem occurs if you are on a page greater than that of the result set on the next query. For example, if I am on page 3 of 5 pages and perform another selection that has 3 pages, it is fine. But if the result set only has 2 pages, the form becomes confused.
    If the "Layout and Pagination" has a "Pagination Scheme" set to "Row Ranges X to Y of Z (no pagination)" I get an error like "Minimum row requested: 2401, rows found but not displayed: 46".
    If I use "Row ranges 1-15 16-30 (with set pagination)" I get "1-46" as a hyperlink, which if I click on, will show me the report.
    If I use "Row ranges 1-15 16-30 in select list (with pagination) I have a problem.
    If I use "Row Ranges X to Y (no pagination) I have problems.
    If I use "Row Ranges X to Y of Z (no pagination) I have problems.
    If I use "Row Ranges X to Y of Z (with pagination) I have problems.
    Basically, the one one that seems to work is those that have a hyperlink. Uing NEXT, PREVIOUS or a select list does not seem to work.
    Do you know what is causing this problem?

    I have the same issue, but cannot resolve it following above suggestions. I have a report page with search criteria and a "Go" button to submit the search. The branch back to the same page has "reset pagination for this page" checked, but still if run a query that returns just one row after having paged forwards, I get no rows displayed and a pagination link "1-1" that when clicked brings up the selected row.
    I tried adding a "Reset Pagination" process to run on submit (unconditionally), and it made no difference.
    I am using HTMLDB 2.0.

  • Is there any way to hook into the SQL report pagination process?

    I have a SQL report (based on EMP) with a radiogroup row selector.
    The scenario 1 and 2 are in place
    1) When the employee row radio group is clicked the P900007_JOB the text item is populated with the JOB for the employee.
    2) When the page is initially displayed or submitted via the button the first row’s radio group is programmatically clicked and therefore populates the additional job information in P900007_JOB
    Info (radio Group) Employee No Name
    (+) 7369 SMITH
    () 7499 ALLEN
    () 7521 WARD
    P900007_JOB CLERK
    1-3 Next>
    Once the report has been displayed and the next or previous pagination is used then none of the radio groups will be selected and the data in the P900007_JOB text item will still display the job of the last selected employee row.
    What I require is on pagination some sort of mechanism to either
    a) Call the page_init() that should then set the first row as selected and populate the text item via the programmatic click. (preferred option)
    b) OR blank out the additional text item P900007_JOB.
    Is there any way to hook into the pagination process?
    I have a work around – Set the ‘Enable Partial Page Refresh’ to ‘No’ but this means a full refresh every time the pagination is used.
    Details of my page
    Report Region (Based on EMP table) – radio group as a row selector
    select     APEX_ITEM.RADIOGROUP(1,EMPNO,'X21',null) CHECKRG, EMPNO,
         ENAME,
         JOB
    from     EMP
    Report Attributes -
    Report template :- P900007_ROWTEMPLATE (custom template see later)
    Report Attributes Substitution :- id="emp_report" (used in page_init see later)
    Enable Partial Page Refresh :- Yes
    Columns – All columns are selected as show but job is left out of the template below.
    P900007_JOB - Text item in report region (disabled does not save state). Populated with the employees job when the radio group is clicked.
    Control region :- HTML region that just holds a button <GO> just to submit the page and redirect back to the same page.
    P900007_ROWTEMPLATE (named column row template)
    Row template 1
    <tr style="cursor: hand; cursor: pointer;" onmouseover="row_mouse_over(this, 1)" onmouseout="row_mouse_out(this, 1)" #HIGHLIGHT_ROW# ">
    <td class="t15data" onclick="selectRow('#JOB#');">#CHECKRG# </td>
    <td class="t15data">#EMPNO# </td>
    <td class="t15data">#ENAME# </td>
    </tr>
    Before rows
    <table class="t15standard" summary="" #REPORT_ATTRIBUTES# id="report_#REGION_STATIC_ID#" >
    <th class="t15header" #ALIGNMENT# >Info</th>
    <th class="t15header" #ALIGNMENT# >Employee Number</th>
    <th class="t15header" #ALIGNMENT# >Name</th>
    After Rows
    <tr>
    <td colspan="99" class="t15afterrows">
    <span class="left">#EXTERNAL_LINK##CSV_LINK#</span>
    <table style="float:right;text-align:right;" summary="pagination">
    #PAGINATION#</table>
    </td>
    </tr>
    </table>
    *Javascript in page Header*
    <script src="#WORKSPACE_IMAGES#apex_show_hide_region.js" type="text/javascript"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    function selectRow(pJob)
    /* console.log('pete got here!'+pJob)*/
    $x('P900007_JOB').value =pJob;
    /* Start Page init*/
    function *page_init*()
    /* Used to set radio groups on reports */
    /*console.log('START pete got here!');*/
    var is_checked = false;
    var l_check = $x_FormItems($x('emp_report'), 'radio');
    /*Loop and set flag if checked*/
    for(var i=0,len=l_check.length;i<len;i++)
    if(l_check.checked){
    is_checked = true;
    /*end loop*/
    /*If none checked force a click*/
    if(!is_checked){
    /*no longer need as doing click below*/
    l_check[0].checked=true;
    /*Force a click on the first radio group - extra details should then be
    populated*/
    var l_click = l_check[0].click();
    /* console.log('END pete got here!');*/
    /*END page_init*/
    // -->
    </script>
    *Application shared component.* – This fires a DB packaged procedure when the page is loaded.
    P330_PART_NO_HIST
    Process Point On load after Body region
    Process Text show_hide_memory.part_no_history_details();
    *Packaged Procedure* – This kicks off the page_init javascript in the header (earlier) to click on the radio group in the first row.
    PROCEDURE part_no_history_details AS
    BEGIN
    htp.prn('<script type="text/javascript">' || CHR(10));
    htp.prn('<!--' || CHR(10));
    htp.prn('page_init();'|| CHR(10));
    htp.prn('//-->' || CHR(10));
    htp.prn('</script>' || CHR(10));
    END part_no_history_details;
    Thanks Pete
    Edited by: Pete @ LSC on 26-Jan-2010 06:56

    Anybody any ideas? Should I be looking down the route of using my own pagination buttons and adding my code to this?
    There seems to be a routine $a_report that I can use for the pagination but I am finding it difficult to get the current first and last record values that I would need to pass. I've seen references to below in the form but when I'm using partial refresh they do not seem to change.
    wwv_flow.g_flow_current_min_row
    wwv_flow.g_flow_current_max_rows
    wwv_flow.g_flow_current_rows_fetched
    wwv_flow.g_request
    Thanks Pete

Maybe you are looking for

  • User SAP* is active. No other users can log on.  Now What?

    After the last time I restarted the portal, I get the following message when I try to logon: User SAP* is active. No other users can log on Before the reboot, I was trying to configure LDAP. I changed the Data source from "Database Only" to "Read-Onl

  • Upgrade from 10.2 to 10.4 on iMac G3 600 MHz ? OS install disk ejects.

    I am trying to help my friend with this one. I gave her my old iMac G3 600 MHz. it has 384 MB memory and currently has Mac OS 10.2.8 which I had installed previously. Now she has a new iPod nano and so the iMac needs the OS system upgraded to be able

  • Both headphones and speakers play aloud at the same time, why???

    I have just purchased macbook pro... im in windows XP right now. I installed an mp3 player, Winamp, put my headphones on and the music comes through the headphones AND the speakers on the laptop at the same time. Why is this? I thought sound is muted

  • Error whlie registering the oracle home in oracle 9i

    Hi, I am doing the oracle_home software cloning in oracle 9i.After the copy process of home i tried to register the Oracle home with the central inventory. I tried so many commands to register the oracle_home but still i am getting same error in my l

  • Access to individual photo files in Finder

    I recently updated to iLife 08. I've noticed a couple of things but the most confusing is that when I go through finder>pictures>Library.iPhoto instead of having "roll" folders like before, I now only see the iPhoto icon (the sunset pic to be exact).