create a report with other reports

Hello

Foglight 5.6.4 can we create a new report that includes some other reports:

newreport = Report1 + I2 + report3

?

If yes how?

In the properties of the Report1, Report2 and report3, make sure that you have 'Share this report and allow it to be included in other reports' enabled.

Once this switch is activated, you can incorporate these reports in other reports.

Kind regards

Brian Wheeldon

Tags: Dell Tech

Similar Questions

  • With the help of tags created in bridge with other software

    If I invest 36 hours my picture of marking using Bridge CS4, will be these tags into metadata at all times?

    I wonder if another user or myself will be able to use tags using other popular as software:

    Photoshop Elements

    Picasa

    Windows Live Photo Gallery

    Suite from Microsoft digital image

    SnagIt

    Nikon Capture

    Paint Shop

    Director of photography

    Aperture 3

    Photomatix

    PhotoImpact

    Thanks in advance for your input and your expertise.

    SnagIt 11.1 does not support playback of the metadata.

    Windows Live Photo Gallery is supported metadata {tags including} (sides are has any application graphics microsoft windows 7 will work - my opinion)

  • 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
    
  • Procedure with THE parameters - creating a report

    I have the following procedure which is used in our applications (non-APEX) internal:
    PROCEDURE SelIssueActivityPublic (
                                                p_results           OUT     SYS_REFCURSOR,
                                                p_IssueID                    IN     ems.issue.issue_id%TYPE,
                                                p_TransactionID         OUT VARCHAR2
                 ) 
    The body of the procedure made a lot of treatment and inserts data into an intermediate table. The cursor ON the parameter then returns a SELECT statement in the staging table. Since it is possible that this procedure be struck several times (several users), transaction ID is used to match the data in the staging table to demand appropriate. The procedure then deletes the data from the staging table. (I'll post if necessary, but it is quite long, and since it is used successfully in other applications, I don't think it relates to my question).

    Asked me to create a report of the APEX data generated by the procedure. I've never used a procedure with an OUT parameter to create a report. I was hoping to assign transaction ID to a variable hidden on the loading of the page and then use it to poplulate the report. I'm not interested in the OUT parameter slider, I wrote my own SELECT statement to retrieve the data from the staging table.

    I tried to create a page that did that - agenda: H_P19_TRANSID, before the header calculation = EMS. EMS_READER. SelIssueActivityPublic (: H_P19_CURSOR, 454551,: H_P19_TRANSID) [454551 is a test question id], but I get the following error:
    ORA-06550: line 1, column 43: PLS-00222: no function with name 'SELISSUEACTIVITYPUBLIC' exists in this scope ORA-06550: line 1, column 7: PL/SQL: Statement ignored flowComp=H_P19_TRANSID
     Error ERR-1030 Error executing computation expression.
    He seems to think that SelIssueActivityPublic is a function, and I don't know why.

    Basically, I need to know how to use this procedure to put up my report. Once I can enter the transaction ID in a page element, I'll be set.

    How your procedure? You know that you can have the same procedure in the package with several definitions. Oracle allows you to use polymorphism, the ability to have multiple definitions of the same object with different signatures.

    Correction... You can not have a procedure of p in the case, are a function, since the calculation is expected to a way to fill the hidden element... You need a function to return the type of variable you want in the hidden element...

    Thank you

    Tony Miller
    Webster, TX

    Published by: Tony Miller on March 16, 2010 12:34

  • Problem when creating a report with a date of schduled

    When I tried to create a report with a schedule (any option except now) I get the error 'Date of the first report occur must be after or equal to the current date", unless I have use a date of 01-10-2012 or later in the first report occurs on the field.  Current date is 2012-08-23.

    Let me know if you can recreate it and if or when there is a fix.

    Hi Tim,.

    We have fixed the problem now. Could you please check that you are able to schedule a report now with start date of today?

    Thank you

    The OnPlus team

  • How to create editable report manually even as a default with on report send the page


    Hello

    Is it possible to create the report updatable manully would even editable report by default.

    I created 4 report can be updated in a single page, but submits the entire page when adding empty lines.

    I need to add additional blank lines using dynamic measurements or any otherwise with the page request.

    Thank you

    RJ

    Thank you Lakshmi,

    His work!

  • 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?

  • 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

  • How to create the report using the procedure.

    Hi all

    I want to create the report in the apex. But I don't have a sql code. I have a single procedure. Is it possible to create the report using this procedure in the apex.

    CREATE OR REPLACE PROCEDURE headcsv_prc2

    AS

    CURSOR cr_header

    IS

    SELECT ood.organization_code, fm.formula_no AS "FORMULA_NAME."

    FM.formula_vers AS "FORMULA_VERSION."

    FM.formula_desc1 AS "FORMULA_DESC."

    DECODE (fm.formula_status,

    100, 'new ',.

    400, "approved for use in the laboratory."

    700, "allow the general."

    800, "We Hold."

    900, "frozen."

    1000, "obsolete/archived.

    ) AS "FORMULA_STATUS."

    DECODE (fd.line_type, '1', msib.segment1).

    DECODE (fd.line_type, '-1', msib.segment1 ') ingrediant.

    DECODE (fd.line_type, '2', msib.segment1) AS "BY_PRODUCT."

    DECODE (by_product_type,

    "W', 'waste."

    "R',"rework. "

    "Y', 'Yield."

    The of ', 'Sample. "

    NULL VALUE

    ) AS "BY_PRODUCT_TYPE".

    Of org_organization_definitions ood,.

    fm_form_mst fm,

    fm_matl_dtl fd,

    mtl_system_items_b msib

    WHERE ood.organization_id = fm.owner_organization_id

    AND fm.owner_organization_id = msib.organization_id

    AND msib.organization_id = fd.organization_id

    AND fd.organization_id = ood.organization_id

    AND fm.formula_id = fd.formula_id

    AND msib.inventory_item_id = fd.inventory_item_id

    - and fm. FORMULA_NO like '% THE % '.

    AND fd.line_type IN ('1 ', ' 2', '-1' ")

    Ood.organization_code GROUP,

    FM.formula_no,

    FM.formula_vers,

    FM.formula_desc1,

    FM.formula_status,

    FD.line_type,

    MSIB. Segment1,

    by_product_type

    ORDER BY fm.formula_no, fm.formula_vers;

    BEGIN

    Dbms_output.put_line (INITCAP ('the ORGANIZATION CODE')

    || ','

    || INITCAP ('NAME FORMULA')

    || ','

    || INITCAP ('FORMULA VERSION')

    || ','

    || INITCAP ('FORMULA DESC')

    || ','

    || INITCAP ('FORMULA STATUS')

    || ','

    || INITCAP ('PRODUCT')

    || ','

    || INITCAP ('INGREDIANT")

    || ','

    || INITCAP ("PER PRODUCT")

    || ','

    || INITCAP ('PER TYPE OF PRODUCT")

    );

    FOR ch IN cr_header

    LOOP

    Dbms_output.put_line (ch.organization_code

    || ','

    || ch.formula_name

    || ','

    || ch.formula_version

    || ','

    || '"'

    || ch.formula_desc

    || '"'

    || ','

    || ch.formula_status

    || ','

    || ch. Product

    || ','

    || ch.ingrediant

    || ','

    || ch.by_product

    || ','

    || ch.by_product_type

    );

    END LOOP;

    EXCEPTION

    WHILE OTHERS

    THEN

    Dbms_output.put_line (' No error: ' |) SQLCODE. "Error Msg: ' '.

    || SQLERRM

    );

    END;

    EXEC HeadCSV_Prc2



    Thank you

    Rambeau

    Hi Christian,

    In addition to the fact that the Oracle database has an internal Java engine and it would be possible for Apex call a Java stored procedure, the Apex really has nothing to do with Java. To create a report, you discovered, you specify a SQL query. In certain circumstances, you can embed a query in a PL/SQL function, but the incorporation of an arbitrary Java application and waiting for it to be called from Apex for a kind of security is there with the fairies.

    I recommend you research the Apex and then enter your so-called "higher authorities" how things work.

    Concerning

    André

  • 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.

  • How to create new report in 11g Server?

    Hello experts,
    I use fusion middleware 11g. I know in 10g
    start the re [server ports such as:]
    rwserver Server = repsrv1 start

    same thing I want to do in 11g.

    as I started the weblogic server-wls_reports and wls_forms

    I'm calling the report with the following code:

    {code}
    DECLARE
    pl_id PARAMLIST;
    Temp VARCHAR2 (7);
    config_path varchar2 (100);
    IP varchar2 (20);
    RepID report_object;
    store_var varchar2 (150): ='z:\NEWTON\FAC\REPORTS\RFAC009. RDF ';
    vc_reportserverjob varchar2 (100);
    v_rep_status varchar2 (100);
    report_job_id varchar2 (100);

    BEGIN
    Select trim (ip_addr) in the bms_ip_m investigation period;
    IF: block_m.fromdate IS NOT NULL
    AND:Block_M.ToDate IS NOT NULL
    THEN

    Rep: = find_report_object ('RP2RRO');
    set_report_object_property (RepID, report_filename, store_var);
    set_report_object_property (RepID, report_server, 'REPSRV1');
    set_report_object_property (RepID, report_execution_mode, LENGTH);
    set_report_object_property (RepID, report_comm_mode, SYNCHRONOUS);
    set_report_object_property (RepID, report_destype, cache);
    set_report_object_property (RepID, report_desformat, 'pdf');
    --------------------------------parameter code---------------------------------------------------------------------
    pl_id: = Get_Parameter_List ('tmpdata');
    IF this is Id_Null (pl_id)
    THEN
    Destroy_Parameter_List (pl_id);
    END IF;
    pl_id: = Create_Parameter_List ('tmpdata');
    Add_Parameter (pl_id, 'PARAMFORM', TEXT_PARAMETER, "NO");
    Add_Parameter (pl_id, "model", TEXT_PARAMETER,: global.company_name);
    Add_Parameter (pl_id, 'LOCN_CODE', TEXT_PARAMETER,: global.company_gl_locn);
    Add_Parameter (pl_id, 'FROM_DATE', TEXT_PARAMETER,: block_m.fromdate);
    Add_Parameter (pl_id, 'TO_DATE', TEXT_PARAMETER,: block_m.todate);
    --------------------------------------------------------------------------------------------------------------

    vc_reportserverjob: = RUN_REPORT_OBJECT (repid, pl_id);
    report_job_id:=substr(vc_reportserverjob,length(:global.r_server)+2,length(vc_reportserverjob));
    v_rep_status: = report_object_status (vc_reportserverjob);
    If v_rep_status then 'DONE' =
    Web.show_document ("http: / /'|: global .host |': ' |: global .port |' / Reports/rwservlet/getjobid ' |")
    report_job_id |'? Server ='|: global .r_server, '_blank');
    on the other
    message ("error when running report" | v_rep_status);
    end if;
    end if;
    end;
    error is: unable to find the report server REPSRV1.
    
    i am new to 11g. 
    
    please help me how to start report server and if i want to create the new report server with name REPSRV1 then how to create it.
    
    thanks
    yash                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

    At first, component report in 11g is the same in 10g, so if your code worked in 10g then it will work on 11g.

    But I think without having to create report server as what you were doing, Oracle fusion middleware already creating for report you the server and you can use it.

    You can find the name of the report server in the following path:
    'C:\Oracle\Middleware\asinst_1\config\ReportsServerComponent\ '.
    In this way, you will find the file, which is the report server, you can use this one, named something like this "RptSvr_yourcomputername_asinst".

    I hope this will help you.

    Kind regards
    Ahmad karajh

  • How to create a report of vm-info of several scripts?

    Hello

    I combined several scripts for the following and it ceates 4 correct outputfiles.

    But it is possible to create a 1fichierdesortie with all the lines?

    Thank you, Robert

    1. Initialization section *.

    ##################################

    1. Declaring global and static variables

    2. VMware VirtualCenter server name

    $vcserver = 'coat '.

    1. Path to the output file

    $outputfile1="D:\Output_scripts\VMware\VMinfo_part1.csv".

    $outputfile2="D:\Output_scripts\VMware\VMinfo_part2.csv".

    $outputfile3="D:\Output_scripts\VMware\VMinfo_part3.csv".

    $outputfile4="D:\Output_scripts\VMware\VMinfo_part4.csv".

    $outputfile_total="D:\Output_scripts\VMware\VMinfo_Total.csv".

    #################

    1. Add VI-toolkit

    #################

    Add-PSsnapin VMware.VimAutomation.Core

    Initialize - VIToolkitEnvironment.ps1

    to connect-VIServer $vcserver

    1. *************   Start Process 1   *********************************************

    $report1 = @)

    Get - VM | % {

    $vm = $_ | Get-VMGuest

    $row = "" | Select VMname VMTools, IPAddr1, IPAddr2, IPAddr3, OsFullName, host name

    $row. VMname = $_. Name

    $row. VMTools = $vm. State

    $row. Host name = $vm. Host name

    $row. IPAddr1 = $vm. IPAddress [0]

    $row. IPAddr2 = $vm. IPAddress [1]

    $row. IPAddr3 = $vm. IPAddress [3]

    $row. OsFullName = $vm.osfullname

    $report1 += $row

    }

    $report1 | Sort - property VMname | Export-Csv $outputfile1 - NoTypeInformation

    1. *************   Start Process 2   *********************************************

    $Report2 = @)

    Get - vm | % {

    $vm = get-view $_.ID

    $row = "" | Select-Object VMname, VMState, TotalNics, TotalCPU "TotalMemory Mb.

    $row. VMname = $vm. Name

    $row. VMState = $vm.summary.runtime.powerState

    $row. TotalNics = $vm.summary.config.numEthernetCards

    $row. TotalCPU = $vm.summary.config.numcpu

    $row. {TotalMemory MB} = $vm.summary.config.memorysizemb

    $report2 += $row

    }

    $report2 | Sort - property VMname | Export-Csv $outputfile2 - NoTypeInformation

    1. *************   Start Process 3  *********************************************

    $report3 = @)

    Get - vm | % {

    $vm = $_

    $disksize = (($_ | get-harddisk | mesure-objet-propriété CapacityKB-somme).) Sum) / 1 Mb

    $_ | Get-Datastore. Where-Object {$_.} Type - eq "VMFS"} | % {

    $row = "" | Select "Disc Total GB" data store, Aantaldisks, VMname

    $row. VMname = $vm. Name

    $row. Aantaldisks = $vm. Harddisks.Length

    $row. Data store = $_. Name

    $row. {Total GB drive} = $disksize

    $report3 += $row

    }

    }

    $report3 | Sort - property VMname | Export-Csv $outputfile3 - noTypeInformation

    1. *************   Start Process 4  *********************************************

    $ROTAP = @{name = "ROTAP"; Expression = {$_.} CustomFields.Item ("ROTAP")}}

    $User = @{name = 'User'; Expression = {$_.} CustomFields.Item ("User")}}

    $Description = @{name = 'Description'; Expression = {$_.} CustomFields.Item ("Description")}}

    Get - VM | Select-Object - property 'name', $ROTAP, $User $Description | Sort - Name property. Export-Csv $outputfile4 - noTypeInformation

    1. *************   End Process   ***********************************************

    Disconnect-VIServer-confirm: $false

    Run the Export - Csv cmdlets 4 each write a specific table in the CSV file.

    Each group has different properties or columns if you want to make the analogy with the CSV file.

    Because you can't have a CSV file with different columns that will not be possible as far as I know.

    An alternative could be that you collect all the information in a line that has all the properties.

    This way you go you end up with 1 table that you can export to CSV file 1.

    Here's how it could be done for the first 2 CSV files

    Get-VM | % {
         $vmGuest = $_ | Get-VMGuest
         $vm = Get-View $_.ID
    
         $row = "" | Select VMname, VMTools, IPAddr1, IPAddr2, IPAddr3, OsFullName, Hostname,
                            VMState, TotalNics, TotalCPU, "TotalMemory Mb"
         $row.VMname = $_.Name
         $row.VMTools = $vmGuest.State
         $row.Hostname = $vmGuest.Hostname
         $row.IPAddr1 = $vmGuest.IPAddress[0]
         $row.IPAddr2 = $vmGuest.IPAddress[1]
         $row.IPAddr3 = $vmGuest.IPAddress[3]
         $row.OsFullName = $vmGuest.osfullname
    
         $row.VMState = $vm.summary.runtime.powerState
         $row.TotalNics = $vm.summary.config.numEthernetCards
         $row.TotalCPU = $vm.summary.config.numcpu
         $row.{TotalMemory Mb}= $vm.summary.config.memorysizemb
    
         $report += $row
    }
    $report | sort -property VMname | Export-Csv $outputfile -NoTypeInformation
    

    As the basis of each report is the loop through all the guests (Get - VM cmdlet) should be quite easy to incorporate the other 2 files CSV in a similar way.

  • How to create a report in this style

    Hello

    I faced a problem with the display of reports in the dashboard.

    There is a prompt of the year, if I choose to 2010, the report will show sales of three years, namely 2009,2010,2011, given three years.

    as:

    2009 2010 2011 YEAR
    SALES 100 200 300

    and if I choose to 2009, it will display 2008,2009,2010, given three years.

    How can I achieve this requirement?

    waiting for your help, thank you!

    Here you go... Just blindly follow these steps and you're done.
    (1) create a command prompt of the year with variable presentation as pv_year

    (2) create a report saying report Mid year with selected 3 times column
    -Put a filter of pv_year presentation on the first column of the year with a default variable tell @{pv_year} {2008}
    -Rename the second time column say YEAR + 1 and change the fx to CAST (TIME_DIM. ("' YEAR ' AS INT) + 1
    -Rename the second time column say YEAR-1 and change the fx to CAST (TIME_DIM. ("' YEAR ' AS INT)-1
    Now when you run the report environment, this will give you a records whose value as 2008-2009-2007

    (3) create your main report with criteria such as pass year and measure
    -Change the fx for column year as CAST (TIME_DIM. ("' YEAR ' AS INT)
    -Now to put a filter on the year column with filter based on the results of another application and select them:
    Relationship = superior or equal to one
    Registered request = browse mi report
    Use the values of column = YEAR-1
    -Again, put a filter on the year column with filter based on the results of another application and select them:
    Relationship = less than or equal to one
    Registered request report Mid = browse (incase it does not select and select any other application first, then report Mid)
    Use the values of column = YEAR + 1

    This will select year > = 2007 AND year< =="" 2009.="" hence="" the="" results="" will="" be="" for="" year="">

    This will 100% work...
    http://i56.Tinypic.com/wqosgw.jpg

    See you soon

  • Create a report based on view

    Hi all

    I wanted to create a form with report based on two tables:

    1. I created a display (called COMBO) based on two tables
    2. I then created a form with the opinion-based report

    Until then, everything seemed fine until I tried to edit existing records - I get the error:
    ORA-20505: Error in DML: p_rowid=2002082600001172, p_alt_rowid=REPATRIATION_ID, p_rowid2=, p_alt_rowid2=. ORA-01776: cannot modify more than one base table through a join view 
    
    Unable to process row of table COMBO.
    Note: REPATRIATION_ID is the primary key of the table of repatriation. The other table is a plaintiff.

    & when I tried to create a new record - I got the error:
    ORA-01776: cannot modify more than one base table through a join view 
    
    Unable to process row of table COMBO.
    Someone enlighten me please!

    Kind regards
    Kamo

    Published by: Kamo 03/12/2009 02:33

    Hi Kamo,

    You create a trigger of "instead of" (insert/update/delete) on your sight to treat inserts etc in the tables 'real '.

    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    You can reward this response in marking it as useful or Correct ;-)

  • Create a report - custom time

    Hello
    Went down a demo, I've created a report for each of our groups showing "memory usage" and "CPU usage" which works very well. (simple start is my motorcycle!)
    If we had to, but the product I need to be able to do the following (to monitor weekly usage and foreground models)
    I need this report to run, but only for hours during the Monday to Friday - so I would get a report at the end of the week showing these measures from 9 to 5 Monday to Friday. (we have a high utilization of the processor and memory outside these hours for short periods where Mcafee scans - but I want to include these numbers)
    I don't see a way to do this?, I know I could shecdule a daily report at 16:00 for the past 8 hours, but then I'd end up with 5 different reports?

    Try the training site and see if it helps you steer in the right direction.
    www.Vizioncore.com/.../Training

  • How to create interactive reports database connection?

    I installed the interactive web reporting client of hyperion workspace.

    When I create a new document for creating interactive reports in the workspace file > new > Document > create a document of interactive report > data source >

    He is asked to select the database connection, which I am unable to create. Please guide me.

    Thanks in advance.

    Hello

    To create the ECAS, you first have to decide whether to use an ODBC connection or ike Client.Then Oracle create using the Interactive Studio Reporting of the OCÉ customer. Then check if the BQY works with this OCE connection.

    After that you need to publish (import) in the workspace. Also, in the workspace, you must make entries of data (DAS entries) that will allow to use the drivers to connect to the database of the ECO.

    Then, you must publish the BQY and associate it with the ECO.

    HTH,

    Thank you

    KK

Maybe you are looking for