Create a report of performance... not so easy simple :-)

Hello
I m trying to create a performance report monthly with a very simple page layout:

  • CPU utilization for the last month
  • Use of memory for the past month
  • Use of the network for a month
  • Use (disk i/o) for the past month

I would like to generate this report each month and then sent it by mail to the owner of this technical environment.

This medium contains 10 servers that are distributed on our virtual infrastructure. How can I (Step by Step) create this report? I created a dashboard customized these 10 servers, but then I Don t understand how to create this report.

The best way would be to create a report with the above data model so that I could use is both environments.

Hello heather,
I don't know how you built your custom dashboard sense if the page requires a context to fill then you should be able to build a report out of your dashboard by selecting create report option on the general tab in the Actions pane and then choosing the option to create a report based on the current dashboard. However this option will be grayed out if your dashboard needs no background fill.
The other option is to create a Service with these 10 servers and create a customized report based on that service.
Concerning

Tags: Dell Tech

Similar Questions

  • Manually created the report runs is not on weblayout

    Hello

    I've created a report manually the 10g report, that the report runs on layout paper but when I try to run the report even using the button run on the Report Builder displays blank page any idea which must be defined with a manual report to run it on the web. I saved the report as JSP and rdf, but the two produced no out put.

    Hello

    The layout web (in other words, the web source) is mainly used for the format .jsp for more flexibility via the web for web developers using Oracle reports.

    Only reports created in Report Builder 9i or higher using the report wizard and choosing "Create Web Layout only" or "create of Web and paper Layout.
    contains a code Source base of 'Web' which is the source for the web page layout. In 9i reports, reports created manually: without using the
    Report Wizard - will also have a blank web page layout, unless you add your own code in the Source of "Web". Moreover, you will not have a web layout for all
    reports migrated from reports 6i like web layouts have been introduced only in reports 9i. What the report is not in an earlier version or version is not
    will be generated in the new version or version.

    You will need to add your own code to the 'Web Source"so that whatever it is, to display in the web page layout. In addition, changes made to the
    Print layout will cross to the Web layout by confirmation with the development. You can use the rw: include the tag in the Web Source (see Help)
    to get some of the print layout in your web page layout.

    Alternatively, you can still perform the following with reports Oracle 9i or higher and the RDF to view the layout of document on the web you have
    in the past with Oracle Reports 6i: http//webserver.domain:7779/reports/rwservlet?report=test.rdf&destype=cache&desformat=pdf&userid=scott/tiger@db

    I hope this helps.

    Kind regards
    Alex

    If someone useful or appropriate please mark accordingly.

  • Create a report based on different schema objects

    Hello

    I have a situation of reporting for my database performance.

    Let me explain my requirment.

    There are 2 diagrams in my database called X, Y

    X owns all of the performance of the related data. But read X objects access.

    Now in APEX, a developer that dev1 is mapped to the database schema I Y through WS1.

    I can't map DEV1 to database drawing X for security reasons.

    When I am creating a report as DEV1, it's allowing me to create based on schema objects belonged there.

    However it is not allowing me to create a report based on objects belonged to X, although there are CERTAIN privileges of the items of x.

    Can be a help in this?

    Concerning
    Barro

    Hello

    Choose your post on workshop SQL works?

    Are sure you grant select privilege to your application to the analysis of schema?

    BR, Jari

  • excellent report generation does not close Excel

    I use the excel Report Builder to save test reports.  I can create the report using a template and writing if necessary without any problem.  After each test step, I add data and save the report.  I continue to Excel closed using the modification of the parameter of the State of the window.  I don't want the user to see Excel or even know it is there.

    The question is, when I'm done test and use features, report vi, it leaves an open excel instance that you see in the Task Manager.  And the only way to close that instance is to open one of the files that was created and close it and then exit excel.  The memory used by this instance develops a little every time that a new file is created.

    LabVIEW 2011 SP1 (32-bit 11.0.1.F2)

    Excel 2007

    How can I close excel completely after each test?

    You're just sorry.  Attached is an improved version which works, but again not sure if there is a better way.

    This will get the HWND before disposing of it, has it as usual, then given the HWND get PID (it was the bad terminal last time) and then kill based on that.  It seems to work and I tested this time.

  • Creating classic report to the stored procedure.

    How can we create a report based on a stored procedure out parameter.

    Can someone please help.

    Thank you

    Nani.

    Nani4850 wrote:

    Out parameter is a multi-level object type.

    I found a way to sort of basis a report on the parameter OUT procedure. The approach is:

    1. call the procedure in a process before PL/SQL areas, convert the object returned in an XML document and store in a collection XMLType column:

    declare
    
      k_rate_query varchar2(255) := 'RATE_QUERY';
    
      l_rate_type_code  number;
      l_rate_query      rate_rec;
      l_xml             xmltype;
    
      l_seq_id number;
    
    begin
    
      l_rate_type_code := to_number(:p1_rate_type_code);
      api_pkg.rate_query(l_rate_type_code, l_rate_query);
      l_xml := xmltype.createXML(l_rate_query);
    
      if not apex_collection.collection_exists(k_rate_query)
      then
        apex_collection.create_collection(k_rate_query);
      end if;
    
      select
          seq_id
      into
          l_seq_id
      from
          apex_collections
      where
          collection_name = k_rate_query
      and n001 = l_rate_type_code;
    
      apex_collection.update_member_attribute(k_rate_query, l_seq_id, 1, l_xml);
    
    exception
    
      when no_data_found
      then
        apex_collection.add_member(
            p_collection_name => k_rate_query
          , p_n001 => l_rate_type_code
          , p_xmltype001 => l_xml);
    
    end;
    

    2. use a SQL/XML query on the XML collection in the region report source:

    select
        rq.*
    from
        apex_collections ac
      , xmltable(
            '/RATE_REC/RATE_TBL/RATE_REC_TYPE'
            passing ac.xmltype001
            columns
                action_code         varchar2(20)  path 'ACTION_CODE'
              , rate_key            number        path 'RATE_KEY'
              , rate_type_code      varchar2(5)   path 'RATE_TYPE_CODE'
              , program_key         varchar2(12)  path 'PROGRAM_KEY'
              , rate                number(8,5)   path 'RATE'
              , effective_date      date          path 'EFFECTIVE_DATE'
              , current_yn          varchar2(1)   path 'CURRENT_YN'
              , non_current_dt      date          path 'NON_CURRENT_DT'
              , non_current_by_id   varchar2(4)   path 'NON_CURRENT_BY_ID'
              , non_current_reason  varchar2(400) path 'NON_CURRENT_REASON') rq
    where
        ac.collection_name = 'RATE_QUERY'
    and ac.n001 = to_number(:p1_rate_type_code)
    
  • Create the report with the structure in obiee 11g?

    Hello

    I want to create report without data, it has the structure. the data in this report, add in the future.

    I want to show the lines of value null & coulmns in the report.

    For example, I created the table name as cs_ue_lf table.

    structure as follows. I did not insert a line any.

    err11.jpg

    I have check the table. There is no data

    err12.jpg

    I created RPD and added to the em.

    I chose the field as uncleared effects

    Drag the columns of criteria.

    err13.jpg

    In the results, I didn't not even structrue in report.

    I get the error message as 'specified criteria result no data'.

    err14.jpg

    My project requirement is

    create a report without data. only one structure (coulmns). Report have only column names. data inserts in the future.

    Please help me.

    To do this, I put properties column as "include null values.

    I tried. But I did not. Is this possible?


    Please help me,

    Thanks in advance,

    A.Kavya.

    What:

    insert into cs_ue_lf values ('foo',0,0,0,0,0)
    

    Or even a kind of Cartesian join in the RPD against a table to produce a lot of dummy data

    I wonder: why do you need this?

  • ORA-20987: APEX - interactive report region does not exist in the application

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query (nPage_id number)

    return varchar2

    as

    l_report apex_ir.t_report;

    l_query varchar2 (32767).

    l_list varchar2 (32767).

    number of nRegion_id;

    number of nIR_id;

    OWA.vc_arr nm;

    VL owa.vc_arr;

    BEGIN

    SELECT region_id

    IN nRegion_id

    Of apex_application_page_regions

    WHERE application_name = "E-BRIL.

    AND page_id = nPage_id

    AND source_type = "interactive report";

    nIR_id: =.

    apex_ir.get_last_viewed_report_id (p_page_id = > nPage_id,)

    p_region_id = > nRegion_id);

    NM (1): = "DUMMY_JUST_TO_SET_UP_OWA_UTIL";

    VL (1): = 'WHATEVER ';

    OWA.init_cgi_env (nm.count, nm, vl);

    l_report: = APEX_IR. () GET_REPORT

    p_page_id = > nPage_id,

    p_region_id = > nRegion_id,

    p_report_id = > 0);

    l_query: = l_report.sql_query;

    because me in 1.l_report.binds.count

    loop

    l_list: = l_list | i||'. '|| l_report. Binds (i) .name | » ='|| l_report. Binds (i) .value;

    end loop;

    Return l_query;

    end;

    /

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    Thanks in advance.

    Reg,

    Chris

    1717220 wrote:

    Please update your forum profile with a recognizable username instead of "1717220": Video tutorial how to change username available

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query(nPage_id IN number)
    return varchar2
    as
    l_report  apex_ir.t_report;
    l_query  varchar2(32767);
    l_list  varchar2(32767);
    nRegion_id number;
    nIR_id number;
    nm  owa.vc_arr;
    vl  owa.vc_arr;
    BEGIN 
    
        SELECT region_id
        INTO nRegion_id
        FROM apex_application_page_regions
        WHERE application_name = 'E-BRIL'
          AND page_id = nPage_id
          AND source_type = 'Interactive Report';
    
        nIR_id :=
          apex_ir.get_last_viewed_report_id (p_page_id        => nPage_id,
                                            p_region_id      => nRegion_id);
    
        nm(1) := 'DUMMY_JUST_TO_SET_UP_OWA_UTIL';
        vl(1) := 'WHATEVER';
        owa.init_cgi_env( nm.count, nm, vl );
    
        l_report := APEX_IR.GET_REPORT (
                        p_page_id  => nPage_id,
                        p_region_id => nRegion_id,
                        p_report_id => 0); 
    
        l_query := l_report.sql_query;
        for i in 1..l_report.binds.count
        loop
            l_list := l_list||i||'. '||l_report.binds(i).name||'='||l_report.binds(i).value;
        end loop;
    
    return l_query;
    end;
    

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    The '0' in line 31 should be "nIR_id".

    What is the purpose of the lines 24-26?

  • Create a report based on the Emails in folders

    Our emails are stored in specific folders depending on which group is the application or through electronic mail.  I have a group that wants to e-mail, daily/weekly reports for all their emails, but I don't have the bandwidth to collect and provide the information manually.  I am creating a report, will include e-mails from "their case" in E10, but I do not think that this is possible.  Anyone know or have a method they use?

    I have daily and weekly reports that are generated with these data for all emails that we send, but I don't want to share these reports because it's WAY too much information.

    Thanks for the help!

    Drewann

    Big question, drewannp... Unfortunately, file-based reporting is not available. Exist records for purposes of organization; If you have your emails carefully sorted in E-mail groups, you can run reports on this... but nothing for file-based. Sorry!

  • Cannot create the OpenStack deployment. Not enough memory

    Target management and to calculate the bunches have free 2 TB, but I can't get VIO 2.5 to deploy. In the Wizard error message is "unable to create the OpenStack deployment. Not enough storage for (VIO-DB-0). At least 552 GB of storage is necessary to place all nodes... ». In my case, the two groups already have VM is deployed and release notes indicate that available resources may not be reported correctly.  Any thoughts? Thank you, dude64

    I have 8 processors per ESXi host. I found it was getting hung up on the shared storage that is available within the cluster 3 node. Installation seems to use local storage only for DB nodes and prefers a shared storage exists for all other nodes in my setup. My storage shared initially was lower than the GB 552 required deployment of VIO was looking for. Once I replaced the shared storage with 1 TB of storage shared and removed the old shared storage devices, it finally proceeds to install. I grep had vio newspapers who were not really useful to determine the cause, which would have been nice to receive an error message more accurate and better yet better docs all about know her requirements, i.e. local and shared storage. It would also be nice to see a doc on logging and the ansible playbook info. I'll mark this as answered.

    Thank you, dude64

  • No green symbol to create a report customized in vROps 6

    Hello

    I have recently installed vrops 6 and I need to create customized reports, but I don't see any green symbol to create... that the delete symbol, the symbol of model execution, and stocks symbol with the possibility to export the model.

    I see in the official documentation of the green symbol: vrealize-operations-manager-60-cust-admin-guide.pdf

    Procedure

    1 in the left pane of vRealize Operations Manager, click on the content icon, click reports.

    2 in the report model tab, click the plus sign to create a template.

    and in these videos:

    Create reports with vRealize Operations Manager - YouTube

    vRealize Operations Manager 6.0 Documentation Center

    You see it on your vrops? I missed something?

    That's what I see:

    and these are actual permissions:

    Another thing that comes to mind a license->, check if the creation of custom reports are included in your license.
    I * think * the option is not available for standard

  • Create a report of material based on the category tag?

    Hey guys!

    I am creating a report on the hardware of all virtual machines with a certain category of tag.  The most important things I need are really CPU, memory and disk size.  I modified a report I found that the inventory of all virtual machines in a data center and return this information.  I'm not sure what I missed at the top when trying to convert to return information to the material in the category 'SAMPLE '.  Is there someone who can take a look at this and point me in the right direction?

    Thank you!

    $VmInfo = ForEach ($VM in (Get-TagAssignment-category 'SAMPLE' |)) Sort - Object - property name)) {}

    "" | Select-Object - property @{N = "VM"; E = {$VM. Name}},

    @{N = "VM CPU #";} E = {$vm. ExtensionData.Config.Hardware.NumCPU/$vm. ExtensionData.Config.Hardware.NumCoresPerSocket}},

    @{N = "" VM CPU Core # ";"} E = {$vm. NumCPU}},

    @{N = 'Host'; E = {$vm. VMHost.Name}},

    @{N = 'Hard drive'; E = {$harddisk. Name}},

    @{N = "Datastore"; E = {$harddisk. FileName.Split("]") [0]. TrimStart("[")}},

    @{N = "VMDKpath"; E = {$harddisk. FileName}},

    @{N = 'VMDK size'; E = {($vm.extensiondata.layoutex.file|?)} ({$_ .name - contains $harddisk.filename.replace(".","-flat.")}). size/1 GB}},

    @{N = "size walk"; E = {$harddisk. CapacityGB}}

    }

    $VmInfo | Export-Csv - NoTypeInformation - UseCulture-Path "c:\scripts\reports\report.csv".

    Try like this

    $tagCat = get-TagCategory-name "SAMPLE".

    $tags = get-Tag-category $tagCat

    $VmInfo = ForEach ($VM in (Get-VM-Tag $tags |)) Sort - Object - property name)) {}

    foreach ($Harddisk in Get-disk hard - VM $VM) {}

    "" | Select-Object - property @{N = "VM"; E = {$VM. Name}},

    @{N = "VM CPU #";} E = {$vm. ExtensionData.Config.Hardware.NumCPU/$vm. ExtensionData.Config.Hardware.NumCoresPerSocket}},

    @{N = "" VM CPU Core # ";"} E = {$vm. NumCPU}},

    @{N = 'Host'; E = {$vm. VMHost.Name}},

    @{N = 'Hard drive'; E = {$harddisk. Name}},

    @{N = "Datastore"; E = {$harddisk. FileName.Split("]") [0]. TrimStart("[")}},

    @{N = "VMDKpath"; E = {$harddisk. FileName}},

    @{N = 'VMDK size'; E = {($vm.extensiondata.layoutex.file|?)} ({$_ .name - contains $harddisk.filename.replace(".","-flat.")}). size/1 GB}},

    @{N = "size walk"; E = {$harddisk. CapacityGB}}

    }

    }

    $VmInfo | Export-Csv - NoTypeInformation - UseCulture-Path "c:\scripts\reports\report.csv".

  • How to create a report based on the item selected from the list of selection?

    Hello

    I created a tables_LOV based on:

    Select table_name table_name user_tab_cols r, d

    where column_name like '% _type % '.

    Then I created a ListOfTables page element, display in a selection list and pointing to tables_LOV.

    I run the page, and I can choose the table I want in the drop-down list.

    How to create a report based on the selected element? (ex: select * from selected_table)

    Thanks in advance

    Salah

    Hi Salah,

    Allright, take a look at this page: http://apex.oracle.com/pls/apex/f?p=vincentdeelen:collection_report

    I think that simulates what you are trying to accomplish. I've implemented the simplest method I could think of.

    The report is based on a collection of apex. If you are not familiar with this, you should study the documentation: APEX_COLLECTION

    To recreate my example, you should:

    (1) create a report (interactive) on your collection

    SELECT *
       FROM APEX_collections
     WHERE collection_name = 'MY_COLLECTION'
    

    (2) create a selection list page_item for the tables that you want to display (in my case, this is called "P38_TABLES")

    (3) create a dynamic action that triggers on the evolution of your selection list page_item. Dynamic action must be a parade of PL/SQL procedure the following code:

    declare
      l_query varchar2(4000);
    begin
      l_query := 'select * from '||:P38_TABLES;
      if apex_collection.collection_exists
            ( p_collection_name => 'MY_COLLECTION' )
      then
        apex_collection.delete_collection
          ( p_collection_name => 'MY_COLLECTION' );
      end if;
    
      apex_collection.create_collection_from_query
        ( p_collection_name => 'MY_COLLECTION'
        , p_query           => l_query
        );
    end;
    

    Make sure that you add your page_item 'Page to send items' section.

    (4) add a real extra action that makes an update of the report area.

    Here are two photos describing the da:

    http://www.vincentdeelen.com/images/OTN/OTN_COLLECTION_REPORT_DA1.PNG

    http://www.vincentdeelen.com/images/OTN/OTN_COLLECTION_REPORT_DA2.PNG

    Good luck and greetings,

    Vincent

    http://vincentdeelen.blogspot.com

  • Essential support for creating custom reports on "Openmanage" using "Essentials" command line Interface

    Good afternoon

    Please can you help to create custom reports in "Essential Openmanage" using "Essentials" command line Interface

    The default reports are not feasible.

    Hi there Oswaldo and thank you for the question.

    Currently, OME 1.3 doesn't have a custom report generator.  I don't think that the CLI help as it is mainly used to set up from the beaches of discovery and things like that.

    There is a REST API that _may_ allow to return by the data of the database of the MEO program.  The REST API guide is in the section of the Documentation on the Dell TechCenter for OME page.

    www.delltechcenter.com/ome.

    Thank you

    Rob

  • How to create a report (timesheet) with columns as the row values?

    Hello

    I created a table in APEX 4.2.2.00.11...

    CREATE TABLE "TRIAL_3_DETAILS"
      ( "CONSULTANT" VARCHAR2(20),
    "CLIENT" VARCHAR2(10),
    "PROJECT" VARCHAR2(20),
    "BILLABLE" VARCHAR2(10),
    "TASK" VARCHAR2(50),
    "DATE_" DATE,
    "EFFORT" NUMBER
      )
    /

     

    now, I want to create a report "Time Sheets" where the date values are columns in the weekly timesheet with other columns like customer name, project name, etc...

    also, I want the value of the estimated effort to the title of the column date of...

    Task

    Customer

    Project

    Bill (Y/N)

    < date >

    < date >

    < date >

    < date >

    < date >

    < date >

    < date >

    Hours

    < Job description >

    < empty >

    < project >

    < empty >

    < Estimated effort >

    < Estimated effort >

    < Job description >

    < empty >

    < project >

    < empty >

    < Estimated effort >.

    < Estimated effort >

    < Job description >

    < empty >

    < project >

    < empty >

    < Estimated effort >

    < Estimated effort >

    < Job description >

    < empty >

    < project >

    < empty >

    < Estimated effort >

    < Estimated effort >

    < Job description >

    < empty >

    < project >

    < empty >

    < Estimated effort >

    < Estimated effort >

    Is it possible to create this type of report?

    Syed

    MikeKutz wrote:

    Use TO_CHAR() to 'calculate' the day of the week.  Then, use this value.

    1. WITH e
    2. (
    3. SELECT consultant, client, project
    4. the task, effort
    5. TO_CHAR(date_,'Day') day_of_week
    6. billable
    7. OF trial_3_details
    8. -WHERE date_ between ____ and ____
    9. )
    10. SELECT *.
    11. E
    12. PIVOT (sum (effort)
    13. FOR that day_of_week IN ('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday')
    14. )

    Note that you actually need to use 'fmDay' as the mask of format of date with this approach. Using of 'Day' will result in all the day_of_week values be padded with blanks to the length of the longest value (Wednesday), then this will be the only match value in the pivot:

    SQL> with t as (
      2    select
      3        to_char(trunc(sysdate) + (level - 1), 'Day') d
      4      , round(dbms_random.value(0, 100), 2) z
      5    from
      6        dual
      7          connect by level <= 10)
      8  select
      9      *
    10  from
    11      t
    12  pivot (
    13      sum(z)
    14      for d in ('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'));
    
      'Monday'  'Tuesday' 'Wednesday' 'Thursday'  'Friday' 'Saturday'  'Sunday'
    ---------- ---------- ----------- ---------- ---------- ---------- ----------
                                83.23
    

    Using "fmDay" avoids filling and the pivot works according to the needs:

    SQL> with t as (
      2    select
      3        to_char(trunc(sysdate) + (level - 1), 'fmDay') d
      4      , round(dbms_random.value(0, 100), 2) z
      5    from
      6        dual
      7          connect by level <= 10)
      8  select
      9      *
    10  from
    11      t
    12  pivot (
    13      sum(z)
    14      for d in ('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'));
    
      'Monday'  'Tuesday' 'Wednesday' 'Thursday'  'Friday' 'Saturday'  'Sunday'
    ---------- ---------- ----------- ---------- ---------- ---------- ----------
        60.16    125.09      44.17      77.5      3.63      82.89      26.22
    
  • Creating a report in OBIEE 11 g

    Hello master,

    I need to create a dashboard report
    so, I added the page for this, but where can I found topics in OBIEE 11 g so that I can create a report on this page based on the subject area.

    Thanks in advance.

    Kind regards
    Goud S.

    For the creation of new reports.

    1. got to-> New-> analysis you'll have your presentation Tables under Select topic area
    Click on your domain-> you will get the list of tables in the area in question
    2 expand the folders, and then click the required column.
    3. click on the results tab - > you will get the title and the Table View
    4 format your Table and title
    5. save your new report in the shared folders (you can create your own folder under the Shared folder)

    View reports on the dashboard.

    1 Got to-> New-> dashboard-> you'll get new window Dashboard
    Name - the name of your dashboard
    Select location - / sharing of files/Standard dashboard.
    Click Ok-> you will get the blank window dashboard.
    2. change the dashboard-> drag and drop your saved from Shard folder under catalog reports
    3. click on the Save button (top right) and save your dashboard-> click Run [Green right arrow (top right)].
    4. now, you will have your report in your dashboard page.
    Rename the dashboard Page

    Change the dashboard - > click Properties Nedt to the X symbol-> dashboard properties
    -> You-> the Dashboard Properties window select the dashboard Page-> rename

    Guests:

    1 Got to-> New-> dashboard-> you prompt will have your presentation Tables under Select topic area
    Click on your domain-> you will get the dialog window Untitle
    -> Symbol-> column + click Guest-> you will get the list of tables
    2 expand the folders, and then click the required columns in the list (the columns should be table of your report).
    3. record your guest again in the shared folders.

    Note: Quick columns must be Promptd is in your filters to reports.

    Mark as correct if it is useful.

    Thank you

Maybe you are looking for

  • Power Mac G5

    My PowerMac G5 hangs on me... starts to show the horizontal lines and graphics have been "bleeding" that is, when you move a title bar, it will leave a trace... now it crashes intermittently? any help?

  • Tecra R10 - problem unusual TFT screen

    My Tecra has developed a problem where a column of pixels seem to shimmer. Pressing the bevel directly under the affected screen area solves the problem but temporarily. Looks like something is loose - but what? Some things I noticed/tried: -Occurs i

  • In my view, the shortcut keys are enabled on my laptop.

    If I try other things, type something.  For example, if I press the 'l' key, my computer off & I sign again.  If I hit the "s" key, a box will open; If I try to type "who" I am only able to type 'w' & then nothing happens.  I press certain keys & oth

  • Film Windows maker-impossible to edit clip

    Director of Windows (edit a clip) I try to use windows movie maker... but there is a clip that I can't change.  Whenever this clip comes up it shows the name of the person in the photo and I do not know how to take off... need quick help thank you

  • All blackBerry Smartphones alerts

    Accidentally chose the option "all alerts Off.  Please, how can I get my return alerts? ! ?