Pagination do not have choice of returning all rows

I have apex 3.0. When report is built, I normally give pagination scheme "Row Rnages 1-15 16-30 in select list (with pagination)", Number of Rows 15, Maxium Row count 2000. Problems are
1. Can not have "all rows" as select list choice ? (OEM grid has that choice)
2. Cna not change from 15 per page to other number
Can some export help ?

Even changing number of rows will not change it. But really the question is to mix pagination and no pagination into ONE select list. I have been asked several times from users and I am puzzled about this myself.
Any expert there ?

Similar Messages

  • Tabular: Row filter on USERNAME() still returns all rows if current user is NOT matched in table??

    I have a table (basically the same setup in the various dynamic security in tabular blogs) where the table contains WindowsUserName stored as domain\username.
    I have a Row Filter on the table: SecurityTable has a filter of =SecurityTable[WindowsUserName]=USERNAME()
    When a user connects to the tabular model AND their name is matched in one of the rows they return JUST the rows with their match.  Which makes sense.
    However, if a user connects and their Windows user name is NOT in a row in that table....they return ALL rows???
    That makes no sense to me.
    It behaves almost as if it is doing a check and if it DOESN'T find a match it just returns all values.
    What am I missing?
    --------------EDIT-----------
    Found the issue: that use was (unknown to me) a domain admin, so... admin rights trump all :)

    Resolved:
    User had admin rights, didn't realize this at the time.

  • I am backing up my macbook 10.5 to an external harddrive probably formatted  for a PC.  I was trying to move instead of copy and the folder partially copied then said i did not have permission to move all my files.

    I am backing up my macbook 10.5 to an external hard drive probably formatted for windows.  it was let me move most of my files.  however i tried to move instead of copy a very large folder (60gb) and it transferred most of the files onto the external hard drive then gave me an error message saying i did not have permision to move all the files.  i am worred that some were moved and some were not.  it is showing all files when i checked for some of them
    my question is if i move instead of copy and i get an error message does os x just copy the remaining files instead of moving them?

    Typically when you drag files from one drive to another, Macs copy them, not move them.  You usually have to copy them and then delete the originals.
    Which files were you trying to back up?  If this involved system files or application files then there may have been hidden files, or files with certain permissions set on them.
    If you're doing this as a gneral backup I would not use a PC formatted drive since that introduces its  own set of issues.  I would use a Mac formatted drive and then a cloning tool (Carbon Copy Cloner, SuperDuper, others).

  • I want to give my old iPhone 4 to my grandson to use like an iPod Touch. Wifi only. How do I deactivate my info..so he can buy his own apps. and not have the cloud pushing all of my data to the old phone?

    I want to give my old iPhone 4 to my grandson to use like an iPod Touch. Wifi only. How do I deactivate my info..so he can buy his own apps. and not have the cloud pushing all of my data to my old phone?
    Just turning off Cloud will not prevent him from turning it back on.
    Rignt now, if he uses the App store, iTunes thinks it's talking to me.

    First, turn off iMessage, FaceTime & delete the iCloud account, while your sim is still in the phone. Then: Settings>General>Reset>Erase All Content & Settings. Give it to your grandson & he gat then set it up as he wants.
    Important your turn iMessage & FaceTime off to disassociate the phone from your Apple ID. Apple "claims" to have fixed this with iOS 6.0, but until I can absolutely confirm such, I still recommend you turn all of that stuff off first.

  • How do I get a longer list of items in the history window - and not have to click "Show All History"? The default list is too short.

    How do I get a longer list of items in the history window - and not have to click "Show All History"? The default list is too short.

    Well I figured it out… all you do say show commands :-/

  • I do not have any sounds at all.

    I do not have any sounds at all. All volumes are turned up. No rings, no vibrations and card games have no sound.

    Make sure the side switch (above volume buttons) is not set to mute.
    Make sure Do Not Disturb is off (Swipe up from the bottom of the screen to access Control Center and make sure the moon icon is not lit)
    Try a Reset: Hold the Sleep/Wake and Home buttons and don’t let go until the screen goes dark and the Apple logo appears (no data will be lost)

  • My pad does not have any sounds at all

    Please . My ipad does not have any sounds at all .. I dont know what to do
    I shut it off while there was music playing and when i turned it back on , there was no more sounds completely

    There's a little button by the volume rocker switch that's a dual purpose button. It's an all mute or a rotation lock. Could you have flipped that button by mistake?

  • Query to return ALL rows even those with zero counts

    Hi,
    The following query will return only those rows that have a non zero count value:
    select c.id, a.name, count(*) as XYZ from CON c, CUST a
    where c.help !='1' and (c.id = a.id) group by c.id, a.name order by c.id;
    The results are:
    1 ME 3
    3 YOU 4
    What i want is to return all rows in CUST and the count, XYZ, that correspond to each row in CUST that matches the whare condition above, even if the count is zero.
    ie
    1 ME 3
    2 WE 0
    3 YOU 4
    Can this be done?

    You may want to get the counts then do the outer join. If you simply count with an outer join you will get 1 for 'WE' because there is a row in the cust table with 'WE'. This may work for you;
    with
      cust as (
       select 1 id, 'ME' name from dual union all
       select 2 id, 'YOU' name from dual union all
       select 3 id, 'WE' name from dual),
      con as (
       select 1 id, '2' help from dual union all
       select 1 id, '2' help from dual union all
       select 1 id, '2' help from dual union all
       select 2 id, '2' help from dual union all
       select 2 id, '2' help from dual union all
       select 2 id, '2' help from dual union all
       select 2 id, '2' help from dual)
    -- end of test data 
    select a.id, a.name, nvl(c.cnt,0) xyz
    from cust a, 
       (select id, help, count(*) cnt
       from con
       where help !='1'
       group by id, help) c
    where a.id = c.id(+)

  • Regular Report Not Returning All Rows

    Greetings,
    On APEX version 4.1.1.00.23 Using latest versions of Chrome and IE. I found some threads that discussed this aspect some, but not to the extent that is helpful to my situation.
    I know it is crazy to have APEX return 40K+ rows on a report, but I have a need to do so. I need to return that many rows from a table so that an APEX page can be opened via Excel and then have an Excel macro run over the report results and import all 40K+ rows into a worksheet. As I said, that's crazy, but the decision isn't mine. :-) We have the macro working and it passes parameters to the APEX page and imports data from the APEX page.
    Also, the report has 14 columns on it, not that many.
    Given the requirement above I have a regular report page that only has the report and 2 page items on it. The page items contain values that are passed via Excel and are then used in the WHERE condition of the report. Using the same WHERE condition, when I run the SQL for the report outside of APEX it returns 46,840 rows. I have the both the Number of Rows and Maximum Row Count settings set to 50000. And, I have the Pagination Scheme set to Row Ranges X to Y of Z (with pagination).
    When I run the page and enter the selection criteria the report only returns 15,500 rows. Yes, that's a lot rows. And, it takes about 5 minutes to populate. But, it doesn't return ALL of the rows. Also, the pagination suggests that all rows were returned because it reads - row(s) 1 to 15500 of 15500. I have changed the pagination and max rows settings a lot to see of it's just a matter of having the correct report setting. I've yet to find a setting that will cause the whole 46840 result set to be returned.
    It may end up that the report selection needs to change in order to return fewer rows. But, regardless of that why isn't APEX returning the complete result set now? And, is there a way to force it to return the complete result set regardless of the size?
    Any suggestions are appreciated.
    Thanks, Tony

    cloaked wrote:
    Thanks for the response. Yup, you're correct. Downloading to a CSV might be better. I've set reports up that way many, many times. I have even developed pages that import from a CSV into APEX using PL/SQL, years before it was an APEX feature. I initially set the report up to allow it to be downloaded, but the user doesn't want it to work that way.
    The worksheet will be used by a lot of people in our accounting department and they want the process to be as simple as possible. Right now Excel opens up the APEX page, logs into the application, passes parameters to it for the month and company, hits the Select button, waits on the report to build, then automatically imports it, and finally closes the page. It is quite slick. Yes, it takes 5 minutes to run, but the user is OK with that given what the automation provides.
    So, in order for the automated import to work properly all 45K rows need to display on one page, without pagination. I currently have pagination on the page simply to determine if APEX is returning all of the rows.A process of this nature might work better using an export: XML or export: CSV report template, which won't go anywhere near pagination. When a page containing a report using these templates is requested APEX sends the report results in XML or CSV format rather than rendering the page. This should be faster, avoid complications with pagination, and be easier to parse in Excel.
    Previous thread along similar lines: +{thread:id=2285213}+

  • I cannot open Firefox so decided to try and uninstall and reinstall, when the uninstall or install wizard starts I keep getting "Firefox must be closed to proceed, please close Firefox to continue" but i do not have Firefox open at all.

    Originally I was having a problem with Firefox locking up everytime I went to a website and tried to X out of it, there would be no response. Or the little box would come up with the question on whether i wanted to Quit or close tabs, I would make my choice but nothing would happen. Then yesterday I couldnt open Firefox at all, so I tried to uninstall and also reinstall but keep getting the error message "Firefox must be closed to proceed, please close Firefox" But i do not have it running anywhere, it does show in my downloaded programes, but I cant do anything with it. I am running Windows 7 on a Dell Inspiron

    Hopefully this support article is what you need:
    http://support.mozilla.com/en-US/kb/Firefox%20hangs#w_hang-at-exit

  • Loop Not Returning All Rows

    I finally need to turn to the forum after trying for a few days to resolve my problem I decide to turn to the Oracle people for help.
    The following code below does two things:
    1. If I have the get_menu_label in side of it's own loop it never returns
    2. If I take the get_menu_label out side of it's own loop it returns but does not return all the data.
    DECLARE
    -- GETTING THE DATABASE NAME
    CURSOR get_db_name
    IS
    SELECT DATABASE
    FROM uaf_mfgp_menus_and_groups_vm
    GROUP BY DATABASE
    ORDER BY DATABASE ASC;
    -- GETTING THE OBJECT_ID FOR EACH DATABASE
    CURSOR get_object_id_db (l_db_name VARCHAR2)
    IS
    SELECT object_id
    FROM UAF_FORM_OBJECTS
    WHERE object_label_2 = l_db_name;
    -- GETTING THE GROUP NAME
    CURSOR get_gp_name
    IS
    SELECT group_name
    FROM uaf_mfgp_menus_and_groups_vm
    GROUP BY group_name
    ORDER BY group_name ASC;
    -- GETTING THE OBJECT_ID FOR GROUP WITH GP NAME AND DATABASE
    CURSOR get_object_id_gp (l_gp_name VARCHAR2, db_id NUMBER)
    IS
    SELECT object_id
    FROM UAF_FORM_OBJECTS
    WHERE object_label_2 = l_gp_name AND parent_object_id = db_id;
    -- GETTING MENU LABEL
    CURSOR get_menu_label (l_db_name VARCHAR2, l_gp_name VARCHAR2)
    IS
    SELECT menu_label
    FROM uaf_mfgp_menus_and_groups_vm
    WHERE DATABASE = l_db_name AND group_name = l_gp_name;
    got_object_id_db NUMBER (20);
    got_object_id_gp NUMBER (20);
    got_db VARCHAR2 (100);
    got_menu_label VARCHAR2 (200);
    BEGIN
    FOR c1 IN get_db_name
    LOOP
    FOR c2 IN get_gp_name
    LOOP
    OPEN get_object_id_db (c1.DATABASE);
    FETCH get_object_id_db
    INTO got_object_id_db;
    OPEN get_object_id_gp (c2.group_name, got_object_id_db);
    FETCH get_object_id_gp
    INTO got_object_id_gp;
              CLOSE get_object_id_db;
    CLOSE get_object_id_gp;
    OPEN get_menu_label (c1.DATABASE, c2.group_name);
    LOOP
    FETCH get_menu_label
    INTO got_menu_label;
    END LOOP;
    CLOSE get_menu_label;
    DBMS_OUTPUT.put_line ( 'GP_OBJECT_ID= '
    || got_object_id_gp
    || ' '
    || 'MENU_LABEL= '
    || got_menu_label
    END LOOP;
    END LOOP;
    END;
    /

    Javier, this the wrong way to use PL/SQL. Oracle SQL can do all this for you using JOINs.
    This code, even if it did work, would be terrible slow - unable to scale with data volumes.
    This code breaks a few fundamental Oracle rules:
    - row-by-row processing using PL/SQL
    - huge number of context swicthes per PL/SQL loop iteration
    - not maximizing SQL and minimizing PL/SQL
    I suggest you trash this code and write a SQL JOIN instead.

  • Location of iPhone sync data files or How to not have to re-install all my iPhone apps?

    Hi Folks,
    I recently did a clean install of Lion on my MacBook Pro and I've chosen to not use Migration Assistant because I don't want to move over a bunch of cruft under my 4+ year old home directory (Tiger > Leopard > SL).  I've been very selective about the things I've moved over and all has gone well until I want to sync my iPhone.  I've transferred purchases from the iPhone but if I check Sync Apps, iTunes wants to wipe and re-install everything!  This wouldn't be a problem, except the time it would take to re-organize all my apps on the iPhone again.   (Side note: Please Apple, give us an "auto-organize" button for apps!)
    Any idea how to move over my old sync data files to avoid having to nuke/reinstall my iPhone's apps?  Or is there another option to preserve how my apps are organizated?
    Many thanks in advance,
    Rob

    Skyler Richard wrote:
    Setting it up as new will not put anything over, then when you sync it will sync the applications over and it will sync the applications over Un organized.  My advised should resolve the issue, I work for technical support for the iPhone's, iPad, and iPod Touchs for Apple...
    Right Click the iPhone and click Transfer Purchases and then do the backup and restore from backup... That will transfer all your applications over to your computer and then organize them properly in their folders...
    OK, that does make sense so I won't bother setting it up as a new phone.
    Quick follow up question though, do I need to click the Sync Apps check box before I do a restore?  The reason I ask is that I've done a transfer purchases/backup/restore cycle but all the tabs (Apps, Music, Movies, etc.) do not have the sync check box checked following the restore as I would expect.  And when I go check the Sync Apps check box that's when it warns me "Are you sure you want to sync apps?  All existing apps and their data on the iPhone will be replaced with apps from this iTunes library."  That's when the apps then become unorganized.
    Thanks so much for your continued help!
    Rob

  • How do I save a file to iCloud Drive and NOT have it sync to all my devices?

    I have a Macbook Air with 128GB of SSD storage.  I have a Mac Mini with 2TB of storage.  Both are running OS X 10.10 with iCloud Drive enabled.  All iOS devices are on 8.0+ with iCloud Drive.  I want to upload files to my iCloud Drive from my Macbook Air and then delete them off my Air to save valuable storage space.  When I try to delete a file from my iCloud Drive on my MB Air, it prompts me to say that the file will be deleted from ALL iCloud Drive devices.  I just want delete it locally on the MB Air.  Is there a way to do this?  Do I have to do it through the iCloud Drive web interface?  Can I just make a folder in iCloud Drive that does not sync to the other devices but you can still "view" the files?  I just want to save files in the iCloud but not have all those files synced on my Macbook Air.  Make sense?   Help please!  Thank you in advance.

    You're going to find that pretty much every cloud storage system works in a similar way. Some, like OneDrive, will allow you to select what folders sync to and from every machine it's installed on.
    Maybe something like that would fit your needs better.

  • Business Objects is not returning all rows from Query

    We set the rowcount to 1000000 and the business objects query only returns 16,960 rows.  We then uncheck the limit for the rowcount and the first run of the query returns 65,535.  The subsequent run of the query returns all the rows which is greater than 65,535.  We are on release 6.1A of business objects and selecting from Microsoft SQLServer 2005 in 2000 compatablility mode. We noticed that the rowcount being sent to SQLServer is replacing the set number with the 65,535 the first time the query is sent and subsiquent queries have the correct rowcount set.  What would be causing the rowcount to be reset and how can it be fixed?

    We set the rowcount to 1000000 and the business objects query only returns 16,960 rows.  We then uncheck the limit for the rowcount and the first run of the query returns 65,535.  The subsequent run of the query returns all the rows which is greater than 65,535.  We are on release 6.1A of business objects and selecting from Microsoft SQLServer 2005 in 2000 compatablility mode. We noticed that the rowcount being sent to SQLServer is replacing the set number with the 65,535 the first time the query is sent and subsiquent queries have the correct rowcount set.  What would be causing the rowcount to be reset and how can it be fixed?

  • Mini mac does not have room to run all app or upgrade

    Help please. My mini mac is telling me that I do not have enough room to upgrade or run all my apps. Can I upgrade something inside the drive and if I can, can I just go to the Apple store and have that done?
    We purchased the mini mac Christmas 2008 and I have added final cut but nothing else. I do have an awful lot of photos in iphoto, would it help me to backup those onto a external drive then delete those items for more space? I'm taking about 4,000+/- photos and 253 events.
    Hardware Overview:
    Model Name: Mac mini
    Model Identifier: Macmini2,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 1.83 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 2 MB
    Memory: 1 GB
    Bus Speed: 667 MHz
    Boot ROM Version: MM21.009A.B00
    SMC Version (system): 1.19f2
    Serial Number (system): YM746697YL1
    I don't know if this info will be necessary or not. I just wanted to have my bases covered.
    Thanks.

    When I was working in itunes a message popped up telling me there was a problem saving the itunes library. When I attempt to upgrade I receive the message:
    "Your hard disk does not have enough space. 2.8 GB is required to download and install the updates. Extra space is required for the optimization process. To free up space, remove files from your start up disk, then try again."
    I have one movie in final cut and its approx 14 minutes. There are 4 unpublished movies in imovie and 2 published.
    What type of firewall external harddrive do you recommend? I have 2 WD passports for storage.

Maybe you are looking for

  • Long load times for large video tracks

    Is there a recommended file size to stay under for video tracks in iTuens U? I know the hard limit is 500Mb per upload, but it seems as though any file that is more than about 10 minutes in length takes upwards of 10 minutes or longer to load. A shor

  • Backup problems with external hard drive

    I bought a WD passport external hard drive and copied my itunes library onto a file there. I re-set the location of the library on itunes to the drive on the external hard drive. So far I have not deleted anything from my computer hard drive. However

  • How to check the host name or rename the host name in Enterprise Manager

    Hello, How do i check the host name or rename the host name in Enterprise Manager for Oracle 11g? Regards, Ming Man

  • Boot Camp Crash

    Hi, Recently I went to partition my MBP and half way through the partition, boot camp crashed and I had to force restart my mac. After I restarted my mac, around 20gb of HDD space was missing. Is there any way I can get it back? Thanks!

  • MAXL SCRIPT TO EXECUTE IN BACKGROUND THE DATA LOAD

    Hi, I have problem with a MaxL script, I don´t know the command to execute a data load in the background, someone knows??? it would be very grateful if you can help me because now I have to load the data manually and then tick execute in background.