How to display records #Total #!

Hi all

In my application, there is a button in the view, when you click on view button I display all records nearly 100 recordings. So for the end user to do scroll down to check how many records are available.

Now it ask me to display the total none of the records before making scroll down.
Is it possible to display the total no record?

Thanks in advance,
David...

Hello

As the strresult_arr table is filled to the top of the code using:

...
BULK COLLECT INTO strresult_arr, ...
...

You can use anywhere after that. In fact, the next line of code is:

htp.p('<table cellpadding="0" cellspacing="0" style="background-color:#EEEEEE">');

starting your report table, so you could put the new higher than line

Andy

Tags: Database

Similar Questions

  • How to display records with zero on dashboard

    Hi expert,

    If I have a product dimension table,
    a fact table


    If there are records containing values in the comic book, A product void.

    If the logical column of the fact is SUM (...).

    How to display records with values null in the dashboard.

    Use the outer join?

    or another method?

    I don't want to use outer join because it makes the PRD be so complicated

    Jin
    Pull all of the columns in the criteria, it will show NULL for a product

    For zero, on the done column use IFNULL(fact_col,0)

    that looks like this

    http://a.imageshack.us/img180/6616/Ifnull.jpg

    Thank you
    saichand.v

  • How to display the total number of rows in the dashboard

    Hello

    I have a dashboard report for retrieving the list of projects and details, it grows on a daily basis, instead of users downloading the report and find out the total number of projects, I want to display 'the total number of projects' alone in the dashboard. How can I do?

    Also is it possible to do like a pop up or something a little flash news - not necessary, but will be very good if I can do it.

    Thanks for your time and your help.

    create a report and a column to write a column invert the function max (rcount (1)). Call this column depending on the position of the column (as @1) in narrative mode.
    You can view only the narrative in the dashboard.

    for flash type of report, you can use the ticker view and call the same column in the view.

    refer to this link to view the total number of records
    http://Siebel.ITtoolbox.com/groups/technical-functional/Siebel-Analytics-l/display-row-count-in-top-of-the-table-view-3704999

    assign points if found useful.

  • How to display actual totals in number and not asterisks

    Hi, this is regarding my previous post. Non-specific to a financial report, how to display the actual number behind the asterisks in the totals for report. If you ask me especially, I'm talking about the report of the accounting entries in accounts payable. When the number of characters in the total exceeds 15, it shows asterisks instead of numbers. I tried to adjust the width in various places, but it doesn't help. Any help is appreciated.

    Thank you
    Naveen Gagadam.

    I don't think you can pass the value of the parameter of precision as 2, it can be STANDARD or EXTENDED.
    I don't know what currency is involved here, but based on your statement that it now displays 5. I think so
    the currency is set to 5 standard. Set up the precision extended 2 for this currency and pass extended.
    Give it a shot. The currency precision is detailed in the GL user guide.
    Here is an excerpt of the GLUG - section currencies

    6. Enter the precision of the currency to denote the number of digits to the right of
    the comma is used in regular monetary transactions.
    7 enter theExtended precision for the number of digits to the right of the
    decimal point used in the calculations for this currency. The extended precision must be
    greater than or equal to the precision standard.
    Note: Some Oracle Applications uses the extended precision. Others,
    as accounting, are not.

  • Re: How to display records of newlyadded first in the table

    Hi all

    I use Jdev 11.1.2.3.0

    My requirement is I have a table in this table, I have a table and the form. Here, I want to display newly added records, first in the table.but that table always shows of old recordings first.so how do I display it.can someone help out me.

    Thank you

    G.Shilpa.

    You can control the line newly inserted into the table of the ADF

    http://lucbors.blogspot.in/2010/12/ADF-11g-how-to-control-where-new-row-is.html

    ttp://mjabr.WordPress.com/2011/07/02/how-to-control-the-location-of-the-new-row-in-aftable/

  • How to display records by several XMLTABLE() NULL

    First of all, let me provide the test SQL INSERT and CREATE TABLE data:
    create table xml_t2 (xml_raw XMLTYPE);
    Insert sql, a little long... just copy and paste, then run it will be OK!
    the system warns: your message exceeds the maximum length of 30000 characters.
    So, I place it on the space of shariing mediafire
    http://www.mediafire.com/?npmot6lgl86dgli
    Tests of SQL:
    SELECT t1.years, t1.months,t1.days,t1.hours,t1.value,t2.value
                    
            FROM xml_t2,
            XMLTABLE ('$d/cdata/F1' passing xml_raw as "d" COLUMNS years integer path '//year', months varchar(3) path '//month', days varchar(2) path '//day', hours varchar(2) path '//hour', mins varchar(2) path '//minute', value float path '//value') t1 ,
            XMLTABLE ('$d/cdata/F2' passing xml_raw as "d" COLUMNS years integer path '//year', months varchar(3) path '//month', days varchar(2) path '//day', hours varchar(2) path '//hour', mins varchar(2) path '//minute', value float path '//value') t2
    The condition at the moment is... In the xml data, I deleted the month "Jan" with the < F2 > tag that is in 2010.
    This means that the XMLTABLE t2 output will not contain records of "Jan", but it is still in XMLTABLE t1.

    The problem is that when I use the SQL above to display the t1.value, that it will not display the t1.value in Jan 2010... it just jump "Jan" and becomes "February"...
    to view what I prefer, it is something like this:
    YEARS MONTHS DAYS HOURS t1_value t2_value
    ----- ------ ---- ----- -------- --------
    2009     Jan    01   01       8       8
    2009     Jan    01   02       8     580
    2009     Jan    02   01     580     580
    2009     Jan    02   02     580     580
    2009     Feb    01   01     440     440
    .....................
    .....................
    2010     Jan    01   01     627     NULL
    2010     Jan    01   02     627     NULL
    2010     Jan    02   01     367     NULL
    2010     Jan    02   02     367     NULL
    2010     Feb    01   01     367     849
    2010     Feb    01   02     849     849
    ....................
    ..............
    Then... the main problem is how transparent back in January 2010 in t1 XMLTABLE record and assign null to the XMLTABLE t2 since it doen't contains this month record.

    THANKS for the help!

    The following code generates the desired result on the 11.2.0.2 version, and it indexes the beaches of analyses on the index.

    SELECT t1.years, t1.months,t1.days,t1.hours,t1.value,t1.value2
    FROM xml_t2,
    XMLTABLE ('$d/cdata' PASSING XML_RAW AS "d" COLUMNS
    YEARS INTEGER PATH 'F1/name/year',
    MONTHS VARCHAR(3) PATH 'F1/name/month',
    DAYS VARCHAR(2) PATH 'F1/name/day',
    HOURS VARCHAR(2) PATH 'F1/name/hour',
    MINS VARCHAR(2) PATH 'F1/name/minute',
    VALUE FLOAT PATH 'F1/name/value',
    VALUE2 FLOAT PATH 'F2/name/value') T1;
    

    If you think that my answers are "useful" or "correct" Please mark as well.

    A XMLTABLE expected to perform generally better than two.

  • How to display the total number of text entries in a table (php)?

    Hello

    I have a database of 'chorus' with 'members' table that has the following data structure:

    Name Voix
    Jennasoprano
    DannaAlto
    ROXYAlto
    Damientenor
    CarmenAlto
    Daisysoprano

    Diana

    Alto
    Roberttenor
    JohnBass

    With Dreamweaver, php, any help on how display in a Web page the total number of 'alto', in this case: 4.

    Thank you

    Luci.

    SELECT voice, COUNT (*) as the GROUP BY, ORDER BY DESC voice voice FROM choir;

    This will give you the plain voiceid - County

    SELECT voice, COUNT (*) as the chorus of voices ORDER BY DESC GROUP name;

    This will give you appoint County - voice -.

    Confidence, it helps.

    See you soon,.

    ST

  • How to display records of entry into Modbus in hexadecimal?

    I am connected in series to a relay, and by reading the registry entry to 1 address, I get 580 which is the version of the firmware of the relay and is therefore correct. Is it sort of, I could get the output as the full header modbus IE: (address: additional function: data: error code check/crc) for example: Fe, 02, 44, 80, 00, 02, F8, DC?

    Also when I am trying to write to a single coil, which is the reset of the system, I don't know what address to use for the block of writing simple microphones. I know that the function is 5 and the operation code for this relay is 0001 but do not know how and where to use the code of operation?

    Attached the VI is used to read the registry as well as documentation on the reset command and application Modbus for relay

    Set your "String to write" command to the spell of display.  Then type the hex values.

  • How to display records in a different table when you query an original table

    Hi all

    Currently, I have a problem. I have three tables.

    The first table is user with the attributes username (primary key), password, full name etc.

    Table 2 is books attributes (primary key) ISBN, title, author, Publisher, etc..

    The last picture is a booking with the booking of attributes (primary key) number, user name (foreign key in the table reservation as it is a primary key in the table user), ISBN (foreign key in the table reservation as it is a primary key for the table of the book), number of orders and the date of the collection.

    When I query my database using the username that I have, I can view all the related records the user name of my reservation Board.

    Can I ask you how can I also view the Tite and author next results?

    Please provide the detailed procedure that I am quite new in the present.

    Thank you!

    Do you in SQL by using joins. For example

    SELECT the title, author, books, user.username, booking user

    WHERE

    User.UserName = reservation.username AND

    books. ISBN = booking. ISBN

    This is an example of a join in the WHERE clause using the pre ANSI92 syntax that I prefer. The most recent style uses joins in the FROM clause. Google SQL joins for more details.

  • How to display records from the xml file

    Hi all
    I created a region his area of research in reality
    with 5 elements and array of result area

    I want to search records based on the 5 elements and want to view output table


    I have the table name as hr_api_transactions, which contains many columns



    and also, this table contains a column
    name TRANSACTION_DOCUMENT of type CLOB()
    that files xml columns for each record
    I want to extract data from this xml file and want to display.

    Instance of the view - put the name of VO with which you are extracting data

    Discover the attribute and the attribute of file View - could see attribute by which you found the content of the file

    File name substitution - is not mandatory, let him

    The MIME type of the file: do not place anything, need to better manage programmatically through. Put the code in the below processRequest() method

    OADataBoundValueViewObject contentBoundValue = new OADataBoundValueViewObject(downloadBean,
      "FileContentType"); // here "downloadBean" is bean of message Download item
    downloadBean.setAttributeValue(FILE_CONTENT_TYPE, contentBoundValue);
    

    -Anand

  • How to display records based on user input

    Hi all

    On the front side, there are two date fields, for example, beginning and end. Whenever the user enters the start date and end date, I want to display the dates from the start date of
    date of the end all what the user has entered.

    For example, the user enters start date: 15/01/2012 and end date: 19/01/2012
    I want to display like this * 15/01/2012 01/16/2012 01 2012 17 01/18/2012 01/19/2012 *.


    Thanks in advance.

    Thank you
    PAL

    Select sysdate + rownum-1
    Double log in 1 = 1 and rownum<= ((sysdate+7)-="">

    put to sysdate startdate and enddate sysdate + 7 as & startdate and enddate &

  • How to display the total of the group by avoiding totals deleted column cntrbn

    Hi friends
    Am with a column as GroupName masking certain groups for ex: FSVB
    I gave as
    <? for-each-group: current-group () [GroupName! = 'FAVS']; / GroupName? >
    It works very well
    but the totals when I try this
    <? sum (current - group () [.. / GroupName! = 'FAVS'] / as TOTAL_COST? >)
    me slappin' her with an error...
    can you suggest the correct code for this
    Thank you for your time and help

    You can store the variable group with filter applied on it and use it instead of the actual group. This neednt filter on each calculation so you have

  • How to display the total of the group to the grand total

    Hello friends,
    I'm a grouping column and showing the group totals. I want to capture these totals n view as a total general. I know that we can draft total running, but can someone tell me the exact syntax
    Thank you

    You can try using the syntax below:

  • How to display records

    Logic Pro 8 AND 9, there are folders for each project: audio, bounces, etc. In LPX, they are hidden. Is there a way to "unmask" the?

    I am using Yosemite.

    In LPX you can choose to save a project as a single file (package) or a folder...

    If you have registered as a package, load the project and then save as and select the folder option...

  • Display the total record count

    Hello
    I need to display the total number check-in alert msg and based on the selection of the user [Ok/Cancel] I need to treat the query or the output to the export. The idea is that after applying the filter, if the query returns many users perhaps wouldn't go forward with reoprt however if it returns less numbr of users of lines out of the export.
    Please suggest how do it.

    I think that you will have difficulty to implement your interaction needed with OBIEE, keeping in mind that the query must trigger in any case to return the number or lines, what about using paging controls on the report to limit the first round returned on the dashboard, set up the column we mentioned earlier in this thread use the following in a narrative view:

    Total number of records: @1

    where @1 is the number of column for the max (rcount (1)) in the criteria pane-, you can hide this column from the report itself.
    set the number of rows to display to 1 in the narrative
    If you set # of lines in the paging controls to display reasonable something like 10 or leave maximum by default of 25, visitors will see the first 25 records or the story will tell them how many records exist, so they can hit all the paging controls show and then do what they want with it?

    In addition and a bit more complicated, create a query that returns a row if the number or records in your query returns more than your threshold, for example 4000 lines. You can then use this request as "Guided Navigation" to view the report on the dashboard of conditionally, you might have another section of the dashboard that displays on the back with a piece of text saying your user name that the number of lines have exceeded the threshold on this section you might give a navigation link to the report itself said (whether in the answers or another page dashboard).

    I hope that gives you control of the mental health I think that your after, though without going through a nice ok / Cancel button.
    HTH.

Maybe you are looking for

  • Is it possible to have the Office site always load as a default setting.

    At the moment, once a site to load with the android site, he must go to the menu and select "desktop site. While I find the sites Office generally more useful, I want dsktop sites to load all the time

  • 'Cool Down Mode' a 'threat of application?

    I have a Motorola Backflip that I updated to 2.1 - update1 awhile back. A few weeks ago, I installed Webroot Security for Android 1.6.13.296. He currently has 125 game definition. (I use Webroot Spy Sweeper on my PC for several years without problem)

  • Downgrade from Vista to XP Pro

    My company bought a laptop computer for us to use around the laboratory. The Dell Latitude D630 has been bundled with Windows Vista. We prefer to use Windows XP Pro to maintain consistency and ensure that all programs "home-made or home ' run as it s

  • Scanned document is black

    Hello I use Mac portable scanner OfficeJet 6413. My scanned document is black when recording. Please tell us how to solve this problem. Thank you.

  • 1080 p f310

    How can I download the appliance over th my PC?