Cant Use Page Controls to Cycle Through Records in Report with Table

Hi
I have built a tabular report in answers that returns a 1000 rows. I have set the number of rows to be displayed to 100. However, when I run the report i cant use the page controls to cycle to the next 100 records.
When I edit the table with the compound layout view I can cycle through the records fine, but when I save it and run normally I cant use the page controls.
Page controls works on other reports in the subject area but these are pivot tables not normal tables.
Can someone help diagnose the issue?
I'm using OBIEE 10g btw
Thanks
James

Hi,
If you have set DefaultRowsDisplayed as 100 in instaceconfig.xml file, then this would effect only the table view, not Pivot table. By default, Pivot would display all the records without pagination.
Thanks

Similar Messages

  • My iphone4 went to recovery mode half way through update now i cant use it i tryed updating through itunes on pc but  cant

    my iphone4 went to recovery mode half way through update now i cant use it i tryed updating through itunes on pc but  cant

    Hello, mozzo1. 
    Thank you for visiting Apple Support Communities.
    When experiencing issues restoring or updating an iPhone, here are the best articles to go through.  If you received a specific error number when restoring, see the section labeled Get more help in the second article below.
    iOS: Unable to update or restore
    http://support.apple.com/kb/ht1808
    iOS: Troubleshooting update and restore issues
    http://support.apple.com/kb/ts1275
    Cheers,
    Jason H.

  • Using Pages, I have created a document and inserted a Table for use in logging an inventaory. When I came to print this off however the lines for the table were missing but the text was in the Table format, weird! How do I print the Table?

    Using Pages, I have created a document and inserted a Table for use logging an inventory. When I came to print this document the lines and boarders of the Table feature did not print however the text did print in the table format. How do I get the lines and boarders to print also?

    Using Pages, I have created a document and inserted a Table for use logging an inventory. When I came to print this document the lines and boarders of the Table feature did not print however the text did print in the table format. How do I get the lines and boarders to print also?

  • Using ReportViewer Controls in a jsp application calling Reporting Services using Web Services

    Hi,
     I am invoking RS web services to render reports, using Apache Axis to generate stub classes from Reporting Service WSDL.
    Please let me know if I can integrate Report Viewer control in the jsp where I am writing the report output. Else do I have to create my own custom tags simulating ReportViewer functionality.

    did anyone of you have tried it or not?
    i need this thing tobe confirmed. i have drilled the google and others.but can't find other than
    http://www.mainsoft.com/products/SQLServerReportingServicesConnectorforWPS.aspx

  • I cant open pages documents on my ipad that i created with my mac

    When i create a document on my Mac, and try to open it on my iPad I get a message "Document couldn't be imported." What is going on? I thought that iCloud was supposed to allow me to use Pages across all my Apple devices. Is this an iOS specific problem, or is it just a problem with iWork on iCloud problem?
    Is anyone having the same problem?

    Gail, you are wonderful! That solved the problem. My Keynote docs are now downloading, and the docs I created with Pages on my Mac now open on the Mini.
    Muuahh!
    gail from maine wrote:
    Do you have "Documents and Data" checked in iCloud on both the Mac and the device?
    If you do, then try resetting your iPad (nothing will be lost) and trying again: Hold down both the Home and Power buttons at the same time and continue to hold them down until the Silver Apple appears (up to 30 seconds). Once the Home screen redisplays, see if you can open your document.
    Cheers,
    GB

  • How to use p_mainsearch parameter in basic search for a report with bind variable?

    Hello,
    I'd like to extend the basic-search in content-area elements to extra records in my own tables.
    So I'd like to use the p_mainsearch-urlparameter (which holds the searchtext of a basic search) into a bind variable of my own report. My report will be on an extra tab on the search-page.
    Especially I don't know how to transfer the value of p_mainsearch into the bind variable of the report.
    Has anyone done that so far?
    Example?
    Thank you,
    Joerg

    I found out the following way:
    1.)Report
    1.1)SQL-Query:
    select * from <owner>.<tablename> where UPPER(column) like '%'||UPPER(NVL(:searchtext,'abczyx123098'))||'%'
    (Note: bind variable is :searchtext).
    1.2)in "before displaying page"-section in "additional plsql" add the following:
    if length(get_value('p_mainsearch')) >= 3 then
    portal30.wwv_name_value.replace_value(
    l_arg_names, l_arg_values, p_reference_path||'.searchtext,
    portal30.wwv_standard_util.string_to_table2(get_value('p_mainsearch')));
    end if;
    1.3) publish as portlet
    2.) Integrate the report-portlet into a new tab on search page. Run basic search.
    Change to the tab with the portlet.
    For me it is solved.
    Joerg.

  • UPDATED TO 4.2 AND I CANT USE VOICE CONTROL OR PUT PICTURES BEHIND MY APPS.

    I have the original iphone. i updated to 4.
    but i cant do HALF the things the 4 says it can do
    like voice control
    or put pictures on the home screen behind my apps.
    HELP.

    Not all features of the iOS 4 update are available to the 1st or 2nd generation iPhones. These include, but not limited to: video recording, game centre, HDR photos, multitasking, voice control etc
    I also think you mean iOS 4.1, as 4.2 is not available yet for public use.

  • How can i use page break for every 5 records in sap scripts

    on every 5 lines of records i have go for a new page so what is procedure to do this .if possible send me with coding .

    Hi John..
    this is the way..
    IN THE PRINT PROGRAM...
    DATA : V_MOD TYPE I.
    loop at Itab.
       V_MOD  = SY-TABIX / 5.
       IF V_MOD  = 0.
           CALL FUNCTION 'CONTROL_FORM'
           EXPORTING'
              COMMAND = 'NEW-PAGE' .
      ENDIF.
             CALL FUNCTION 'WRITE_FORM'
    ENDLOOP.
    <b>reward if Helpful.</b>

  • Using setInterval/clearInterval to cycle through visible-invisible

    I've got so confused with setInterval/clearInterval that fail
    to code a very
    basic effect.
    I need an object to become visible for, say 3 sec, then to
    become invisible
    for 2 sec and so far.
    I did three functions:
    function objOnAndOff(){
    int1=setInterval(objOff,3000);
    int2=setInterval(objOn,4998)
    function objOff(){obj._visible=false;clearInt(int1)}
    function objOn(){obj._visible=true;clearInt(int2)}
    obj._visible=true;
    var int1,int2,int3
    int3=setInterval(objOnAndOff,5000)
    I expected objOnAndOff be called every 3+2=5 sec, of which
    the object would
    stay visible for the first 3 sec, then on 3.001 objOff() sets
    it invisible,
    then on 4.999 objOn() sets it visible. Immediately after that
    objOnAndOff()
    is called again and the cycle repeats. Instead it behave
    erraticaly.
    Where does my logic fail?

    Thanks. Amaizingly, I used clearInterval() many times and yet
    wrote
    clearInt() looked at is many times and failed to notice.
    I works in general.
    However I have a timer counting down every second and I
    planted trace()
    into your two functions - the interval shown by the times is
    not stable. It
    is suppose to be 2 and 3 but timer sometimes shows 1 nd 2
    respectively -
    Iis is cvorrect to suggest that this is the result of an
    inacuracy
    accumulated over several cycles and we have this leap year
    regularly?
    Also is it important that you clearInterval for Off/On BEFORE
    setting the
    interval for On/Off
    In my first attempt I coded similar functions but
    clearInterval for Off/On
    AFTER setting the interval for On/Off and it did not work,
    though I do not
    see why this matters.
    "kglad" <[email protected]> wrote in message
    news:e3bqes$g1p$[email protected]..
    > you have a syntax error and an error in flash-logic. to
    correct the
    syntax
    > error use clearInterval() to clear your intervals
    (clearInt() is not a
    flash
    > function).
    >
    > your error in flash-logic is thinking setInterval()
    function calls are
    precise
    > to within 2 ms. they are not and you're likely to
    accumulate
    uncontrollable
    > calls to objOn().
    >
    > i don't think pwyon's code will do what you want. try:
    >
    >
    > function objOff(){
    > obj._visible=false;
    > clearInterval(offI);
    > onI=setInterval(objOn,2000);
    > }
    > function objOn(){
    > obj._visible=true;
    > clearInterval(onI);
    > offI=setInterval(objOff,3000);
    > }
    > objOn();
    >

  • BDC Recording For J1IG with Table Control Scroll bar

    Dear Friends,
    I am doing BDC program for J1IG Transaction after done recording.
    As you knows that, In J1IG transaction max. 11 materials are shows in table control at a time and if more records are there, then we have to scroll down manually so after that, we can see the records.
    Now my BDC program runs upto 11 materials but when more than 11 materials, selection is coming on first material only and cursor not showing 12th material.
    So i think page down is not working for that issue.
    I have seen lots of search forum for that but not getting the proper answer.
    Please reply.
    Regards,
    Shivam.

    Dear Dinu,
    For better understanding please see the code.
    So you suggest what should i have to do?.
    LOOP AT jtab INTO wb.
         LOOP AT itab INTO wa WHERE mblnr EQ wb-mblnr.
           CLEAR : flag.
           AT NEW mblnr.
             flag = 'X'.
             CLEAR : cnt, var1, var2.
           ENDAT.
           cnt = cnt + 1.
           IF flag EQ 'X'.
             PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0100'.
             PERFORM bdc_field       USING 'BDC_OKCODE'
                                       '=ECAP'.
             PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0200'.
             PERFORM bdc_field       USING 'BDC_CURSOR'
                                       'T_HEADER-EXDAT'.
             PERFORM bdc_field       USING 'BDC_OKCODE'
                                       '/00'.
             PERFORM bdc_field       USING 'J_1IEXCHDR-EXGRP'
                                       wa-exgrp.
             PERFORM bdc_field       USING 'T_HEADER-MBLNR'
                                       wa-mblnr.
             PERFORM bdc_field       USING 'T_HEADER-MJAHR'
                                       wa-mjahr.
             PERFORM bdc_field       USING 'T_HEADER-EXNUM'
                                       wa-exnum.
             PERFORM bdc_field       USING 'T_HEADER-EXDAT'
                                       wa-exdat.
             PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0200'.
             PERFORM bdc_field       USING 'BDC_CURSOR'
                                       'J_1IEXCHDR-EXGRP'.
             PERFORM bdc_field       USING 'BDC_OKCODE'
                                       '=DETL'.
           ENDIF.
           CONCATENATE 'T_ITEM-ZEILE(' cnt ')'  INTO var1.
           CONCATENATE 'T_ITEM-SELECTION(' cnt ')'  INTO var2.
           PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0300'.
           PERFORM bdc_field       USING 'BDC_CURSOR'
                                     var1.           "'T_ITEM-ZEILE(01)'.
           PERFORM bdc_field       USING 'BDC_OKCODE'
                                     '=MORE'.
           PERFORM bdc_field       USING var2 "'T_ITEM-SELECTION(01)'
                                     'X'. "record-selection_01_019.
           PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0400'.
           PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'T_LOCAL_EXC-EXADDRATE1(01)'.
           PERFORM bdc_field       USING 'BDC_OKCODE'
                                     '/00'.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-MENGE(01)'
                                     wa-menge.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-EXBAS(01)'
                                     wa-exbas.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-EXBED(01)'
                                     wa-exbed.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-BEDRATE(01)'
                                     wa-bedrate.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-EXAED(01)'
                                     wa-exaed.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-AEDRATE(01)'
                                     wa-aedrate.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-ECS(01)'
                                     wa-ecs.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-ECSRATE(01)'
                                     wa-ecsrate.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-EXADDTAX1(01)'
                                     wa-exaddtax1.
           PERFORM bdc_field       USING 'T_LOCAL_EXC-EXADDRATE1(01)'
                                     wa-exaddrate1.
           PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0400'.
           PERFORM bdc_field       USING 'BDC_CURSOR'
                                     'T_LOCAL_EXC-RG23ASER(01)'.
           PERFORM bdc_field       USING 'BDC_OKCODE'
                                     '=BACK'.
         ENDLOOP.
         PERFORM bdc_dynpro      USING 'SAPMJ1IG' '0300'.
         PERFORM bdc_field       USING 'BDC_CURSOR'
                                   'T_ITEM-DOCNO(01)'.
         PERFORM bdc_field       USING 'BDC_OKCODE'
                                   '=SAVE'.
         CLEAR opt.
         opt-dismode = 'A'.
         opt-updmode = 'S'.
    *    opt-defsize = '12'.
    *    CLEAR: it_messages[], it_messages.
         CALL TRANSACTION 'J1IG' USING it_bdcdata OPTIONS FROM opt
                                       MESSAGES INTO it_messages.
         REFRESH it_bdcdata.
       ENDLOOP.
       CHECK it_messages[] IS NOT INITIAL.
       LOOP AT it_messages.
         PERFORM fill_messages USING it_messages-msgtyp
                                     it_messages-msgid
                                     it_messages-msgnr
                                     it_messages-msgv1
                                     it_messages-msgv2
                                     it_messages-msgv3
                                     it_messages-msgv4.
       ENDLOOP.
       PERFORM display_messages TABLES tmsg.

  • Using Pages and Numbers to create a DOC report

    Later this month, I will be volunteering for a local sprint racing event at a community festival. Races take place over three days of a long weekend. Friday features one mid-distance race and Saturday and Sunday feature sprint races repeated over the two-day event. (Contestants run in the race for the first day, have their race-time recorded, and then again on the second day, again the time is recorded. The race results are the total of both days' times for each contestant.) Some contestants may drop out of a race or be disqualified.
    I posted a thread over in the Numbers '09 forum to ask if Numbers is equipped to handle race-time tabulation like this. Someone else tried doing it last year with OpenOffice. We may go that route again, but I want to see if we can use Numbers '09 and Pages '09 in case the other volunteer isn't available.
    Here's a link to the Numbers thread:
    http://discussions.apple.com/thread.jspa?threadID=2290574
    Central to this project will be the ability to enter data for time (hours, minutes, seconds-plus-decimal-points) and add times together.
    There are several different classes of races, each one would presumably be its own spreadsheet. Entries for each contestant would be sorted by starting order, then first and last name, the contestant's hometown and state, then the contestant's assigned racing number, then the times. Contestants are all signed up well in advance of the race, so I now have all of their registration data in hand.
    The desired output would naturally be the re-arrange the contestants of each race in order of results. The results would also include for final added time.
    Local newspapers and an international racing news web-site are given the results. These entities prefer the results in ".doc" format. I produced last year's results in tables in Microsoft Word v.X:Mac. Below is a link to a PDF file with the 2009 results.
    http://sites.google.com/site/waltsimplesite/LobdellRaceResults2-2009.pdf?attredi rects=0
    How practical would it be to produce a DOC file in pages that would still be readable by Microsoft Word users? (These news entities do not necessarily use the latest software; some may be long-in-tooth.)

    I would not enter this path.
    If you need .doc files, I think that it would be more efficient to use the FREE openOffice or the FREE neoOffice which are able to deliver plain .doc files with a better compatibility.
    Yvan KOENIG (VALLAURIS, France) mercredi 13 janvier 2010 19:07:02

  • Problem while looping through record set and tem table for matching data

    hi I am using one record set and ane temp table and looping through both to find the match between dates.
    If date matches then it shud do some processing otherwise it will return default values(null values).
    FOR i IN student_rec .FIRST..student_rec .LAST          /*student_rec.school_date has 01-MAR-2012,02-MAR-2012,03-MAR-2012,04-MAR-2012,05-MAR-2012*/
    LOOP
    l_return_out.school_date := student_rec(i).school_date;
    l_return_out.marks_obtained := student_rec(i).marks_obtained;
    FOR i IN selected_dates .FIRST..selected_dates .LAST          /*selected_dates has 02-MAR-2012,03-MAR-2012,05-MAR-2012*/
    LOOP
    DBMS_OUTPUT.PUT_LINE(selected_dates(i));
    IF selected_dates(i)=student_rec(i).sett_date
    THEN
    EXIT;
    end if;
         ---------call procedure P1
    -----------get output as ret_val1               /*getting ret_val1 as 10 for 02-MAR-2012,03-MAR-2012,05-MAR-2012 */
         ----------call procedure P2
    ---------get ouput as ret_val2               /*getting ret_val1 as 20 for 02-MAR-2012,03-MAR-2012,05-MAR-2012 */
    if ret_val1>0 0r ret_val2>0
    then
    l_return_out.has_csts := yes;
    l_return_out.cst_present := 10;
    l_return_out.cst_absent := 20;
    else
    l_return_out.has_csts :=No;
    l_return_out.cst_present:= 0;
    l_return_out.cst_absent := 0;
    end if;
    end loop;
    l_return_out.has_cst := student_rec(i).has_csts;
    l_return_out.cst_missing := student_rec(i).cst_present;
    l_return_out.cst_existing := student_rec(i).cst_absent;
    PIPE ROW(l_return_out);
    END LOOP;
    RETURN ;
    I am expecting this as result
    school_date     marks_obtained     has_csts     cst_present cst_absent
    01-MAR-2012     20          
    02-MAR-2012     30          yes 10          20
    03-MAR-2012     40           yes 10          20
    04-MAR-2012     70          
    05-MAR-2012     60          yes 10          20
    but this as result
    school_date     marks_obtained     has_csts     cst_present cst_absent
    01-MAR-2012     20          
    02-MAR-2012     30          
    03-MAR-2012     40           
    04-MAR-2012     70          
    05-MAR-2012     60          
    Can anybody please highlight the mistake i am doing while processing the logic??
    Edited by: 942390 on Jul 13, 2012 8:44 PM
    Edited by: 942390 on Jul 13, 2012 8:45 PM

    I am getting a set values from a record set....student_rec
    and on pipelining this record set from 1st till last
    i am getting this
    school_date     marks_obtained     has_csts     cst_present cst_absent
    01-MAR-2012     20          
    02-MAR-2012     30          
    03-MAR-2012     40           
    04-MAR-2012     70          
    05-MAR-2012     60     
    so initially has_csts, cst_present and cst_absent is null for all dates.
    now have a temp table of selected_dates(which contains these dates 02-MAR-2012,03-MAR-2012,05-MAR-2012)
    now I am want to populate has_csts, cst_present and cst_absent with data only for those dates which is present in selected_dates temp table(02-MAR-2012,03-MAR-2012,05-MAR-2012) and that too has_csts, cst_present and cst_absent will be populated with some condition (based on the values from procedure got from P1 and P2).
    so want result set to look like
    school_date     marks_obtained     has_csts     cst_present cst_absent
    01-MAR-2012     20          
    02-MAR-2012     30          yes 10          20
    03-MAR-2012     40           yes 10          20
    04-MAR-2012     70          
    05-MAR-2012     60          yes 10          20
    so what could be the possible solution to obtained this....

  • Do you have to use an audio interface when you record a guitar with garageband on an iPad Air?

    I've been looking into getting an iPad Air through a new cell phone contract. The only reason I want it is so that I can start recording my own music. I don't want to have to buy an audio interface however, so I'm just wondering if I really need one.

    Josh, there really is no good way in and out of the iPad for recording audio without some sort of interface. There are a broad range available, some starting under $100.

  • Drill through to another report with bins in OBIEE 11g

    Hi Everyone,
    We have a specific scenario that is as follows:
    Bar chart with 3 bars: '0-30', '31-60' and 'other'
    these bars repsent the number of people who are in that age bucket.
    This was accomplished by taking the peron's Age (a dimension with an age column) and using the 'bin' option in obiee 11g answers.
    When the user clicks on one of the bins in the bar chart (e.g. 0-30), it should navigate to another report which contains details (a table) of ONLY the people who are in that age bucket.
    In order do this I created the same 'age bucket' in the drilll through report and set the field as prompted.
    This works in OBIEE 10g but in OBIEE 11g when I click the 'bin' (e.g. 0-30) on the top report, it navigates to the other report via action link and displays ALL of the people, not just the people in the bucket 0-30.
    Can anyone advise?
    P.s. if I remove the bin for the age bucket, and display the actual age, the drill down works fine. I think the issue is specific to the bin feature. I am using OBIEE 11.1.1.6.4

    Just confirmed with Oracle this is bug 13996544 . FYI just incase it helps anyone

  • Using Power Query in Excel for Power BI Report with OData Feedfack

    I am trying to get the data into Excel Power Query from Dynamics CRM 2013 using OData Feedback.
    Every thing works fine but the data that I retrieve in Power Query Editor shows columns as Record and when I expand it by selecting Value option shown it provides me the data in integer format whereas I want the name.
    Basically it only provides me the value or id of the field from CRM, How could I obtain the Name field in it. 

    The documents should load but you won't be able to refresh your data. You should just see what was loaded to the sheet when you previously saved the document. Changes that you make in the iOS version shouldn't overwrite the PQ info and you should be able
    to edit the queries and refresh when you load it back into a desktop Excel client. Please let us know if your experience deviates from these expectations.

Maybe you are looking for

  • Doubt on Constraints in Oracle?

    Hi Friends, Constraints are the business rules that are enforced on the data that is stored in the tables. We can define constraints in three forms : 1.using Constraint feature provided by Oracle i.e CHECK,NOT NULL,PRIMARY KEY ..... 2.Using Triggers

  • Photoshop CS3 will not display all available actions in Actions folder

    Windows XP Pro - CS3 Extended I have appprox 400 actions. When I open the actions palet, then go to the actions options (clicking on the small downward pointing triangle in the upper right corner) I can see my options for actions, placed in a vertica

  • New cache size then FF restore it again to 75...

    Well, i'be set a new Cache size ( Default is 75 ) to 250mb, but after a few minutes or when i close and Re-open FF the default chache is 75 insted of the new 250mb, any way to make solve this?, some config in about;config?, or in a .ini file?, any ad

  • Webservices and JMX

    Hi, I am using JMX which supports HTTP, RMI, CORBA, TL1 and SNMP protocols. Now I am planning to include SOAP as well. Looking at this scenario, I have the following questions: 1. Do I really need to support SOAP in JMX? The logic here is SOAP is alr

  • Public sector records managment

    Hai, How the business workplace (SBWP) of records management is different from work basket of public sector records manegement? Thanks, KK