Layout and Pagination Problem

I had created a web page with a filter parameters on top of the web page and a report region with a report with an SQL query in PL/SQL Function Body Returning SQL Query. This is similar to the Issue Report in the Issue Tracker System example.
The problem is if you are on the last page of this report and then click edit to edit the last record on this page and delete it in the edit webpage then when you return to the Report page, you will see something like 1-5 of 25 in the list with a Next link on the right. If I click the Next link it just displays the same page again. You have to select some other item in the list then it will display some data again. How can I avoid coming back to an empty web page? Or just at least display the previous button so they can go to the last page of data which is now the last page of data. This does not seem quite right here. Also a similar problem happens with filtering if you are on the last web page. Sorry I am wordy and also new to HTML DB!

I get this problem as well. The workaround is to fire a reset pagination process when the submit/delete button is pressed.
This will then reset the pagination to the first record on delete or submit avoiding the blank page problem (only draw back is you may be on the last record page and will now find your self back at the first record, but i think it beats getting a blank page!!)

Similar Messages

  • Report attributes - layout and pagination

    When you set the pagination scheme to Row Ranges X to Y(with next and previous links), Number of Rows to 15 and Max Row count to 1000, I need to know what happens with the query. When the user selects the next (or previous) 15 records, does the region's query fire again and query all 1000 (or more) records?
    I hope this makes since. I just need to know if the application is selecting all the records over and over as the user move through the report.
    Thanks

    Thank You, Thank You, Thank You.
    That is indeed the point I am trying to make.
    My report is a SQL Query (PL/SQL Function body returning SQL Query) and is based on information provided in several PopUp LOVs. The more LOVs used, the more information provided to the WHERE CLAUSE, and therefore the less data returned to the screen.
    When the End User produces a small report, they are likely to want to sort it.
    But when they bring back huge amounts of data, they don't want it sorted. Especially not automatically sorted.
    In most cases, this is happening when we are joining two or three tables with say 10 million rows on each table. The join condition is good (meaning there is not a Cartesian Product) but the resultant data is 10 million rows - something you not likely want to sort. Even with a limit on the number of rows returned (Report Attributes - Layout and Pagination - Max Row Count) to something reasonable, like 500, the 10 million resultant rows are first being sorted and then the first 500 returned.
    So, yes, a "sort-enabled" report should NOT automatically sort. Which is what is happening.
    Of course, it might be a good thing to have some sort of Variable that we could set on a page to decide if we want automatic sorting. On most pages, an automatic sort is great - as the amount of data returned will always be small.
    On the pages where I have this problem, it would be great to do the automatic sort when one or more of the PopUp LOVs are populated. So, within a "After Submit" process I might want to turn automatic sorting on.
    Hey, if we are going to ask for an enhancement/change, we might as well ask for something really flexible.

  • Layout and Pagination... Limiting my data to top 500 records

    Hi,
    My report is based on SQL, it's displaying only top 500 records... May I know how to fix it...?
    I've tried different options under Report attibutes -> Layout and Pagination but no success yet
    Thanks

    Try closing OAE and the application if running.. Seems like the changes don't take effect until you come back into OAE... At least that is what mine does.

  • Layout  and style problem

    HI
    I am building a new dashboard using one of the templates given in the program. Two things that are bugging and giving problems are with the styling in the spreadsheet. I formatted targeted cells in the spread sheet to use certain colors and font alignment in the cell's , but when i update the spread sheet in the dashboard, it does pull over the right cells with all the macro's but doesnt pull over the right styling. The text color is some thing else and it doesnt want to use the text alignment in the cells. I have to use certain colors because of the branding of the company. Please help
    Thanks

    HI
    The macros in my excel work sheet call information from my excel data sheet. These two sheets then give style and data information through to the dashboard for the spread sheets used to display some cell information. Must i change the targeted cells color through script or enforce the style with script ? Cause i used the standard excel cell properties to do the formatting and have never had any problems with it not styling the dashboard right in the past. Can it be that my macros on the cells cause the cell style information not to be given to the dashboard?
    Thanks

  • Apex 4.2.1: Region table layout and pagination

    See https://apex.oracle.com/pls/apex/f?p=57688:2
    Theme 24, table-based layout. Page template = One Level Tabs, Left Sidebar.
    All 4 regions are report regions using the report region and 2-column portlet as the region and report templates respectively.
    Regions 1.1 and 1.2 are supposed to be in the same row in different columns so 1.1 has New Grid=Yes and 1.2 has New Column=Yes. Ditto for 2.1 and 2.2
    1. Trial and error shows that simply changing the Pagination of report region 1.1 from None to Bottom-Right causes the layout to shift such that 1.2 moves to a grid row by itself! What is going on here? Surely a "trivial" change like whether pagination is displayed or not shouldn't cause such a major layout change. Am I missing something?
    2. Regions 2.1 and 2.2 stick together. How can we add some breathing room between them?
    3. If the page template is changed to One Level Tabs, No Sidebar, the behaviour changes. All the regions are rendered in 1 column, ignoring the New Column grid layout setting. Why is this?
    4. In general, with all the layout changes in 4.x, I was under the impression that, when using a HTML Table based page template, simply using the New Grid/New Row/New Column, etc attributes on the Region attributes would be sufficient to build pages with intuitive, declarative layouts with arbitrary "boxes" laid out on the page, regardless of the content/region type. But that doesn't appear to be the case.
    Can some CSS expert (here's looking at you, Paul) please share some insights on how all this works?
    Thanks

    VANJ wrote:
    Can some CSS expert (here's looking at you, Paul) please share some insights on how all this works?Hi Vikas
    Regions 1.1 and 1.2 are supposed to be in the same row in different columns so 1.1 has New Grid=Yes and 1.2 has New Column=Yes. Ditto for 2.1 and 2.2With table-based region layout I'm getting a Column number selector rather than a New Column switch.
    1. Trial and error shows that simply changing the Pagination of report region 1.1 from None to Bottom-Right causes the layout to shift such that 1.2 moves to a grid row by itself! What is going on here? Surely a "trivial" change like whether pagination is displayed or not shouldn't cause such a major layout change. Am I missing something? No abstruse CSS here, just Pagination Sub-template and table-less layouts coming home to roost.
    Unlike the majority of report templates, the 2-column portlet report template doesn't have an outer HTML <tt>table</tt> to act as a container for the engine-generated pagination <tt>tr</tt>. The pagination row is thus treated by the browser as starting a new row in the current open table&mdash;the region layout. Having the pagination <tt>tr</tt> injected into the 2-column portlet source turns it into tag soup. The whole thing spectacularly fails HTML validation.
    I expect the official Oracle line is that 2-column portlet reports are not supposed to use pagination.
    2. Regions 2.1 and 2.2 stick together. How can we add some breathing room between them?Add this rule to the page Inline CSS. This will add some space on the left of all region cells except the first in the row.
    .regionlayout td+td {
      padding-left: 10px;
    3. If the page template is changed to One Level Tabs, No Sidebar, the behaviour changes. All the regions are rendered in 1 column, ignoring the New Column grid layout setting. Why is this?If this is the layout shown in your link above then I'm not reproducing it. Can you upload an export of your app and provide a link to it?

  • Report - Layout and Pagination bug

    Hello,
    I am using Oracle 10g XE. I was trying to add pagination to a report, it is working ok but if I select for the display position "Top and Bottom" only the bottom pagination is visible.
    Is this a bug?
    Catalin Florean.

    Hi,
    There are Top and Bottom – Left and Top and Bottom – Right.
    I suppose that you have something wrong in the SQL Query or in the report.
    Make a new report using the wizard. Then use Report Template – Standard and Top and Bottom – Left.
    Konstantin

  • Layout and Pagination

    Hi,
    I am using sql based report... my issue is that report only shows 15 records...
    how can I change the number of rows from 15 to ALL... Please advice
    Thanks

    Hi,
    Go to Report Attribute and change the Number of Rows and Maximum Row Count to a higher limit. Thanks.
    Regards,
    Manish

  • WebCenter Space Layout and Customization problems

    Hi all,
    I am new in Webcenter Space and I wonder is there anyway to do the following tasks:
    1) Change the alignment of the left most side bar label (default is align right)
    2) Remove the picture for user profile
    Also I found that the left side bar item cannot get refreshed/updated after changing settings in personalization page (such as show and hide pages)
    I have searched in OTN and there is no similar solution, any pointer is highly appreciated. Thanks

    You can publish your customized portlet in the catalog. For this, you have to create a Mashup from the WC Administration > Mashup, add portlet on this mashup from catalog, customize it and then add this mashup in catalog from WC Administration --> Catalog. You will find all these mashups in Taskflows section of Catalog.
    Using this approach, you cannot personalize your portlet.
    Regards,
    Imran

  • TabExplorer layout and Paginator

    Hello!
    I am facing this incident:
    I am using a KM Navigation iView with a TabExplorer layoutset (the default layoutset provided by SAP). These KM Navigation & layoutset fail when I click on the pager links at the botton of the iview.
    I mean, when I click on the link in order to move to the next or previous page nothing happens, I am always stuck on the same page (by the way, the first page).
    I hope to be clearly enough.
    Any ideas??
    Any help will be welcome, and thanks in advance.
    Greetings
    Marcelo.
    ps: I am using Netweaver 2004s, EP 7 SP 11

    Hello again:
    searching at SAP Notes I found this:
    Note 987865 - KMC NW04 SPS20 / KMC SAP NetWeaver 7.0 SP12.
    and it textually says that: "UI: Pager did not work inside the Tab Collection Renderer."
    well, I do not know waht to do now........please help me!!
    thanks!!
    Marcelo

  • [SOLVED]Updated to Xorg 1.6.1 and the problems started...

    Hi all, I upgraded whole system and xorg 1.6.1 got installed...now it wont let me configure it!!! which is so lame
    I mean I am not sure if everything changed in the way we used to configure X - by modifying /etc/X11/xorg.conf
    but now there is no such file! my ctrl+alt+bkspace wont work, I cant switch between virtual consoles...:o
    The 'xorgconfig' command does not work for me anymore...I tried searching forums and done googling..but got no solutions so far
    Any help guyz...or a pointer atleast...really bummed out for the fact that I cant switch consoles and that xorg.conf file gone missing..
    Last edited by kapz (2009-05-09 19:36:09)

    kapz wrote:
    @ rusty99 and joe90 --- I appreciate the help u guyz. But its nott worrkinggg!   Help!
    I did everything right from modifying xorg.conf(the dontzap and dontvt switch thing) to modifying the /usr/share/hal/fdi/policy/10osvendor/10-keymap.fdi file and adding code to .xinitrc file...but its just that I suspect my keyboard is not being detected properly! but its not just in X....I disabled X(from inittab) and did a console login, but the same thing-It wont switch terminals!   I checked almost all the keystrokes and found them to be perfect except the alt key, the alt key works sometimes and it doesnt most of the times, like for eg. I checked in firefox by doing alt+left arrow(go back one page) which does not work! BUT alt+home key works in 2nd go(always!) ...rest ALL the keys work fine, including the Fn keys.....I also did a test in KCalc, I tried to change the shortcut key, so when it asked me for the replacement key I pressed alt(both) and It would not take it! I pressed ctrl key and it recognized it immediately! and I checked all the keys to be working fine there.....What can I do here for the alt keys?
    My keyboard is of US layout and it has 111 keys, it has the 2 win-logo keys and a ms-menu key in addition to the normal keys.
    Cant believe the problem is with the keyboard ALT keys----( And I checked that the alt key works fine with kubuntu)
    Does the ALT key work at the console, and can you switch virtual consoles outside of X?
    If not, do you have your KEYMAP set up correctly in /etc/rc.conf? (think for you should be KEYMAP="us")
    Other than that have reached the end of my knowledge
    Last edited by Joe90 (2009-04-20 08:11:40)

  • Server 2008R2 mapping to shared folders fails users of Windows 8.1 but seems OK on Windos 8.0 and no problems for Windows 7

    Having read what I could from the related questions, the answers still elude me.  This issue apparently is specific to Windows 8.1.
    First, a little background.
    1:  The server is not on a domain,  The system runs Server 2008-R2 standard with all folders shared across a standard "Workgroup" type network.  They would prefer to
    leave this layout intact. 
    2:  The shared folders are nothing but Data files.  There are no active system folders or anything used in an "active" environment.  They are mostly Word doc, excel
    files, pdf, txt, etc.  However, due to the requirements of the software that needs to access these files, they Must
     reside on a mapped network drive letter. Nothing else works due to the way the SQL database program stores the reference points back to the data.
    I have had some success using what amounts to a “simulated” mapping using  WebDAV to access the server.  But access speed is a lot slower ad file size is limited.
    3:  The system has been configured as-is for the past 3 years with Users all on Windows 7 x64 (mixed OS, some Home Premium, some Professional) and the only problems that come up are when
    access is through an ISP that blocks port 445.  This was the original reason for finding a WebDAV/Cloud method just for those Users since they were unable to Map drives to anything on the Office Servers from their Home Internet even when using a VPN.
    When Windows 8.0 became the only version available, I added a few users whose new laptops came with 8.0 from the vendors.  While there were a very few minor problems, for all practical
    purposes, I was still able to provide access to the mapped folders.
    As the Windows 8.1 roll-out progressed, some users were successfully upgraded while others  are still stuck in Windows 8.0.  The issues with this seem to be hardware related and vary
    depending on the Make and model of the laptop.  I have been assured that eventually all of these will be able to advance to 8.1.  But this delay has given me an excellent mixed OS environment for testing.
    On the users who have not yet purchased new equipment and who are still using Windows 7.  There has been no change.  Their drive mapping is stable and they can always connect as usual. 
    Those blocked from lack of port 445 or still blocked.  Systems inside the Office and those with ISP's who allow port 445 can use all mapped drives as normal.
    Users who had Windows 8.0 and who have not yet been able to upgrade to 8.1 also have been unaffected.  Same results as Windows 7. 
    Users who got the Windows 8.1 upgrade as well as those that came factory loaded with Windows 8.1 seem to be a never-ending list of problems.  The ones that came native with 8.1 are worst
    of all.  The list of error codes runs through everything that has to do with “communication with the server”.  As far as I have seen, this appears to be the issue.
    Whether they are in the office on a wired network connection or at home on a Wi-Fi connection, the issues have the same results but the actual error codes may vary slightly.  All of
    them refer back to an inability to communicate with the server.
    Nothing on the server has changed in any way.  Users with Windows 7 continue to have zero problems,  Users with Windows 8.0 seem to be doing fine as well.  Only those with Windows
    8.1 are affected and their problems are dramatic with everything from a total loss of drive mapping to misdirected data when the maps are active.
    I have tried to make the drives automatically remap on reboot. I have tried registry modifications.  I have done everything I can think of to make a difference but the results are the same
    for every system using 8.1.  The mapped drive letters invariably disappear.  Sometimes while the system is in use ( I think I have been able to trace this to times when the system enters Sleep or Hibernate) but always when the system reboots. 
    One detail that might point to somewhere is that the "time to connect" when mapping the drive is so long that I believe some of the original failures were due to not waiting for a
    minimum of 3 or 4 minutes to give time for the Shares to show-up in order to map them.  Once the mapping is successful, the file access speed seems normal.  But invariably, the drive becomes "unmapped" repeatedly each day.
    I know this was a long question but I have tried to provide every possible detail for anyone who has experienced events like this who may already have a solution.  I would even be glad
    to purchase a 3rd party application if that is what it takes to get this to work.  My next planned effort is to try using Server 2013 but I am afraid that might open another can of worms for those who still use Windows 7.
    I have also been told that this is in some way related to the push to "Cloud" support in Windows 8.1 OS but I do not see where this would come in.  I can say that this was the
    one place where things continued to work as before.  People who had Windows 8.1 and who had to use the CLOUD copies of our data are still able to connect to it with no problems.
    Any suggestions appreciated.  Preferably those that would not need extensive changes to the basic network structure.  This "workgroup" consists of less than 25 users and any
    extreme measures would be hard to justify

    Hi,
    I sugget you try to ping server so that we can verify the connectivity.
    Can windows 8.1 access Windows Server 2008R2?
    Also,please check the event viewer to see if some error log appeared when the issue occurred.
    Regards,
    Kelvin Xu
    TechNet Community Support

  • [Solved] Can't login with current keyboard layout and `@` in password

    Hi, I'm a new arch user. I followed archwiki to install Enlightenment17. All went fine but I have a problem to login since during setup I inserted '@' in root/regular user passwords. During setup I selected the Italian layout and all seems ok, except grafical login through entrance (from aur, but I tested also kdm, with same results): password not recognized. Before asking, is not a CAPS/NUMLOCK issue since the password works using it in console login. I discovered that I can type '@' with the following combination: SHIFT+2; in an italian keybord this should print a double quote (") but in entrance (and kdm) it correponds to '@'. After login this way, the keyboard works normally (for instance using 'su'). So the problem is limited to graphical login (entrance and kdm) during which a different keyboard layout is used.
    Did I miss some config file?
    For the sake of clarity:
    1) /etc/locale.gen has "it_IT.UTF-8 UTF-8" uncommented
    2) /etc/locale.conf contains "LANG=it_IT.UTF-8"
    3) /etc/vconsole.conf contains "KEYMAP=it"
    4)
    $ locale
    LANG=it_IT.UTF-8
    LC_CTYPE="it_IT.UTF-8"
    LC_NUMERIC="it_IT.UTF-8"
    LC_TIME="it_IT.UTF-8"
    LC_COLLATE="it_IT.UTF-8"
    LC_MONETARY="it_IT.UTF-8"
    LC_MESSAGES="it_IT.UTF-8"
    LC_PAPER="it_IT.UTF-8"
    LC_NAME="it_IT.UTF-8"
    LC_ADDRESS="it_IT.UTF-8"
    LC_TELEPHONE="it_IT.UTF-8"
    LC_MEASUREMENT="it_IT.UTF-8"
    LC_IDENTIFICATION="it_IT.UTF-8"
    LC_ALL=
    Thanks for any help.
    Last edited by bull3t (2013-03-03 14:10:15)

    cfr wrote:Have you tried specifying a variant?
    I exclude a variant problem considering that in any other condition the keyboard layout is right. The system is configured for an it KEYMAP but it is obvious that in entrance/kdm is used an 'us' map. Is this hardcoded somewhere? I also tryed to comment out any entry in /etc/locale.gen except 'it_IT.UTF-8 UTF-8': still 'us' keymap in graphical login screen.
    Probably a kind user with a non-us keyborad layout could create a dummy user with password containing '@' or '#' or any other special symbol to verify that this condition is reproducible, a first step for a bug report.
    Cheers

  • In Initial View, can you set defaults for Navigation tab, Page layout, and Magnification?

    Adobe Acrobat 9 Pro V9.4.0
    Win7 Pro x64
    Problem: In Initial View, can you set defaults for Navigation tab, Page layout, and Magnification?
    Every time Acrobat scans a document, I have to go to Initial View to set Navigation tab, Page layout, and Magnification. It does not remember the settings I last used.
    Thanks in advance.

    See my response to this post

  • CSS layout and Internationalization of JSF apps

    We use message bundles to handle internationalization in our JSF applications. This approach seems to work as we used HTML tables (or rather <h:panelGrid> tags) to layout components on the page.
    We had numerous customer complaints about tons of extra white space left on the screen in languages like German (where some words are very long). There are other issues with grid layouts, and we decided to give CSS positioning a try.
    I wonder, what folks on this forum think about using CSSP in conjunciton with JSF components. Also, given that text strings have different length in different languages, what is the i18n approach? Afterall, coordinates that work in English may not be accurate in German.
    Any suggestions, ideas, pointers would be greatly appreciated.
    Thanks,
    Vadim.

    Hi guys.
    The problem seems a little bit weird. But you could try the following. It is just the idea.
    1. You should recover the .properties file and get the Map for the current Locale. This should have to be done maybe in the Backing bean.
    2. Get the maximum length of the UIOutputText elements present in the form that you need to control its length. Now the important thing here is that you should have the value atribute of the UIOutputText objects based on an internationalized Base Bundle prefix. Just cut -based on the substring of the value attribute- the name of the property.
    3. Consider that you have to look in the Map the entry you just obtained from the UIOutputText object. After get the value of that Map entry (a String object) and get its length. At the end of the loop you sould have get the maximum length in characters of the component values to be displayed.
    4. Fix that value as an attribute in the backing bean.
    5. Use the output of that value to generate the style in CSS, as an String attribute of the Backing Bean. Base your CSS construction in "em" measures
    6. Change the -style- attribute in each component to reflect the correct length using CSS like this -style="#�{backingBeanName.style}"-. With this you will get an space dependent of the length of the localized values.
    Again. It is just a suggestion, I had not tried it already but I guess that will be my way in that case.
    Greets from Ecuador

  • Tree Layout  and a Where Clause

    I have built a uix application using Jdev (10.1.2) + Jheadstart (10.1.2). I followed Jheadstart for ADF developer’s guide (10.1.2) for creating a page with a recursive tree, tree layout style and it works well. Now I need to apply a where clause, programmatically, on the view I am using for generating the tree and the problem is that the where clause 'gets lost' on the child view before the page is displayed. How do I fix this?

    rbackmann wrote:
    And the page_id_1 is a field in the table (SORRY EXAMPLE BAD NAMING CONVENTIONS) that IS VARCHAR
    and houses a comma seperated list of page numbers ie 28,29, 30Okay, I was wrong about the field name :(
    Carefully examine the query, expecially the INSTR line. Get the values in both the column and the bind variable and make sure they are what you think they are.
    The example on the other post might have failed because you were equality comparing the column value to '28' when it might have been a csv with commas unless you changed it (something worth trying).
    On 4th look I may (or may not) have something. PAGE_ID_1 is a VARCHAR2, while the 28 you compared it to was a number. Its a long shot, but maybe SQL is trying to convert the csv field to a number, failing to raise an error message where you can find it, and failing for that reason. Try using '28' on the equality test.
    Edited by: riedelme on May 8, 2009 6:03 AM

Maybe you are looking for

  • Report for open sales order

    Dear all, I need to create a open sales order report. Could you please tell me from which table i can get open sales order. Its standard report is VA05 and also I checked in table VBBE. but all record which i get from VA05 are not visible in VBBE tab

  • How to create read only Apex items

    Hi, I'm creating a report using Apex items to display the result values inside editable text boxes. They are then referred by using APEX_APPLICATION.G_F02 etc. My requirement is to make the last row of this report (the values for "Total") as non edit

  • How to identify the po documnet type in automatic creation of po shipment

    hai experts          we are facing some problem in transportation proess. For us automatic po is not generated we checked all confiuration settings we could't find out that .  how can we identify what po document type is linked to this process . can

  • 5.0.1 update - Exchange can't sync past 1 day

    After an OTA update to 5.0.1 on iPhone 4 (ATT) I can no longer sync my exchange mail past 1 day. I have tried three days, seven days, etc. Connection to server fails. One day is fine. Oh, and battery life absolutely stinks.

  • Multiple selection screen is blank in screen personas SP2..

    Hi, When i click on multiple selection button, in the next pop-up screen getting blank data. Unable to enter the values to execute the transaction. Please suggest.. Regards, Govind