Record count per page , total record count per report in BI Publisher

hi,
In Oracle BI Publisher tool , can you please tell me how to display total record count of a report ? as well as how to display record count per page ?
Thanks for your help
Regards
Gayathri

check inbox. forwarded the updated template

Similar Messages

  • How to divide record per page (20 record per page).

    How to divide record per page (20 record per page).
    I try word (limit) example
    "select * from table1 where [ some_condition]
    limit [start], [end] "
    , but it error.

    Tom Kyte has a rather extensive discussion of paging techniques here: http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:127412348064
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • How to show a Page Total in a Main Report that is calculated in a SubReport

    Hi,
    I have a Main Report and a SubReport with the detail.
    The Report has several pages. I want to show a Page Total in each Page, retrieving data that is in the subreport (Detail).
    I tried to use a shared variable, but the problem is that the formula fields are assigned at the end of the subreport, so I can't pass the value back (to the main report) until the last record of the subreport is printed.
    I also can't show the Page Total at the subreport, because I have a particular format that I need to respect and only can be printed from the Main Report.
    Is any way to do this ? At this moment, with the shared variables I'm getting 0 until the last record is printed.
    Also, I can calculate the Page Total from outside Crystal Reports, do to there some fields that can grow, so I can't figure out how many record are going to be printed.
    Thanks in advance!
    Ariel

    hello, this may depend on how the main report was actually paging...
    1) do you have one group per page for example?
    2) is the sub on a group footer level?
    3) does the subreport use a different data set than the main report?
    some suggested workarounds would be to
    a) use a report header cross-tab (identical to the existing crosstab) that creates an array of values that you can access anywhere on the main report
    b) place an identical cross-tab above the existing one, and suppress all of the subreport sections (not the section where the subreport sits) and then bring the value back to the main report
    cheers,
    jamie

  • Displaying 10 records per page where records are unknown

    I'm new to programming. I'm trying to create a form that does the following in jsp/javascript
    Displays 10 rows, each row containing a record if records exceeds 10, it will display the remaining records on another page.The first form will contain a link to the second form and the second form will contain the link to the first. So basically there could be infinite number of forms containing 10 rows each on each form each displaying a link to the other forms. So each page at the bottom will have something like this <<previous [1][2][3][4][5]next>>.The algorithm seems complicated and I don't know how to generate another page for displaying the extra records. Is this complicated.Can someone please show me how this is done...HELP
    thanx in advance
    legato_bluesummers
    Here is the code I have currently my apologize for the length. this code is called by another page:
    <%@include file="header.jsp"%>
    <%@ page import="java.sql.*" errorPage="error.jsp"%>
    <%
    String connectionURL=
    "jdbc:mysql://localhost:3306/studentdatabase?username=username;passwrod=password";
    Connection connection = null;
    Statement statement=null;
    ResultSet rs=null;
    %>
    <html>
    <head>
    <%@include file="btechreportheader.jsp"%>
    </head>
    <body bgcolor="#efefef" text="#000000" link="#ffcc99">
    <form name="btechreport" method="post" action="deletestudent.jsp">
    <table width="100%" border="1" cellpadding="2" cellspacing="0" height="6">
    <tr bgcolor="#efefef">
    <td width="8%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Date</font></div>
    </td>
    <td width="10%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Student
    ID</font></div>
    </td>
    <td width="11%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Student
    Name</font></div>
    </td>
    <td width="15%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Email
    Address</font></div>
    </td>
    <td width="13%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Course
    Taken</font></div>
    </td>
    <td width="15%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Course
    Uncompleted</font></div>
    </td>
    <td width="6%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Qualified</font></div>
    </td>
    <td width="6%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Applied</font></div>
    </td>
    <td width="6%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Accepted</font></div>
    </td>
    <td width="6%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Delete</font></div>
    </td>
    </tr>
    <%
              String separator = "-";
              String sYear = request.getParameter("startYear");
              String sMonth= request.getParameter("startMonth");
              String sDate = request.getParameter("startDate");
              String startTime = sYear+separator+sMonth+separator+sDate;
              String eYear = request.getParameter("endYear");
              String eMonth= request.getParameter("endMonth");
              String eDate= request.getParameter("endDate");
              String endTime = eYear+separator+eMonth+separator+eDate;
         Class.forName("org.gjt.mm.mysql.Driver").newInstance();
         connection = DriverManager.getConnection(connectionURL, "", "");
         statement = connection.createStatement();
         rs=statement.executeQuery("SELECT students.studentid, students.firstname, students.lastname, students.email," +
                                       "btechpre.cisy1212, btechpre.cisy2311, btechpre.cisy2313, btechpre.cisy2314, btechpre.cisy2315," +
                                       "credential.recdate, credential.qualified, credential.accepted, credential.applied FROM students, btechpre, credential " +
    "WHERE students.studentid=credential.studentid AND credential.studentid=btechpre.studentid AND credential.recdate BETWEEN '"+startTime+"' AND '"+endTime+"' ");
         //SELECT DATE_FORMAT(date,'%M %d, %Y') from data
         while(rs.next())
              String cisy1212=rs.getString("cisy1212");
              String cisy2311=rs.getString("cisy2311");
              String cisy2313=rs.getString("cisy2313");
              String cisy2314=rs.getString("cisy2314");
              String cisy2315=rs.getString("cisy2315");
    %>
    <tr bgcolor="#efefef">
    <td width="8%" height="18"><%= rs.getString("recdate")%></td>
    <td width="10%" height="18"><%= rs.getString("studentid")%>
    <input type="hidden" name="studentid" value="<%= rs.getString("studentid")%>"></td>
    <td width="11%" height="18"><%=rs.getString("firstname")%>
    <%=rs.getString("lastname")%></td>
    <td width="15%" height="18"><a href="mailto:<%=rs.getString(email")%">"><%=rs.getString("email")%></a></td>
         <td width="13%" height="18"> <%
                   if((cisy1212!=null) || (cisy2311 !=null) ||(cisy2313!=null) ||(cisy2314!=null) ||(cisy2315!=null))
                   %> <%=cisy1212%>,<%=cisy2311%>,<%=cisy2313%>,<%=cisy2314%>,<%=cisy2315%></td>           
         <td width="15%" height="18"><%=rs.getString("cisy1212")%>,<%=rs.getString("cisy2311")%>,<%=rs.getString("cisy2313")%>,<%=rs.getString("cisy2314")%>,<%=rs.getString("cisy2315")%></td>
    <td width="6%" height="18"><%=rs.getString("qualified")%></td>
    <td width="6%" height="18"><%=rs.getString("applied")%></td>
    <td width="6%" height="18"><%=rs.getString("accepted")%></td>
    <td width="6%" height="18">
    <input style="BACKGROUND-IMAGE: url(file://C:\jakarta-tomcat-4\webapps\CISY2415\images\trash2.gif); WIDTH: 28px; HEIGHT: 36px; BACKGROUND-COLOR: #efefef" type=submit name=delete size=14 onClick="alert('Do you want to delete the record?')">
    </td>
    </tr>
    <% } //end while()
         //clean up
         if(rs!=null) rs.close();
         if(statement!=null) statement.close();
         if(connection!=null) connection.close();
    %>
    </table>
    </form>
    </body>
    </html>
    </a>

    You can avoid all of this cumbersome code by using tags:
    http://www.dotjonline.com/taglib/grid.jsp

  • Recording Streaming Audio Using Total Recorder in Vi

    Last year I purchased High Criteria's Total Recorder to successfully record sounds over the internet, etc. Earlier this year I bought a new PC with Vista and onboard sound, and I?installed Total Recorder on the new PC. ?It no longer worked. I checked their website, but they weren't much help. They said to look for a "wave out" option in recording, but there was none. Thinking that it was the onboard audio causing the problem, I bought and installed an Audigy SE sound card yesterday. While it gives me a few more recording options, I still can't use Total Recorder. Cqan anyone please give me some suggestions as to how to make this work? Or is there another program out there to record streaming audio in Vista? Thanks.

    Hi
    Can you record using mp3 or wma -format (on 28kbps) with these tools you have? These formats packs wav data to ~/0 deal from original without huge quality loss.
    If not you can try if there is some other recording tools. There are also freeware products on many SW sites like
    http://www.download.com/Audio-Video/200-2025_4-0.html?tag=dir
    http://www.winsite.com/
    .jtp

  • Vertical Panel per page Problem for Form-type Reports

    I have a notification form-like report consists of 5 pages so I set the vertical panel to 5 (so when it prints, there are actually 5 physical pages, but 1 logical page in the reports builder). Some fields will expand, their datatype is BLOB. And when they expand, there are now 10 physical pages (even if the expansion is caused by a half-page-long data) some with blank pages. What I expect to happen is that there are 5 physical pages (as originally set) and additional pages (let's say another 1 page) for the expansion. But is this possible, that we can limit the number of vertical panels for the expansion? Can anyone help me please...?

    Has anybody experienced the same problem? Thanks in advance!

  • How to get the total record count for the report

    Hi,
    How can I get count of the total records shown in the report. When we set the report attributes, we have an option "Set Pagination from X to Y of Z"
    Does anyone know how can I get the Z value from APEX variables.
    I know we can use that query and get the count but I just want to know how we can use APEX Variables effectively.
    Thanks in advance.

    You write a loop, something like this:
    Go_block('B1');
    If not form_success then
      Raise Form_Trigger_failure;
    End if;
    First_Record;
    If not form_success then
      Raise Form_Trigger_failure;
    End if;
    Loop
      If :system.record_status in('CHANGED','INSERT') then
        -- modify the record here--
      End if;
      Exit when :System.Last_Record = 'TRUE';
      Next_Record;
    End Loop;
    First_Record;But be very careful-- If your block can fetch a large number of rows, (over 100), this loop can take a long time, and you should not use this method. The loop will continue fetching more rows from the database until all rows satisfying the query are retrieved.

  • Display 20 records per page

    i want to do one stuff....
    i retrieved database data using below satement......
    i want to display 20 records per page...and per page having two image of next and back..when i click to next ..it displays next 20 records...vice versa...
    PreparedStatement sql = conn.prepareStatement("select * from pay_header");

    Hello abhit,
    If you don't know how to use tag libraries, you can do it ur own.
    Just take your data in a List or Vector.
    Keep two hidden fields with the startIndex as 0 and endIndex as 20.
    update this values as 20 and 40 respectively after first iteration.
    Now for each button click prev or next ,update ur loop control values as such there in the hidden fields.
    use while loop and a boolean variable to indicate backward or forward moving. ok
    If you are using this approach and want to know how to more please let me know.
    Enjoy.......
    kuttus

  • How do I lock the number of posts per page?

    I am getting very tired of switching from 30 posts per page to 15 posts per page every time I select a "community".
    I have not found any place to specify that I always want 15 posts per page.
    Did I miss it or is it not there?
    Just for the record, I hate this new format.

    Well, the old version, like the versions that came before it, is dead and gone, so I don't really have use or time for waxing nostalgic about what was. I'll leave that to you and others.
    In spite of all the complaints, there are plenty of ways to customize the user experience here. It takes a bit of time, but, you know, such is life. If people want to make the most out of the site, fantastic. Pretty much every complaint I've seen can be overcome with some digging and tweaking, and I will help continue to help people with that in any way I can.
    As you know, there are a lot of refinements being worked on. There are some issues with finding new content that I would like to see straightened out, but otherwise, I'm enjoying the new ASC and discovering its many possibilities.
    Good luck!

  • UDF for Total records

    Hi
    I have a scenario where sender is file. In file there is a field Total records.
    I need to validate Total records field with the total records in the file using UDF..
    Can any suggest me the how to write the cod efor this..
    venkat

    Hi Venkatesh,
    In your source structure should Detail Records count  equal to Total Record Count?
    if yes,just create <b>Context</b> UDF and pass the following 2 inputs
    1. <b>DetailRecord</b> -> RemoveContext
      2. <b>TotalRecord</b>
    and inside UDF write java code for validation
    suppose if your inputs are a[](DetailRecord) and b[](TotalRecord)
      int scnt = a.length;
      int tcnt = Integer.parseInt(b[0]);
      if( scnt != tcnt)
           //write code to trigger an alert(from the following weblog)
    To Trigger alert from UDF just go through the following weblog
    /people/bhavesh.kantilal/blog/2006/07/25/triggering-xi-alerts-from-a-user-defined-function
    Cheers,
    Jag

  • Need Help Urgently For Displaying RESULTS PER PAGE

    i am comiling a serch engine throgh JSDK servlets and using a personal Oracle database. i currently have over 2000 records and when they are returned they are all being returned in one big table. i am trying to get the servlet to display so many results per page, for example 30 per page. I am at a loss on how to do this and have tried a number of methods, i urgently need to find a way of doing this as it is for a Major school project. I hope someone can help me i would be extremly greatful if someone could. Please
    Thanks

    Hello --
    One way to do this would be something like this:
    1. Start out with a page where filtering parameters could be entered, submit to the servlet with a starting position of 0.
    2. Grab all the rows from the oracle database, toss them in an array.
    3. Draw items in a table from the starting position to the number of entries per page from the array.
    4. Put a Previous and Next button on the results page to submit back to the servlet in step 2 where the starting position is the current position - number of results per page for previous, next is the has a starting position of current position + number of results per page. You'll want to do range checking, etc on this.
    The key trick is to ask one servlet to do steps 2-4. I've used hidden variables on the form with some javascript to set the new starting parameter for previous and next. You could assemble a URL in javascript also.
    There are probably slicker ways to do this, but for 2000 rows, it should probably work well enough.
    Good luck.
    Donn

  • IPHOTO - printing multiple photos per page

    Hi,
    Hope someone can help with this.
    I am trying to print multiple photos of the same photo on a "contact sheet" ...I have followed all the steps to complete this, but when I come to the step where I need to select "multiple of the same photo per page" from the Photos Per Page pop-up menu, I am unable to "click" in the box to make the change...am I missing a another step some where ....I appreciate anyone's help out there ..thank you

    Grama
    Welcome to the Apple suer to user discussion forums
    two ways - select the photos you want to print and:
    1 - select contact print as the theme
    2 - select the printer, paper size and prin size and click the customize button and click on the gear thingy at the bottom - the settings icon - and select multiple photos per page
    LN

  • Printing multiple slides per page for pdf

    Hey guys. I just downloaded 10.10.1 and I'm unable to print multiple slides per page for my pdf files. Usually before I print, I can choose an option if I want to have 4 or 6 slides per page printed (as this helps to save paper and is how I have my notes for school). But now, it says "copies per page" instead of "slides per page". So the print preview shows the same 1 slide printed 6 times on each paper, instead of 6 different slides on 1 paper (which what is what I was able to do before I downloaded Yosemite).
    Does anyone know how to print multiple slides per page for pdf files???

    Did you try the Layout panel? Page per sheet?

  • IProcurement  Search Results Per Page

    Hi to All,
    Was looking for a profile option that controls the search results per page. We know there is the iProcurement section that a user can set the search results per page. But we are looking for a global profile option.
    In researching this option within ML found the following profile: POR: Result Set Size. But this profile doesnt change the results per page.
    Does anyone have thoughts on what the correct profile is or why the POR: Result Set Size is not working as expected.
    Thanks

    Hi,
    Thanks for your response. In Robohelp 8 there are no options for hiding the search results per page feature while generating the output. Can you please guide me. I tried removing the content from the output by commenting out the followig code from the whform.htm file. However, the text box showing 10 remains. I cannot remove that. Can you suggest?
    gsMaxSearchTitle = "Search results per page" ; 
    gsMaxSearchTitle = "Search results per page";
    if (window.gbWhForm)
    RegisterListener2(this, WH_MSG_SHOWTOC);
    RegisterListener2(this, WH_MSG_SHOWIDX);
    RegisterListener2(this, WH_MSG_SHOWFTS);
    RegisterListener2(this, WH_MSG_SHOWGLO);
    RegisterListener2(this, WH_MSG_SEARCHTHIS);
    RegisterListener2(this, WH_MSG_BACKUPSEARCH);
    RegisterListener2(this, WH_MSG_HILITESEARCH);
    RegisterListener2(this, WH_MSG_GETSEARCHSTR);
    RegisterListener2(this, WH_MSG_SETSYNSTR);
    RegisterListener2(this, WH_MSG_GETMAXRSLT);
    RegisterListener2(this, WH_MSG_SETNUMRSLT);
    RegisterListener2(this, WH_MSG_GETNUMRSLT);
    gfunLookUp = ftsLookup;
    gfunInit = null;
    gstrFormName = "FtsInputForm"
    gsTitle = "Type in the word(s) to search for:";
    gsTitle = "Type in the word(s) to search for:";
    gsHiliteSearchTitle = "Highlight search results";
    gsHiliteSearchTitle = "Highlight search results";
    gsMaxSearchTitle = "Search results per page" ;
    gsMaxSearchTitle = "Search results per page";
    setGoImage1("wht_go.gif");
    setBackgroundcolor("White");

  • Pagination Displaying Count of Total Records available and Current Page

    Hi,
    I need to implement paging in one of our pages.
    The problem is we need to display the count of total number of records the search has resulted and the search results that fall into the current page.
    For e.g. If the search resulted in 100 records total and we are in page 5 (with 10 records per page), I need to display the count 100 on the top and records 51-50 in the page.
    How to get the count of fetched results without running a second SELECT COUNT(1) FROM ... clause.
    Is there a way to do this in a optimized way?
    Thanks

    How to get the count of fetched results without running a second SELECT COUNT(1) FROM ... clause.
    SQL> select cnt "Total", rn "Line", empno, ename, job
      from (select count (*) over () cnt, row_number () over (order by empno) rn,
                   empno, ename, job
              from emp)
    where rn between 4 and 6
         Total       Line      EMPNO ENAME      JOB     
            14          4       7566 JONES      MANAGER 
            14          5       7654 MARTIN     SALESMAN
            14          6       7698 BLAKE      MANAGER 

Maybe you are looking for

  • Transferring itunes library from a Mac to a PC

    Can I transfer all my music in iTunes from a Mac to a PC with Windows Vista using my iPod? If so, how do I do that?

  • An Error occurred while running detection with sharepoint 2013 SP1

    hi, I am trying to install SP1 for MS SharePoint 2013. after starting the wizard am getting "An Error occurred while running detection" error. I have ran SharePoint config wizard to troubleshoot it. still same problem persist. my current SP build ver

  • Archiving MM_EKKO or MM_EBAN what business reason to determine value

    Hello,          We would like to get business reasons under which we would opt for the one step or two step approach in pre processing option of selection screen in archiving objetcs MM_EKKO and MM_EBAN. We are leaning towards one step but would like

  • Error in Policy_Filter function

    Ok, I'm getting an internal error when trying to execute a policy_filter of binary content to HTML. This was working a week ago, but obviously we've transgressed the unwritten law. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.2

  • IPhoto not showing photos

    Hi, When I go into iPhoto and click on the photos in my library, nothing appears. I can see the thumbnail but when I click on the photo, it just appears blank. Do I need to download all my photos again to have them appear in the Library? Have I lost