The display of a counter in the report?

Hi all
I want to show a counter (number of each record) in a report like this image:
! http://www.arb-up.com/files/ARB-up-2008-6/Wqh20440.jpg!

How to do this?
Thank you

Hello

You can create a summary column using the Count function.

Concerning

Tags: Oracle Development

Similar Questions

  • Display a personal message for a report when the number of records returned.

    Our application has a page that displays the results of several SQL statements which are defined as reports. A report should in particular only to display a custom message when the County of invoices with status individual > 0 and not the exact time charged count himself. I got the layout to not display the meter, but I have to be able to display a personalized message that says ' problem invoices exist.» See report of bills, for more information please". I looked on the report attributes definition page but I can't find how to show this custom message. Any tips?

    Simply create a text on the page element. Make read only and put your message in the default value.
    Now put a condition on this point, to display only when required.

    Gus

  • How to display the location of the reports at the request of answers?

    There is a way to display the location of the dashboard and name using variables @{dashboard.location} and @{dashboard.name}.

    How to view the same information in the report that is not part of the dashboard but an individual analysis?

    This information is very useful for support and troubleshooting because reports often get by email, printed and users do not know their location on OBI or don't even know they came from OBI.

    Thank you

    Tatiana

    Hi Tatiana,

    There are 2 available in the analysis system variables @{report.name} and @{report.path}
    They give you the name of the analysis and its location.

    So it is not based on the dashboard, but as your analysis can be used in several dashboards, it is probably better to know the name and the path to the analysis itself rather than the dashboard...

  • Display an image BLOB in a report of the APEX

    Hello

    I have a BLOB column in a table that contains an image I want to display in a report.

    The table definition for the table (MAG_IMAGES) that I store the BLOB in is:

    CREATE TABLE 'MAG_IMAGES '.

    (NUMBER OF 'MAG_IMAGE_ID',

    VARCHAR2 (200) "NUMERO_IMAGENOM_IMAGE."

    BLOB "CONTENT."

    'MIME_TYPE' VARCHAR2 (1000).

    NUMBER OF "DOC_SIZE."

    'CONTENT_TYPE' VARCHAR2 (1000).

    VARCHAR2 (20) "DISPLAY_AREA."

    TIMESTAMP 'LAST_UPDATE_DATE' (6).

    ENABLE 'MAG_IMAGES_PK' CONSTRAINT PRIMARY KEY ('MAG_IMAGE_ID')

    )

    /

    It's the Vendor_Group Table where I store the Image_Id.

    CREATE TABLE 'VENDOR_GROUP '.

    (NUMBER OF 'VENDOR_GROUP_ID',

    VARCHAR2 (100) "VENDOR_GROUP_NAME."

    "IMAGE_ID" NUMBER

    ENABLE 'VENDOR_GROUP_PK' CONSTRAINT PRIMARY KEY ('VENDOR_GROUP_ID')

    )

    /

    I created the following procedure IMAGE_DISPLAY, which I have from a previous discussion forum.

    create or replace PROCEDURE image_display (p_image_id number)

    AS

    l_mime VARCHAR2 (255);

    l_length NUMBER;

    l_file_name VARCHAR2 (2000);

    l_content BLOB;

    BEGIN

    SELECT content, Mime_type DBMS_LOB.getlength (content)

    IN l_mime, l_content, l_length

    OF mag_images

    WHERE mag_image_id = p_image_id;

        

    OWA_UTIL.mime_header (NVL (l_mime, "application/octet"), FALSE);

    HTP.p ("Content-length: ' |") l_length);

    OWA_UTIL.http_header_close;

    WPG_DOCLOAD.download_file (l_content);

    EXCEPTION

    WHEN OTHERS RAISE.

    END image_display;

    I then create a region of APEX report with the following source:

    Select a.group_product_list,

    ' < img src = "image_display? p_image_id =' | NVL(a.image_id,0) | "" height ="" | 100. "" / > "photo

    vendor_group a, mag_images b

    where image_id = b.mag_image_id (+)

    and mag_vendor_id = 2;

    The Image does not appear, but it looks like this below. I put the column attribute 'Standard report Column '.

    BLOB_Report.png

    Can someone please tell me what I'm doing wrong?


    Thanking you in advance


    Dominic

    Dominic Dovale wrote:

    Hello

    I tried to recreate the region from scratch, even in another page altogether but still no luck.

    If I run the report without defining the column in a BLOB with its attributes (MIMETYPE column, Table etc.), he does not fail, but returned the following, which is of course the length of the BLOB. The problem only occurs if I set the attributes. Any other suggestions?

    Include MAG_IMAGE_ID as a hidden column in the report.

  • Apex 4.2, display image in the report.

    Hi all

    I'm a noob here Apex. I came across some problems with image display in a report. When I tried to have a report on a form of simple image download, it works perfectly with dbms_lob.getlength("IMAGEFILE") 'IMAGEFILE', workaround. Interactive report based on my table structure, already established the appropriate sections in report page for make my life easy.

    Problem when I tried to create the report of a SQL query combining three tables (Image3, CustomerDB, PATMAN2). The report now generates a page where I can not have any selection of BLOB. The textual part, appears perfectly.  I think my sql code is fine, but my generation of form Apex is faulty, but I need help to solve the problems.

    -----------------

    Here's the SQL code of the image gallery that works very well.

    ------------------

    Select "PUBLICATION_NO."

    "FILENNAME,"

    DBMS_LOB. GetLength ("IMAGEFILE") "IMAGEFILE",.

    "MIME TYPE"

    'PDFNAME '.

    DBMS_LOB. GetLength ("pdflink") "PDFLINK."

    "LASTUPDATED"

    "ID".

    of ' #OWNER # '. " IMAGE3.

    ---------------------

    And here is the one which does not show correctly the BLOB type.

    ---------------------

    Select PATMAN2.ID as ID,

    PATMAN2.PA as PA,

    PATMAN2. SUCH as TITLE,

    PATMAN2. OTHERS like the OTHERS,

    PATMAN2. TYPE as the TYPE,

    PATMAN2. PATENT_FAMILY as PATENT_FAMILY,

    CUSTOMERDB.COMPANY_ID as COMPANY_ID,

    PATMAN2. PUBLICATION_NO as PUBLICATION_NO,

    IMAGE3. FILENNAME as FILENNAME,

    DBMS_LOB. GetLength (IMAGEFILE) do IMAGEFILE,

    IMAGE3. PDFNAME as PDFNAME,

    DBMS_LOB. GetLength (pdflink) as PDFLINK,

    IMAGE3. MIMETYPE as MIMETYPE,

    PATMAN2. CUSTOMER_ID as CUSTOMER_ID

    of IMAGE3 IMAGE3.

    CUSTOMERDB CUSTOMERDB,

    PATMAN2 PATMAN2

    where PATMAN2. CUSTOMER_ID = CUSTOMERDB. CUSTOMER_ID

    and PATMAN2. PUBLICATION_NO = IMAGE3. PUBLICATION_NO (+)

    ------------------------------


    avman wrote:

    Interactive report based on my table structure, already established the appropriate sections in report page for make my life easy.

    Sorry, no idea what you mean by that.

    Problem when I tried to create the report of a SQL query combining three tables (Image3, CustomerDB, PATMAN2). The report now generates a page where I can not have any selection of BLOB.

    Still, it is far from clear what you mean by "that the report now generates a page where I can't have no matter what selection for BLOB".

    The textual part, appears perfectly.  I think my sql code is fine, but my generation of form Apex is faulty, but I need help to solve the problems.

    -----------------

    Here's the SQL code of the image gallery that works very well.

    ------------------

    Select "PUBLICATION_NO."

    "FILENNAME,"

    DBMS_LOB. GetLength ("IMAGEFILE") "IMAGEFILE",.

    "MIME TYPE"

    'PDFNAME '.

    DBMS_LOB. GetLength ("pdflink") "PDFLINK."

    "LASTUPDATED"

    "ID".

    of ' #OWNER # '. " IMAGE3.

    ---------------------

    And here is the one which does not show correctly the BLOB type.

    ---------------------

    Select PATMAN2.ID as ID,

    PATMAN2.PA as PA,

    PATMAN2. SUCH as TITLE,

    PATMAN2. OTHERS like the OTHERS,

    PATMAN2. TYPE as the TYPE,

    PATMAN2. PATENT_FAMILY as PATENT_FAMILY,

    CUSTOMERDB.COMPANY_ID as COMPANY_ID,

    PATMAN2. PUBLICATION_NO as PUBLICATION_NO,

    IMAGE3. FILENNAME as FILENNAME,

    DBMS_LOB. GetLength (IMAGEFILE) do IMAGEFILE,

    IMAGE3. PDFNAME as PDFNAME,

    DBMS_LOB. GetLength (pdflink) as PDFLINK,

    IMAGE3. MIMETYPE as MIMETYPE,

    PATMAN2. CUSTOMER_ID as CUSTOMER_ID

    of IMAGE3 IMAGE3.

    CUSTOMERDB CUSTOMERDB,

    PATMAN2 PATMAN2

    where PATMAN2. CUSTOMER_ID = CUSTOMERDB. CUSTOMER_ID

    and PATMAN2. PUBLICATION_NO = IMAGE3. PUBLICATION_NO (+)

    Did you specify IMAGE DOWNLOAD and BLOB format masks for the IMAGEFILE and PDFLINK columns? Select "BLOB" in the column of the number/Date Format attribute, then fill the section attributes of Blob column as requires it.

    We cannot solve what we cannot see. We do not have your tables or data so we can not replicate this for ourselves. Please reproduce the problem with an example on apex.oracle.com and developer comments login information for the workspace here.

  • When I export the report to EXCEL files and filter the data, it will display incorrect data

    Hi experts,
    In OBIEE 11.1.1.6, when I export the report to EXCEL file and open this file to view all the data, it is correct.
    However, as the amount of data is so, so I add filter for each column (click on the sorting-> filter filter)
    When I select data in the filters, I'm afraid that I find the value of 'White' in the last line in the filter area, but in the table, there no null data. Why? Are you facing the same issue?
    Secondly, when I select a value, it will generate a data line.

    For example:
    2008 - Region1
    -The region.2
    -Elle3
    2009 - Region1
    -The region.2
    -Elle3


    When I select 2008 data in EXCEL, it will display unexpected data, as below:
    2008 - Region1

    Exactly... If you export to the format you will not face question of null data or incorrect when filtered.

    Kind regards
    DpKa

  • The limit to the number of columns to display in the report. Help!

    Hi all

    Maybe this is a stupid question. But why get this error with a report of the IR? and what is the solution for this. Please help me with this.

    Error

    The limit to the number of columns to display in the report. Please, click on select columns under Actions menu to minimize the list of columns in report view.

    Oh... And I also have a blob column... If the format is not given, the table is very good... but happen to get this error only when the BLOB download format is given.

    Thanks and greetings
    John

    Published by: JB on March 30, 2012 11:08

    Hello

    I implemented a small suitcase of test on apex.oracle.com and I get the error even if I use the download format.

    I have a table
    test_blob (identification number, name varchar2 (10), blobcont blob)

    If I create IR as

      select
        id,
        name,
        blobcont
      from test_blob
    

    and then I set the download format I got the error.

    If you want this to work you need to change your query to

      select
        id,
        name,
        dbms_lob.getlength(blobcont) blobcont
      from test_blob
    

    And there still define download for blob on column blobcont format.

    Kind regards
    Aljaz

  • Special characters are not displayed using the report query

    I run my ad page APEX reports BI using apex_util.download_print_document (see below).

    Looks like it's stripping on the '+' in the report during the display. It displays correctly in the XML file.
    I even tried encoding with SELECT max (replace (I1.alpha_grade, ' + ', '% 2B')). This displays the '% 2B' instead of the ' + '.
    Any ideas?


    () apex_util.download_print_document
    p_file_name = > l_form_description,
    p_content_disposition = > 'attachment ',.
    p_application_id = > v ('APP_ID').
    p_report_query_name = > nvl (l_report_query_name, l_form).
    p_report_layout = > l_layout,
    p_report_layout_type = > 'rtf ',.
    p_document_format = > v ('P507_OUTPUT_FORMAT'));

    Bob,

    Try

    REGEXP_REPLACE ( i1.alpha_grade, '\&\#43;', '(+)' )
    

    Jeff

  • display of the image in the report of BLOB

    Hi all

    I have a requirement i.e.

    I want to display the image in a basic report to condition

    as if id = 1 then babou picture, id = 2 then second picture and id = 3 then third image

    I have the image in the database by type of BOLB

    I need to view in the report of this condition

    Please help me this requirement is urgent



    Reg,
    Jell

    It's not clear to me exaclty what you mean by

    >
    as if id = 1 then babou picture, id = 2 then second picture and id = 3 then third image
    >

    ID the ID of the image field is? Then you have not nead a condition in your report. But here's how show you it with a condition:

    
    
    
    
    
    
  • How to capture and display the end of line character in the report

    Hi guys,.

    I have a report that we are poster campaign ID, campaign name, and Description of the campaign.
    The result is coming like this

    Description of campaign campaign campaign ID name
    1 ABC 1 Plan June 13. 2 market July 1. 3. end July 30.
    Plan XYZ 2 1 13 June. 2 market July 1. 3. end July 30.

    But we want the data to be displayed in the following format.

    Description of campaign campaign campaign ID name
    1 ABC 1 Plan June 13.
    2 market July 1.
    3. end July 30.
    Plan XYZ 2 1 13 June.
    2 market July 1.
    3. end July 30.
    That the user has the possibility to enter several lines for the description in front end Application & want us to show the same way Description. How can I capture this end of the character in ETL? If he is already captured, then how to show in the report.
    I use Siebel as before end application and for the ETL using Informatica.

    Any help will be much appreciated.

    Thank you
    Rupesh

    OBIEE presentation Service is an HTML element based on software then it does not show the end file character CHR (10) or Chr (13).
    You must replace this with the HTML tag charcaters
    .

    I'm not sure of the name of the function, but you must make a formula like this

    replace(mytable.mycolumn, chr(10), '
    ')

    See you soon
    Nico

  • Displays the name of the report in the view 'no result '.

    Hi guys,.

    It's 10.1.3.4.1

    In the * 'No result' view *: is it possible to retrieve and display the name of responses dynamically?

    I found two sons:

    Do not change the default value, no results text
    http://forums.Oracle.com/forums/thread.jspa?MessageID=8312398 & #8312398

    Show the title of the report (header) when no results
    http://forums.Oracle.com/forums/thread.jspa?MessageID=4575238 & #4575238

    but these solutions require customization on a per report basis, and the name of the application must be hardcoded.


    Ideally, I would like to have something like:

    ' Not found for report < script type = "text/javascript" > print report.name < /script > '

    I can actually put in the noresults.xml file, which would affect all applications that include the display 'no result '. Replace the section of scorecard or hard code them the name of the application in the results not seen is not easy to manage.

    Any ideas or recommendations?

    Thank you, best regards.
    Alex. -.

    Hi Alex,

    Ideally, I would like to have something like:

    ' Not found for report '

    First thing is seen results no. He's not accepting the "HTML/JavaScript", so we cannot reach the above syntax

    Second... There is no option available in results view dynamic name no.

    You can do this for the title, but as you say manual labor he's be there

    Thank you
    Angelique Varanasi

  • displaying empty lines in the report

    Dear forum

    I have a specific format of some good consisting of a few lines.
    good report sometimes get 5 lines sometimes 8 lines, according to the transaction of such specific evidence.

    is it possible that I set the number of rows in the report. Let's say 10 lines.
    If indeed the good is of 5 lines, 5 other lines appear empty in the end.
    and when actually the good is of 8 lines, the other 2 rows appear in empty at the end.

    so that all lines displayed in right are 10. Top of page lines filled with data and other below appear as blank lines and the general format of the good looks good on a single page.




    Thank you


    teefu.

    Published by: user_teefu on August 26, 2010 11:32

    Published by: user_teefu on August 26, 2010 11:35
    SELECT deptno, ename, sal, rn, lvl
    FROM
    (
      SELECT
        deptno, ename, sal,
        ROW_NUMBER() OVER (PARTITION BY deptno ORDER BY sal desc) rn
      FROM emp where deptno=20
    ) , (select level as lvl from dual connect by level<=10)
    WHERE rn(+)=lvl
    ORDER BY deptno;
    
    20     Phoenix     5000     1     1
    20     SCOTT     3000     2     2
    20     FORD     3000     3     3
    20     JONES     2975     4     4
    20     ADAMS     1100     5     5
    20     SMITH     800     6     6
                        7
                        8
                        9
                        10
    

    Published by: PhoenixBai on August 26, 2010 18:24

  • Why the report of the Observatory of SQL are not displayed?

    Why the report of the Observatory of SQL are not displayed?
    SQL> set serveroutput on
    SQL> variable my_rept CLOB;
    SQL> BEGIN
      2  :my_rept :=DBMS_SQLTUNE.REPORT_SQL_MONITOR();
      3  END;
      4  /
    
    PL/SQL procedure successfully completed.
    
    Elapsed: 00:00:00.93
    
    SQL> print :my_rept
    
    MY_REPT
    -----------------------------------------------------------------------
    
    SQL Monitoring Report
    
    SQL>

    Check your STATISTICS_LEVEL and CONTROL_MANAGEMENT_PACK_ACCESS to see if they are correctly defined. The former should be set to STANDARD or ALL and the latter should be set to DIAGNOSTIC + TUNING.

  • Display data in the report to pl/sql

    I need to display data in a report using pl/sql.

    The structure of the table would be fixed, but the data it would come from a pl/sql.

    Is this possible in Apex 3.2.1 for that? If so, how can we do this?

    Hi Hozy,

    As much as I know APEX report cannot manipulate the slider.

    If the options are:
    1)
    Try the PIPE...
    http://www.databasejournal.com/features/Oracle/article.php/2222781/returning-rows-through-a-table-function-in-Oracle.htm

    (2) as has said Roel, complete apex collection using your ps/sql and use it in the report.

    Kind regards
    Shijesh

  • How to display the text in the cell for CDA on the report

    Hi all

    I use en-Studio of reporting. Now my requirement is I want to show the text in the cell that I added under CDA - column Variance in the report. So for this I used the text of the cells and within this function function, I gave the line, column and page number. But it does not show the text in the cell that I added for hyperion planning on the report. But if I am referring to another cell text that I added to the variance of Yeartotal I'm able to see on the report.
    Can someone tell me why I'm not able to see the text from the cell that I added to the variance of the CDA?
    Pls tell the way by which I can return.

    My formula looks like this-

    < < TxtCase ("Grid1", 78 H, 1, $CurrentMonth = "October") > > I am very confused about the last parameter. No error or the kind of argument not valid message, but it still all just empty.



    Thank you

    I think you're out of luck on this one.

    Cell notes are stored in the planning of the HSP_CELL_NOTE and HSP_CELL_NOTE_ITEM tables. Done HSP_CELL_NOTE refers to a member for each dimension that is pointing to the intersection where the note should be linked. YearTotal is an intersection, even though it is dynamically calc would be in essbase. Each HSP_CELL_NOTE NOTE_ID points to one or more notes that are stored in HSP_CELL_NOTE_ITEM. This means that although you can save a note in YearTotal, it does not display when you report on the Y-T-D (Oct) which is purely dynamic. It does state that when you reference specifically an intersection that is stored in HSP_CELL_NOTE.

    It would be nice if you could see all the notes stored in Jan: Oct when your report contains a Y-T-D (Oct), but it doesn't.

    You can always write a stored procedure to go against the tables and the report in excel.

    Dave

  • How to display a BLOB (Image) in a report of the EBS?

    User has requested to add a Logo image to a report called the E-Business Suite (EBS).

    The image is currently stores in a BLOB column.

    How can I make the image to display in the report?

    Thank you!

    I don't see why it wouldn't work on Unix. Each element in the layout is a source based on a column in your query (in the datamodel). It doesn't matter if it's Windows or Unix.

    Reports done automatically if you use the wizard. If you change an existing report, you need to add the column (in the datamodel) and element (in the layout) yourself.

Maybe you are looking for