Intercompany Matching report from Financial Report Studio

Hello all,
Im trying to create an Intercompany matching report with Financial Reporting (Hyperion Reports), I've used two grids with identical selections but swapped entity and icp dimensions.
With a function I can retrieve this data into one grid and calculate the mismatch, but my question is do I need first to create a System-defined member list for my ICP members?
As a result of my current report (without the system defined member list) i'm getting half report correct and half incorrect..
Does anybody else face this problem before? Any comments and help will be highly appreciated.
Best Regards,
Jorge

I've created 2 Member List, both identical either for ICP and Entities, using scripts... and it works well....
I've Build up the report in this way:
Grid1 Acct Pay Acct Rec Matching Difference
ICP / Entity XXX Grid2. Column[A] [A]-
Grid 2 (Hide) Acct Rec
Entity / ICP XXX
Note that the Grid1 is getting the information from Grid2 and doing the matching difference. As a result I'm getting a bit list with about 210K lines, that brings to me all possible combinations with all entities. Basically the final report should have about 1K lines for every month, it means that there is a lot of Zero's on the rows. The solution I've found is use the suppress option, but as a result I've got a new problem!!
The Fist(Acct Pay) and the 3rd (Matching Difference) Column Looks fine, but the 2nd column that is "linked' with the grid 2 becomes 0.
And I'm struggling myself to get it done !! eheh If someone know how to get it fix please let me know!!
Best Regards,
Jorge

Similar Messages

  • VBA to pull from Financial Reporting Studio/Reporting and Analysis Framework

    Hi all,
    I just started using Financial Reporting Studio, and I did a lot of research online to try to answer the questions I have below but to no avail, so I'm hoping I can get answers from the experts here.
    1. I was wondering if it's possible to use SmartView VBA to pull a report from the "Reporting and Analysis Framework" onto Excel? If yes, how?
    2. When I tried to pull lots of data from "Reporting and Analysis Framework" onto Excel using SmartView, it keeps getting the error message "New report failed to insert properly". Is there a way around this? Essentially, what I'm trying to do is pull the Expense data (Actuals, Budget, Forecast) from year 2011 to 2015 (by month) for every department (with each department being on its own worksheet using the split feature). If I reduce the number of departments or columns, it'll work, but when I try to keep everything, it fails.
    Thanks for your guys' help!

    Hi there,
    There is VBA manual for smartiview application however I am not sure that you will be able to automate the retrieve of a report.
    Check chapter 19 of http://docs.oracle.com/cd/E12825_01/epm.111/sv_user.pdf
    Regards,
    Thanos

  • CR2008 Not enough memory while exporting reports from Crystal Reports 2008

    I have recently upgraded our Crystal Reports version from Crystal Reports Basic for Visual Studio 2008 to Crystal Reports 2008. After upgradation I am facing the problem "Memory full.OtherErrorFailed to export the report. Not enough memory for operation" when I am trying to export the report from Crystal Reports 2008 Report viewer, or directly from the code behind. The application is hosted application. The problem occurs in our production environment.
    Server details:
    OS: Windows 2003 Enterprise Edition R2 with SP2
    IIS: IIS 6
    .Net Framework: 3.5
    Application details:
    Hosted application using Crystal Reports 2008 SP 3
    Crystal Reports Viewer version: 12.0.2000.0
    The data binding of the report object is done through an ADODB dataset.
    Web.Config:
    <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
      <configSections>
        <sectionGroup name="businessObjects">
          <sectionGroup name="crystalReports">
            <section name="printControl" type="System.Configuration.NameValueSectionHandler" />
            <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler" />
          </sectionGroup>
        </sectionGroup>
      </configSections>
      <businessObjects>
        <crystalReports>
          <printControl>
            <add key="url" value="http://myserver/mysite/PrintControl.cab" />
          </printControl>
          <crystalReportViewer>
            <add key="documentView" value="weblayout" />
          </crystalReportViewer>
        </crystalReports>
      </businessObjects>
      <appSettings>
        <add key="CrystalImageCleaner-AutoStart" value="true" />
        <add key="CrystalImageCleaner-Sleep" value="60000" />
        <add key="CrystalImageCleaner-Age" value="120000" />
      </appSettings>
      <system.web>
        <httpHandlers>
          <add path="CrystalImageHandler.aspx" verb="GET" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
        </httpHandlers>
        <compilation debug="false">
          <assemblies>
            <add assembly="CrystalDecisions.Data.AdoDotNetInterop, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
            <add assembly="CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.Enterprise.Framework, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.ReportSource, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.CrystalReports.Engine, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
          </assemblies>
      </system.web>
      <system.webServer>
         <handlers>
             <add name="CrystalImageHandler.aspx_GET" verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" preCondition="integratedMode" />
         </handlers>
      </system.webServer>
    </configuration>
    Sample Code:
    Report = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    Report.Load(Server.MapPath(strReportPath));
    Report.SetDataSource(dsReport);
    Creportviewer.ReportSource = Report;
    For exporting the report to PDF
    string Filename = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.InternetCache).ToString(), Guid.NewGuid().ToString() + ".pdf");
    Report.ExportToDisk(ExportFormatType.PortableDocFormat, Filename);
    Clean Up Code: (Page_UnLoad event)
    if (Report != null)
         Report.Close();
         Report.Dispose();
    Creportviewer.ReportSource = null;
    Creportviewer.Dispose();
    dsReport = null;
    GC.Collect();
    GC.WaitForPendingFinalizers();
    Can someone help me resolve the issue.

    The .rpt file size is 14MB with the Data Save option enabled, 12MB without Data Save.  Presumably the 12MB file size is because of the 24bit PNG we have as our background.
    The Designer executes the report in less than a second and we can scroll through all pages and see the image fields perfectly.
    When we Export to PDF, the Designer takes a long time, eventually gets to the 77%, the 7th record and returns "Export report failed" followed by "Memory full".  If we export only page 1 of the 3 pages, it also returns a Memory full error.  However, when the same report is run with only 1 page, that page exports to PDF but with a ridiculously large size and export time.
    The machine has 2GB of physical memory with an 8GB pagefile with Windows 2003 (latest everything).  The process runs up to about 1GB before reporting the memory full error.
    We've also tried a variety of other suggestions posted in the other thread with no success.
    We're happy to provide the RPT file to the Report Team to diagnose the problem.  Ultimately, we need to be able to produce a 15 page report with approximately 45 images.
    Our preferred scenario is fixing problem 2.  The CR Designer seems quite capable of rendering our report and printing it to our third party PDF printer in a timely manner with small size.  However, the API reports memory full.
    The API resides in a dedicated reporting web service with NO other code except for loading the report, setting parameters and printing.  When executing, it uses up to about 1.1GB before reporting the error.
    Are there any other suggestions for fixing what we have?  Are there known problems with large images in reports?  Do we need to lodge a formal support request?
    Regards,  Grant.
    PS.  Grr and my message formatting is lost when I edited this message!!!
    There is a 1500 character limit and then all formatting is removed to save space. Break you posts into separate entries.
    Edited by: grantph on Sep 30, 2009 2:49 AM

  • Calling a report from another report

    Hi,
    Is there any way ,(any built in ) to call a report from another report in Report Builder 2000 and Report Builder 6i.
    Regards

    Try to call report from report by a button in the calling report:
    1     In the Layout Model view, click in the tool palette. Note
    2     Click and drag a rectangle.
    3     Double-click the button object to display the Property Palette.
    4     Under the Button Label node, set the Label Type property to either Text or Icon:
    n     If the button label is text, set the Text property to the text you want to appear on the button.
    n     If the button label is an icon, set the Icon Name property to the name of the file containing the icon (the file must reside in the directory specified by the UI_ICON environment variable).
    5     Under the Button Behavior node, set the Type property to PL/SQL.
    6     Double-click the PL/SQL Trigger property value field.
    7     In the PL/SQL Editor, define the PL/SQL for the action trigger or format trigger when the button is clicked in the formatted report.
    8     Set other properties as desired.
    9     To activate the button, run the report, then display it in the Runtime Previewer.

  • Calling a report from a report (10g)

    Hi
    I am using DeveloperSuite 10g and Application Server 9.0.4 - I am trying to call a report from another report.
    I believe I am correct in thinking that as buttons don't exist in reports any more I have to use a hyperlink containing the URL to the reports service with appropriate parameters to invoke the required report.
    My problem is that when I click on the hyperlink I do not see the called report, but get an html screen saying "Oracle Report Status - Successfully run".
    My hyperlink is formed like this:
    /reports/rwservlet?module=reportb.rdf
    Is there an additional parameter I must pass to get the report to display on the client browser window?
    Thanks

    Hi,
    Can someone let me know as to what the maximum length of the URL string that could be formed? I believe in IE browser a maximum of 64,000 characters can only be formed. If I need to pass many parameters and the length of the values passed exceeds the default length in IE, the rest of the values will not be captured in the report server.
    Please let me know on how to proceed with this problem.

  • Calling a report from a report

    I would like to know how to call a report from another report
    Thanx in advance
    RAM

    you can use a SRW.RUN_REPORT to calla report from a report

  • Calling a Report from another Report.....URGENT

    Hi,
    I am calling a report from another report using hyperlink. I want that this new report should come in a new page.
    Can any body help me where i can set this property, so that the new report will open in a new page.
    Thanks in advance
    Regards
    Kamal

    Try to call report from report by a button in the calling report:
    1     In the Layout Model view, click in the tool palette. Note
    2     Click and drag a rectangle.
    3     Double-click the button object to display the Property Palette.
    4     Under the Button Label node, set the Label Type property to either Text or Icon:
    n     If the button label is text, set the Text property to the text you want to appear on the button.
    n     If the button label is an icon, set the Icon Name property to the name of the file containing the icon (the file must reside in the directory specified by the UI_ICON environment variable).
    5     Under the Button Behavior node, set the Type property to PL/SQL.
    6     Double-click the PL/SQL Trigger property value field.
    7     In the PL/SQL Editor, define the PL/SQL for the action trigger or format trigger when the button is clicked in the formatted report.
    8     Set other properties as desired.
    9     To activate the button, run the report, then display it in the Runtime Previewer.

  • Calling a report from a report in reports 10g !

    Which one is the most easist way of calling a report from a report in Reports 10 g ?
    Capri !

    Actually the scenario is that I have a report in which suppose a list of names is there. I want another report called on the basis of a name selected by passing that name_id as a parameter to the called report.
    In Reports 6i that is easily done by a BUTTON. But i am unable to find a solution here.
    Hope its clear now.
    Capri !

  • Problem while calling a report from the report

    Hi
    i want call a report from the report, i have written URL in the Hyperlink and its working
    but
    1) i want open it in the diffrent window.
    2) suppose if u have a report called emp it should call antoher 2 report at a time.
    ( how to put 2 URL in the hyperlink?).
    i,e if i press a hyperlink it should open emp1 and emp2
    Please help me.
    thanks and regards

    Thanx,
    I have solved this problem.
    Regards,
    Hafeez

  • Can we run one report from another Report in reports 6i

    Actually my requirement is i want to run 4 reports from another report(driver report) by passing parameter same as the driver report.
    i want to see the out put on the screen report by report next to driver report output.is it possible?? actually i got the solution for printing or taking file. but i want to show the output on the screen.
    Edited by: user9165808 on Feb 16, 2010 3:21 AM

    I used SRW.RUN_REPORT () . But my question that is it possible to show report in batches on screen??
    Edited by: user9165808 on Feb 19, 2010 4:23 AM

  • Hyperion Enterprise reports to Financial reports

    is there any way to migrate Hyperion Enterprise Reports to Financial reports v9?
    Right now i am manually building it and i have a bunch of them to build.?
    Any suggestions on easy migrations.?
    Lakshmi

    Hi Lakshmi,
    Unfortunately, I don't think you will have a lot of luck in this one. FR only supports the following database connections: http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_hs_user/database_manager_fr.html
    Cheers,
    Mehmet

  • Calling another report from a report

    just wanna explore the possibility...
    i have a.bat which will call a.rep.
    in a.rep, a function will loop and call b.rep.
    is this possible?

    Hi KLC
    This is prasanth again. In reports we can call a report from another report which is called "drilleddown reports"
    If ur requirement is this one, then we can do this by using SRW builtin called srw.run_report.
    syntax is srw.run_report(reportname,<arguements if any)
    Place a push button in report 'a' and put this code in that button.
    I think this will solve your problem. I dont know exactly what requirement you have. Because for ur last question regarding distribution not clearly understood, so i suggestion is incorrect. any way i am trying to distribute the date based on sql model and i will suggesst you soon, Since i am also a developer,please try my suggestion but i am not sure that will work 100% correctly.
    thans and regards
    prasanth a.s.

  • Need to build Nicely formatted XLS report from Oracle reports

    Hi,
    Please let me know if there is any option in developing a formatted XLS report from Oracle reports.
    I am using Report Builder 10.1.2.0.2.
    Please advice.

    Hi,
    it may help you.
    Generating Oracle reports o/p to xls format.
    PS

  • Query annotations (from financial reporting

    Hi All,
    I want to upload my annotations with my data (retrieved from Essbase), but i cannot find the comment.
    I retrieve data from an Essbase cube (with an import script in FDM).
    No i want to check for annotations for each row and add them in an additional column.
    In the SQL database Workspace i have found the ANNOT_ELEMENTS, ANNOT_ELEMENTS_VALUE and ANNOT_CONTEXTS tables so i can match the cell in Financial reporting to an ANNOTATION_ID.
    But i cannot translate the ANNOTATION ID (like 0000012724ae4e60-0000-735d-0a164ac4) to a valid tekst/ type combination.
    Has anyone a clue how and where annotations are stored and how i can retrieve them in FDM?
    Thanks in advance,
    Marc

    I think annotations are saved as a link related object (or LRO) within the Essbase cube. I would think you need that data you would need to write some java code to find the LRO at those intersections.

  • Help creating a report with Financial Reporting Studio.

    Hi,
    Im new at Financial Reporting Studio so my question might be something very easy, for beginners.
    Im trying to create a report with two columns where in each column there is the year dimension. In the first column there is the current POV for year, but in the second column I would like to set the prevoius year of the POV automatically, without using a prompt. Is there any function or way to do it?
    Tanks foy yuour help!
    Edu

    Use the relative function.
    The first column will be set to use the User POV.
    For the second column... see the tab named "Functions". Select the function "RelativeMember". For the Member row - select User POV. For the offset enter -1... that will automatically select the prior year.

Maybe you are looking for

  • Can I upgrade my Sony Laptop's Graphic Card?

    My laptop is relatively new and I only bought it a few months ago, model #VPCEB. It currently has a 512 MB ATI Radeon HD 5470 which I want to upgrade so I can have StarCraft II run smoothly because it is kind of choppy right now. I just want to know,

  • Tags entered in code view don't show in design

    I searched a bit, but didn't find any mention of this problem from anyone else... I'm using Dreamweaver MX on OSX 10.2.8. For some reason, when I try to use the basic 120x240 pix text/image product link tags given in the Amazon Associate program, it

  • Performance Decrease with ComboBoxes

    Memory consumption and bad performance decrease when closing and reopening panels containing ComboBoxes. Context: - Running localMode - Jdev 9.0.3.1 DE - Business Component Version 9.0.3.10.62 - jdk 1.3.1_02 Panel (within an JInternal frame) with som

  • How to recover photos, video and notes from iphone 3G?

    Hi I just tried to back up my iphone from the last couple of weeks and it crashed while syncing and now says I need to restore factory settings.  When connected by USB to my MacBook Pro it says "iTunes has detected an iPhone in recovery mode. You mus

  • Down loaded lightroom 5 and installed but won't open right. On opening Message "an error occurred when attempting to change modules"

    Have a Mac Book Air with Lightroom 4 Full Download aboard. Just got an iMac. Wanted to load Lightroom 4 on iMac. Took the Adobe download file off the Mac Air and tried to load it on the iMac. It was successfull but on opening  the message "an error o