High functionality of dynamic report page

Hi all

I need to create a dynamic of ask the top N feature n the selection function, it shows the effect on the report as for dynamic top10 of value should only show the top 10 values in report how to do this? Please help...

Jingle.

Reference: http://oraclebizint.wordpress.com/2008/02/21/oracle-bi-ee-101332-presentation-variables-in-top-filter/

Thank you
Saichand.v

Tags: Business Intelligence

Similar Questions

  • Refreshing a page from a link in a dynamic report column

    Hello

    I have a dynamic relationship with a column of link. I am trying to update another page with the values of the selected line. I have created a process that is called when the user clicks on the link in the column, but it does not work.
    The page called by this link is not updated. So my question is how can I refresh the values on a column of dynamic report of a page link?

    Thank you

    NP - you're welcome!

    Andy

  • Dynamically, use page number in the form on the pages with their field?

    I have a form with pages having engineered.  JS for spawning exception works very well.  However, a text field on model is driving me crazy.  I wish that this field ("CaseNum") to dynamically display the page number, given that the page number also matches the file number.  On templage ("getcase"), I can calculate the value for CaseNum using custom script calc (event.value = this. PageNum).  But it does not work because each page having spawned Gets the same value (that is to say, what is the latest issue of the page generated). I also tried the JS below, using P0.getcase.CaseNum as the field on the model in which I wish the page number/box number to display:

    var this.pageNum = opaque;

    this.getField ('P' + opaque + ".getcase" + ".") CaseNum') .value = opaque;

    But it does not either, because the page automatically generated field gets the prefix of the P + .getcase page number appended to the name of the field.  Is it possible to number of dynamic page used in a form on the pages with their field?  If so, how? Note that while I try to use a dynamic file on pages with their number, it presents the same problem as dynamically displaying pages with their page numbers.  I'm a JS newbie, so any help appreciated.  I searched high and low on the web and in the forums and couldn't find the answer.  THX.

    http://forums.Adobe.com/thread/1160899

    @

    7George Johnson,.

    February 28, 2013 09:42 in reply to natelfo

    Is that what you mean?

    See also:

    http://www.PlanetPDF.com/developer/article.asp?contentid=6466

    d-template-pages-using-JavaScript-functions/ http://www.wordwizardsinc.com/blog/Finding-the-FieldName-prefix-on-Acrobat-acroform-spawne

  • How to plan an interactive report page to be emailed

    Gurus,

    I want to fill the same function, as described in How to plan an interactive to be emailed report page :

    http://download.Oracle.com/docs/CD/E17556_01/doc/user.40/e15517/app_comp.htm#sthref1192

    http://download.Oracle.com/docs/CD/E17556_01/doc/admin.40/e15521/aadm_mg_service.htm#sthref58

    but I can't find the documents referenced in How to plan an interactive to be emailed report page. Can someone send me the new links...

    APEX 4.1.1.00.23

    -Oracle database 10g 10.2.0.5.0

    Thank you

    Robert

    Found this online: creating and customizing an interactive report

    Towards the end of the document is the instruction on how to take out a subscription of interactive report...

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

  • Create a single high image of a multi-page pdf file

    I would take a multi pake pdf file, and have all pages "joint" from top to lower edge to create a single image of high. I am a teacher and I currently do this by hand, I can then annotate the entire page and croll down to an entire document inside Photoshop.

    Here's an example: I have a 4 page pdf. Currently I opened the PDF in PS, I find myself with 4 images; I adjust the size of the vertical Web of one of the images to be 4 times its original size, then one by one, I copy the content of each image to this new high image and move the layer vertically below the other. The result means a 1024 x 6400 pixel image.

    I would like to be able to simply open the PDF with a script and get this all done in one step.

    Any help is appreciated.

    Could you give a try this?

    // opens all pages of pdfs cropped to trimbox with set settings;
    // 2011, use it at your own risk;
    #target photoshop
    var pdfOpenOpts = new PDFOpenOptions;
    pdfOpenOpts.antiAlias = true;
    pdfOpenOpts.bitsPerChannel = BitsPerChannelType.EIGHT;
    pdfOpenOpts.cropPage = CropToType.TRIMBOX;
    pdfOpenOpts.mode = OpenDocumentMode.CMYK;
    pdfOpenOpts.resolution = 150;
    pdfOpenOpts.suppressWarnings = true;
    pdfOpenOpts.usePageNumber  = true;
    // dialog for pdf-selection;
    var theFiles = app.openDialog();
    if (theFiles) {
    // change pref;
         var originalRulerUnits = app.preferences.rulerUnits;
    // change pref;
         var originalRulerUnits = app.preferences.rulerUnits;
         app.preferences.rulerUnits = Units.PIXELS;
         for (var m = 0; m < theFiles.length; m++) {
              var theFile = theFiles[m];
              if (theFile.name.slice(-4) == ".pdf") {
                   var thePdf = openMultipagePDF(theFile);
    // arrange pages;
                   var theHeight = thePdf.height;
                   thePdf.resizeCanvas(thePdf.width, theHeight * thePdf.layers.length, AnchorPosition.TOPCENTER);
                   for (var n = 0; n < thePdf.layers.length - 1; n++) {
                        thePdf.layers[n].translate(0, theHeight * (thePdf.layers.length - n - 1))
                        };
                   }
              else {alert ("not a pdf-file")}
              }
    // reset pref;
         app.preferences.rulerUnits = originalRulerUnits;
         };
    ////// function to open all pages of a pdf //////
    ////// influenced by PlaceMultipagePDF.jsx //////
    function openMultipagePDF(myPDFFile) {
    // suppress dialogs;
         var theDialogSettings = app.displayDialogs;
         app.displayDialogs = DialogModes.NO;
         var myCounter = 1;
         var myBreak = false;
         while(myBreak == false){
              pdfOpenOpts.page = myCounter;
              try {
                   var thePdf = app.open(myPDFFile, pdfOpenOpts);
                   thePdf.flatten();
                   thePdf.layers[0].isBackgroundLayer = false;
                   thePdf.layers[0].name = myPDFFile.name+"_"+myCounter;
                   if (myCounter == 1) {
                        var theFile = thePdf
                        }
                   else {
                        thePdf.layers[0].duplicate(theFile, ElementPlacement.PLACEATBEGINNING);
                        thePdf.close(SaveOptions.DONOTSAVECHANGES)
                        }
                   }
              catch (e) {myBreak = true};
              myCounter = myCounter + 1;
              };
    // reset dialogmodes;
         app.displayDialogs = DialogModes.ERROR;
         return app.activeDocument
         };
    
  • Dynamic report with LOV SelectLists

    I like to create a dynamic report with Select-Lists(LOV based).

    My Source (according to PL/SQL returning SQL query) region:
    declare
      q varchar2(4000);
    begin
     
      q := 'SELECT R_ID, R_TSO_NO';
    
      For i in (SELECT * FROM USER_TAB_COLUMNS
      WHERE table_name = 'TAB_REPORTS'
      AND column_name like '2%')
      loop
        q := q || ', ';
        q := q || 'HTMLDB_ITEM.SELECT_LIST(1, ';
        q := q || i.column_name;
        q := q || ', ';
        q := q || chr(39);
        q := q || 'LOV_QER';
        q := q || chr(39);
        q := q || ', null, ';
        q := q || chr(39);
        q := q || 'Y';
        q := q || chr(39);
        q := q || ') "';
        q := q || i.column_name;
        q := q || '"';
      end loop;
       
      q := q || ' FROM TAB_REPORTS ';
    
      return q;
    
    END;
    This is the return value, which seems to be OK:
    SELECT R_ID, 
    R_TSO_NO, 
    HTMLDB_ITEM.SELECT_LIST(1, 2008_05, 'LOV_QER', null, 'Y') "2008_05", 
    HTMLDB_ITEM.SELECT_LIST(1, 2008_03, 'LOV_QER', null, 'Y') "2008_03", 
    HTMLDB_ITEM.SELECT_LIST(1, 2008_08, 'LOV_QER', null, 'Y') "2008_08", 
    HTMLDB_ITEM.SELECT_LIST(1, 2008_11, 'LOV_QER', null, 'Y') "2008_11", 
    HTMLDB_ITEM.SELECT_LIST(1, 2009_02, 'LOV_QER', null, 'Y') "2009_02", 
    HTMLDB_ITEM.SELECT_LIST(1, 2009_05, 'LOV_QER', null, 'Y') "2009_05", 
    HTMLDB_ITEM.SELECT_LIST(1, 2009_08, 'LOV_QER', null, 'Y') "2009_08", 
    HTMLDB_ITEM.SELECT_LIST(1, 2009_11, 'LOV_QER', null, 'Y') "2009_11", 
    HTMLDB_ITEM.SELECT_LIST(1, 2010_02, 'LOV_QER', null, 'Y') "2010_02", 
    HTMLDB_ITEM.SELECT_LIST(1, 2010_05, 'LOV_QER', null, 'Y') "2010_05", 
    HTMLDB_ITEM.SELECT_LIST(1, 2010_08, 'LOV_QER', null, 'Y') "2010_08", 
    HTMLDB_ITEM.SELECT_LIST(1, 2010_11, 'LOV_QER', null, 'Y') "2010_11" 
    FROM TAB_REPORTS
    And this is my error msg, I do not understand:

    * Failed to parse the SQL query:
    ORA-00911: invalid character *.

    Where is this invalid character, please?

    THX 4 help,
    Chris

    Hello

    As part of HTMLDB_ITEM. This is a parameter of function - it should be a tank. In addition, if you use a recent version of the APEX, you should use the synonym APEX_ITEM reference HTMLDB_ITEM.

    Here is the statement of HTMLDB_ITEM parameter. SELECT_LIST...

        p_idx         in number,
        p_value       in varchar2 default null,
        p_list_values in varchar2 default null,
        p_attributes  in varchar2 default null,
        p_show_null   in varchar2 default 'NO',
        p_null_value  in varchar2 default '%null%',
        p_null_text   in varchar2 default '%',
        p_item_id     in varchar2 default null,
        p_item_label  in varchar2 default null,
        p_show_extra  in varchar2 default 'YES'
    

    You will see that it is a VARCHAR2 parameter.

    See you soon

    Ben

  • Question of dynamic report

    Dear, I'm back

    I and my dynamic report:
    My source:

    DECLARE
    vTABLE VARCHAR2 (100);
    vCOLUMN VARCHAR2 (100);
    vVALUE varchar2 (100);
    vSQL VARCHAR2 (1000);
    BEGIN
    vTABLE: =: P46_TABLELIST;
    vCOLUMN: =: P46_COLUMNLIST;
    vVALUE: =: P46_COLVALUE;

    vSQL: = 'SELECT'. vCOLUMN | 'FROM ' | vTABLE. 'WHERE' | vCOLUMN | » ='|| vVALUE | ;

    VSQL RETURN;
    END;

    And it does not work very well.
    When I run it in SQL workshop, I have this error:

    ORA-06550: line 11, column 88:
    PLS-00103: encountered the symbol ";" when expecting one of the following values:

    (- + case null new mod)
    AVG
    count current prior min max sql stddev sum variance run
    ForAll time timestamp interval date fusion

    pipe



    1 DECLARE
    2 vTABLE VARCHAR2 (100);
    3 vCOLUMN VARCHAR2 (100);


    HX for your help

    Celio

    Celio, you must first create the feature on the database

    FUNCTION to CREATE or REPLACE your_function
    RETURN VARCHAR2
    IS

    vSQL varchar2 (4000);

    BEGIN

    vSQL: = 'SELECT'. v ('P46_COLUMNLIST'). 'FROM ' | v ('P46_TABLELIST'). 'WHERE' | v ('P46_COLUMNLIST'). » ='|| v ('P46_COLVALUE');

    VSQL RETURN;
    end;

    Second

    You must perform the function in the SQL region

    RETURN your_function;

    And the last

    You have to check "Use generic name column (analyze the query when executing only)" radio and set the number of column for example 1.

    Edited by: AndyPol 2009-09-16 22:28

    Edited by: AndyPol 2009-09-16 22:29

    Edited by: AndyPol 2009-09-16 22:46

  • HP deskjet 6988: hp deskjet 8900 series report page?

    I am connected via WIFI to my PC and the router to my laptop computer and suddenly could not print again. After I reinstalled the a / m printer I want to print a report page to see if everything is ok.

    I'M LOOKING FOR A LINK TO DO?

    Thank you all for your help

    Hello

    You can find the steps to print a report of HP pagewithin Page 3 below:

    http://h10032.www1.HP.com/CTG/manual/c00591717.PDF

    Kind regards

    Shlomi

  • Reading high function has stopped working

    Two days ago 10 Windows installed some updates and restarted. Once this was done, I went to use the reading high function. Read aloud on fine but when I tried so he could read there was no noise. So I tried to read aloud a document I know he read it before and got a message saying IDS_WRONG_DOCUMENT_ERR. While trying to find a solution my computer made a updated so I let it reboot again. Once the updated and completed restart I tried to read aloud again. This time I don't have an error message but I have still no sound of in. I checked the settings in Acrobat Reader and my computers, but nothing has worked. I tried calling Microsoft Support, thinking that the problem was due to the 10 Windows Update, but the only response I got from them was it is a question of program Adobe Reader and communicate with Adobe. I am legally blind and desperately need to study...

    is anyone else having the same problem?

    Anyone has any ideas on how to fix it?

    Hi Blindchic,

    You can try to disable protected mode.

    Launch Adobe Reader, click the Edit menu and then click Preferences, under preferences, click on (enhanced) protection, uncheck enable protected at Startup Mode and click OK, close Adobe Reader and launch it again and check if you hear the sound.

    Could you please let me know if you are able to hear sounds from other applications like Windows Media Player?

  • Linking the chart to the report page

    Hello everyone,

    I have a pie chart that shows the items according to their category. For example: how many elements we have in Category1, Category2,... What I would like to make relates to the pie chart to the report page that displays items in this particular category. I have a report page that displays all the items, but I want when user clicks on the category of the card, he orders him to this particular category. Please notify.

    Thank you

    Hello

    Change your where clause to

    where)

    InStr (upper ('CATEGORY'), superior (nvl (: P18_CATEGORY, 'CATEGORY'))) > 0

    )

    Gus

  • I am trying to create dynamic landing pages that reflect the locations of my Google ads. How can I create a dynamic text on my landing page to specify the location in the title?

    I am trying to create dynamic landing pages that reflect the locations of my Google ads. How can I create a dynamic text on my landing page to specify the location in the title?

    Thanks a lot for your answer. I've sorted it now.

    Kind regards

    Gill

  • need to put a download in report page button and clicking on it, only few columns will download (only specified)

    Hello

    I need as I put a download in report page button and clicking it will download only few columns (only specified). I use Apex 4.2.

    Please give an idea.

    Thank you

    Chebli

    Action-> download-> when you click the CSV, it will send a request like "CSV". Change the columns that you want to include in the output csv file. Go to the Condition section,

    Condition type: request is NOT contained in the Expression 1

    Expression1: CSV

    This column will not include in the csv file.

    Thank you

    Lacombe

  • How to create a report page by using the Web layout editor

    Hi Experts,

    I use wcc11.1.1.7, I need to create the report page by using the Web layout editor, but in this applet (editor), there are only 3 types of link to the page: local page, external page, query, it must be of type of the active report (historical), why I can't see them? y at - it components should I activate this?

    Best regards

    It doesn't have to be in the link on the Page, but in the Page Type.

    See the documentation for http://docs.oracle.com/cd/E28280_01/doc.1111/e26694/e02_weblayout_edit.htm#i1068085 for more details.

  • Launch of Skillbuilders modal interactive report Page

    Hello
    Can someone tell me how to throw a modal Skillbuilders for interactive report Page?

    Thanks in advance,
    Johnny

    I do not see why it would be different for an IR on a classic report - have you tried to watch the webinar?
    skillbuilders.com/oracle-apex/Application-Express-APEX-Consulting-Training.cfm?tab=plug-ins

    He answered all my questions when I was first trying to use it.

  • static and dynamic reports

    Hello

    I'm new to HFR. Can someone tell me what is static and dynamic statement and when we go to static and when we go for dynamic with scenarios in real time?

    Thanks in advance

    Static report is usually fixed, so that the reports do not change when the time and hierarchies are updated. For example, a static report can be useful for regulatory deposits etc. You do not want to change statutory reports according to the when they were run ;-)

    Dynamic reports has several levels:

    -Dynamics updated due to changes in current month/quarter/year;

    -Dynamic reports that automatically updated based on changes made to the hierarchy: contour moves, new members, etc.

    In an ideal world, you have to build relationships are dynamic as possible, that you do not have what to have to change them every month, quarter, year, based on the changes of the period.
    Or do you need to update when managers change their minds about what needs to be told (less maintenance and future audit)

    Building reports are dynamic as possible has some limitations, however, in this by establishing the report, it would be not as fast to run (you may have several rows/columns more) to make the reports 'dynamic '.

    HOEP this helps, Iain

Maybe you are looking for