Working with Grid Suppression in Financial Reporting for EPM 11

Greetings:
Does anyone know if it is possible in Financial Reporting Studio to have multiple grids with suppression so that if one grid has no data the grid below it moves into that grids spot on the report. Currently, I am able to suppress the grid if it contains no values however they stay in their fixed position.
ie.
Grid 1 (no values & will be suppressed)
Grid 2
Grid 3
Would show in report preview:
Grid 2
Grid 3
What I'm getting currently is:
"blank" (suppressed grid)
Grid 2
Grid 3
Thanks
Bryan

Just put all your grid possitions relative to another.

Similar Messages

  • SAP financial reporting for FERC

    Hi everyone,
    Anyone had idea about this SAP financial reporting for FERC (federal energy regulation commission). I know that it comes under Utilities category. But i need something more specific about the SAP functionality with respect to this FERC.
    Thanks for your time.
    Regards,
    Suresh

    anybody on this. plz share your experience/knowledge with me.
    Thanks,
    suresh arya

  • Financial report for essbase and planning application

    Hi,
    Can any one please explain me what is the difference between creating financial report for essbase application and planning application.
    Considering we will have Essbase cube for the planning application
    Thanks in advance

    Correct, the data that is stored in Essbase will be the same regardless of which connection type you use.
    Data that is only stored in Planning can only be retrieved using a Planning connection. This includes Supporting Detail and SmartLists as these are stored in the Planning relational database.
    As a general rule I always use an Essbase connection unless i specifically want to get supporting detail or smartlists but that is just me.
    Hope this helps
    Stuart

  • Financial report for June 2012

    I still didn't get financial report for June 2022. Does anyone have the same problem? Normally, financial reports are available 4-5 days after the end of Apple fiscal month.

    Haven't received mine for June yet either.
    Michi.

  • Financial reporting of EPM 11 on citrix

    Hi,
    We want to put Financial reporting of EPM 11 on citrix.
    To do this, what installation files are needed and where i will get the releavent information ?
    Any help.
    Thanks

    If you don't want to think too hard about it and there are no concerns about budgets then select Weblogic Express. The Express version is relatively inexpensive as far as app servers go.
    I've seen both Tomcat and Weblogic used in production environments. We don't usually recommend Tomcat for environments larger than 100 users.
    Weblogic has stated 64-bit support in the Oracle documentation so if you are looking at a 64-bit deployment that narrows down your choice(s) as well.
    Regards,
    -John
    Edited by: Jbooth on May 26, 2009 2:34 PM

  • How to create a report with data using the Crystal Reports for Java SDK

    Hi,
    How do I create a report with data that can be displayed via the Crystal Report for Java SDK and the Viewers API?
    I am writing my own report designer, and would like to use the Crystal Runtime Engine to display my report in DHTML, PDF, and Excel formats.  I can create my own report through the following code snippet:
    ReportClientDocument boReportClientDocument = new ReportClientDocument();
    boReportClientDocument.newDocument();
    However, I cannot find a way to add data elements to the report without specifying an RPT file.  Is this possible?  I seems like it is since the Eclipse Plug In allows you to specify your database parameters when creating an RPT file.
    is there a way to do this through these packages?
    com.crystaldecisions.sdk.occa.report.data
    com.crystaldecisions.sdk.occa.report.definition
    Am I forced to create a RPT file for the different table and column structures I have? 
    Thank you in advance for any insights.
    Ted Jenney

    Hi Rameez,
    After working through the example code some more, and doing some more research, I remain unable to populate a report with my own data and view the report in a browser.  I realize this is a long post, but there are multiple errors I am receiving, and these are the seemingly essential ones that I am hitting.
    Modeling the Sample code from Create_Report_From_Scratch.zip to add a database table, using the following code:
    <%@ page import="com.crystaldecisions.sdk.occa.report.application.*"%>
    <%@ page import="com.crystaldecisions.sdk.occa.report.data.*"%>
    <%@ page import="com.crystaldecisions.sdk.occa.report.document.*"%>
    <%@ page import="com.crystaldecisions.sdk.occa.report.definition.*"%>
    <%@ page import="com.crystaldecisions.sdk.occa.report.lib.*" %>
    <%@ page import = "com.crystaldecisions.report.web.viewer.*"%>
    <%
    try { 
                ReportClientDocument rcd = new ReportClientDocument();
                rcd.newDocument();
    // Setup the DB connection
                String database_dll = "Sqlsrv32.dll";
                String db = "qa_start_2012";
                String dsn = "SQL Server";
                String userName = "sa";
                String pwd = "sa";
                // Create the DB connection
                ConnectionInfo oConnectionInfo = new ConnectionInfo();
                PropertyBag oPropertyBag1 = oConnectionInfo.getAttributes();
                // Set new table logon properties
                PropertyBag oPropertyBag2 = new PropertyBag();
                oPropertyBag2.put("DSN", dsn);
                oPropertyBag2.put("Data Source", db);
                // Set the connection info objects members
                // 1. Pass the Logon Properties to the main PropertyBag
                // 2. Set the Server Description to the new **System DSN**
                oPropertyBag1.put(PropertyBagHelper.CONNINFO_CRQE_LOGONPROPERTIES, oPropertyBag2);
                oPropertyBag1.put(PropertyBagHelper.CONNINFO_CRQE_SERVERDESCRIPTION, dsn);
                oPropertyBag1.put("Database DLL", database_dll);
                oConnectionInfo.setAttributes(oPropertyBag1);
                oConnectionInfo.setUserName(userName);
                oConnectionInfo.setPassword(pwd);
                // The Kind of connectionInfos is CRQE (Crystal Reports Query Engine).
                oConnectionInfo.setKind(ConnectionInfoKind.CRQE);
    // Add a Database table
              String tableName = "Building";
                Table oTable = new Table();
                oTable.setName(tableName);
                oTable.setConnectionInfo(oConnectionInfo);
                rcd.getDatabaseController().addTable(oTable, null);
        catch(ReportSDKException RsdkEx) {
                out.println(RsdkEx);  
        catch (Exception ex) {
              out.println(ex);  
    %>
    Throws the exception
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: java.lang.NullPointerException---- Error code:-2147467259 Error code name:failed
    There was other sample code on SDN which suggested the following - adding the table after calling table.setDataFields() as in:
              String tableName = "Building";
                String fieldname = "Building_Name";
                Table oTable = new Table();
                oTable.setName(tableName);
                oTable.setAlias(tableName);
                oTable.setQualifiedName(tableName);
                oTable.setDescription(tableName) ;
                Fields fields = new Fields();
                DBField field = new DBField();
                field.setDescription(fieldname);
                field.setHeadingText(fieldname);
                field.setName(fieldname);
                field.setType(FieldValueType.stringField);
                field.setLength(40);
                fields.add(field);
                oTable.setDataFields(fields);
                oTable.setConnectionInfo(oConnectionInfo);
                rcd.getDatabaseController().addTable(oTable, null);
    This code succeeds, but it is not clear how to add that database field to a section.  If I attempt to call the following:
    FieldObject oFieldObject = new FieldObject();
                oFieldObject.setDataSourceName(field.getFormulaForm());
                oFieldObject.setFieldValueType(field.getType());
                // Now add it to the section
                oFieldObject.setLeft(3120);
                oFieldObject.setTop(120);
                oFieldObject.setWidth(1911);
                oFieldObject.setHeight(226);
                rcd.getReportDefController().getReportObjectController().add(oFieldObject, rcd.getReportDefController().getReportDefinition().getDetailArea().getSections().getSection(0), -1);
    Then I get an error (which is not unexpected)
    com.crystaldecisions.sdk.occa.report.lib.ReportDefControllerException: The field was not found.---- Error code:-2147213283 Error code name:invalidFieldObject
    How do I add one of the table.SetDataFields()  to my report to be displayed?
    Are there any other pointers or suggestions you may have?
    Thank you

  • We work with SRM 5 Ext' Classic & report based on organization plan

    Hello expert,
    We work with SRM 5 Extended Classic scenario and BW for reports.
    We have a lot of purchasing types and we need a good report that can give as a clear picture of the purchasing process according to the organization units (departments). We have one purchase organization and a lot of purchase groups,  and the way that the system is built doesnu2019t support this requirement. We need a report that is based on the organization plan.
    For example:
    We need the option to extract all HR unit purchase documents or all direct supply goods that are purchased by the supply chain department. The report also needs to give a clear picture of the purchase operations and costs of every unit.
    Thanks,
    Gil

    Closed but Unanswered

  • Problems with concurrency tests using Crystal Reports for VS 2005

    Post Author: condeagustin
    CA Forum: General Feedback
    Hi
    My name is Agustin and Im using Crystal Reports for VS 2005
    and NET 2.0 to generate pdf files. This is the scenario:
    I created a COM+ object in c# and everytime the
    COM+ creates an instance of this object, the following flow is executed:
    it reads an xml file from a database, then it feeds the report with this
    xml file, afterwards it generates a pdf file and finally this pdf file is
    inserted into the database. Both fields (xml and pdf fields) are varbinary in the
    same table in sql server 2005. All the flow from reading the xml to inserting
    the pdf into the database is executed in memory, it never goes to the hard
    disk. In other words both the xml and the pdf file are stored in memory (the
    RAM). That is the only function of that COM+ object and I already have it in a
    production server and it works GREAT!!
    The PROBLEM is the concurrency tests. I made the following tests
    in the same production server:
    1. First I went to the registry and I set the PrintJobLimit to
    100 in HKEY_LOCAL_MACHINESOFTWARECrystal Decisions10.2Report Application
    ServerServer
    2. I shut down the object in the COM+ and I executed 100
    threads all at the same time. Each thread created one instance of the object in
    the COM+ and the 100 pdfs were generated SUCCESFULLY in 5 minutes!!
    3. Then I executed again 100 threads (WITHOUT shutting down the
    object in the com+). 10 pdfs were generated succesfully but the rest were
    never generated and there was no exception because my object was NEVER
    INSTANTIADED in the COM+, I mean, the 90 instances were never created in the
    COM+, so my object was never executed, THAT IS MY PROBLEM!! Do I have to
    modify something in the registry files of crystal reports to fix this? What can
    I do? I have revised the code in that object a LOT OF TIMES and believe me,
    everything is being closed and disposed at the end (the memory streams, the
    ReportClass objects, the connection to the database, even the dataset used to
    store the data of the xml file!
    So to sum up the problem is not with the execution of my object
    (cause once is created the object works great and the pdf is generated
    perfectly!), the problem is with the com+ TRYING to create another instance
    of my object given that test scenario. Help me please, What do you
    suggest?
    The production server has this specifications:
    Operative System: Windows Server 2003 Enterprise Edition with Service Pack 2
    Processor: Dual Core AMD Opteron 2212 2.00GHz
    RAM: 820MB
    Hard drive: It is partitioned in 2 drives --> C
    drive has 20GB and D has 60GB
    Note: Each generated pdf has only one page and if you bring it
    to disk its maximum size is 56KB
    I hope your answer and thank you
    Agustín Conde Martí

    Post Author: John Werner Enoksen
    CA Forum: General Feedback
    Hi, im about to write a simular solution where I will use VS2008/Com+ to be in compliance to an existing solition written in VB6.0, so I was googling to look for bumps. Did you figure this one out?
    Best regards,
    John Werner

  • How to replace #MISSING with 0 in Hyperion Financial Report

    I am developing report in Hyperion Financial Reporting Studio. The report shows #MISSING for no data and does not look nice. I want to replace #MISSING with 0 (Like I did in SmartVIEW). However, I could not find a way to do that in Financial Reporting Studio.
    Thank you for any help in advance.

    To replace no data (#MISSING) in cells, type a value in the No Data text box.
    Refer: Page 191 of http://download.oracle.com/docs/cd/E12825_01/epm.111/fr_user.pdf
    HTH-
    Jasmine.

  • Require two different Financial Reports for the Same Financial Year - 2011

    Hi Experts,
    The financial Year of the client is from jan-Dec.The client needs different financial reports (P&L , B/S), one from Jan-Aug and another from Sept-Dec for the FY 2011 since the management of the company has changed from Sept-2011 onwards.  So when tried to generate the financial reports from Sept-Dec , system shows the carry forward opening balances of income and expenses from Aug 2011 which they do not want.  Since we have not done any closing activities at the end of aug-2011 this figure is bound to come.  So in this scenario is there any possibilities to get a fresh financial reports from Sept to Dec 2011 where there should not be any opening balances of expenses and incomes for Sept 2011.
    Since transferring of balances from income and expenses to retained earnings accounts has done yearly basis , how can we do this for the periods also or any other method to sort out this issue.
    Hope my question is clear. if not pls revert with the queries.
    Thanks in Advance,
    Arabinda

    Hi RP,
    I have checked F.54 . Everything is ok in that report expect the Profit and Loss which are two differnt line item in that report and also calculated fields do not display in this report. But anyway this report meets most of the requirements.
    Thank you very much.
    regards,
    Arabinda

  • How do I use more than four PDOs when working with NI-Industr​ial Communicat​ions for CANopen?

    When I call CANopen TPDO Create.vi to create TPDO objects I can only input PDO1 through PDO4. How do I work with more than four PDOs?
    I see the other forum thread using an older version of CANopen, but it does not appear to directly translate into the newer NI-Industrial Communications for CANopen.
    http://forums.ni.com/t5/Automotive-and-Embedded-Ne​tworks/PDOs-on-a-CANopen-network/m-p/405001?requir​...

    Hi wireman,
    A good resource for CANopen is available here.  That page explains that typically in the CANopen standard, there are only 4 predefined PDOs in each direction (transmit and receive).  To use extra PDOs, additional configuration is required.  The configuration of the predefined PDO Channels refers to the COB-ID that they are linked to by default.
    According to the LabVIEW help files, the COB-ID is 'calculated' by adding the value of the PDO Channel and the Node ID, if the COB-ID is zero.  However, if the COB-ID is explicitly defined, then LabVIEW will ignore the calculation provided by the Node ID and PDO Channel.  So, if you need more than the four PDOs, you'll need to use the COB-ID input to differentiate which channel is being referenced.
    I hope this clears some things up, and please don't hesitate to ask for more advice.
    Regards,
    -Dave C
    Applications Engineer
    National Instruments

  • Why has EZ Vinyl/Tape converter stopped working with Itunes?  I have used for several years, but now recent 11.0.4 Itunes has a problem with "Script conflict", and EZ has a brain-****.  Conversion goes into Itunes Playlist-not song/artist/album listing li

    What has stopped Itunes from working with EZ Vinyl/tape converter????  I get a "Scripts conflict" error, and Itunes bugs out.
    I had two Geek squad people in to look at, and they can't get it to work like it had for three years.  Is 11.0.4 to BLAME!!!!

    I'd like to know who Marlene is....oh wait, it was a mixup.
    I suspect these posts will be deleted.
    It's every software company's answer to everything - upgrade to the latest version.
    And for good reason, the bugs they know about get fixed, while introducing new ones. Not on purpose, of course, it just happens.

  • Hi, is there plans Firefox for Android to work with .p12 certificates like desktop versions for Windows, MAC and Linux?

    I used Firefox 26 at Android 4.2.1 and try to sign docs in bank application but receive a message ”window.crypto Error:undefined, TypeError: window.crypto.signText is not a function”.

    Hello Philipp, thank you for your answer.
    I used this addon and i have certificate in the browser, i can choose it, but when try to sign docs with it, i receive this message ”window.crypto Error:undefined, TypeError: window.crypto.signText is not a function”.
    My be 'window.crypto.signText' function is not supported in Firefox for Android, so question is there plans browser to work with this function or how it can be enabled.

  • How to suppress warning in reports for indivdual queries

    Hi Guys,
    I have done some changs with multiprovider and on which there is one workbook has be defined already.
    Due to chagnes in the multiprovider , concern reports<which are attched into workbook> is also affected .
    I repaired this reports but still they are giving warning.
    1. I have tried to suppress into RSRT in message but I am not able to see relevant message number and descriprtion .
    2. I tried RSRT -> Execute + debug -> uncheck 'supress warnig '  --> even I tried generate option after that -->but if I again go and do same procedure in execute and debug -->' the option of 'supress warning ' is again get  checked automatically
    3. In query designer -> I opened releveant query --> Query property, I didn't find any supreess warninn option
    4. In Bex analyser we can do supress warning ,but this I have to make for all concern endusers ,which is not advisable.
    My question is could you please tell me the correct option and procedure step by step.
    1. How can I save setting in execute+dubug -> uncheck supress warning
    2. How can I find in query designer.
    Points will be rewarded.

    Hi,
    Open the work book, there in menu,"Business Explore"> Settings> , you will have "Supress warning messages" , check it and then save your work book and then execute and test.
    If you need further clarification please let me know.
    Assign points if it helps..

  • Issue with drill down in Financial Reporting 11.1.2.2

    Hi All,
    I have a requirement like this :
    I have different dimensions for Year and Period(Period has half years and also quarters ).
    The requirement is like that when the report opens up the rport should look like this:
                             YearTotal
                        FY12            FY13
    Accounts
    Now the user  wants to drill down on YearTotal and it should show in the following way:
                               H1                      H2
                     FY12      FY13    FY12      FY13
    Accounts
    and so on.
    Still now whatever I have tried I am unable to acheive this . Any ideas whther this is acheivable or not ????
    Regards,
    Saurav

    Even without drill(allow expansion) you can only achieve that only by using merge option.
    With merge the drill will not work.
    It'll not be a pretty report.
    Regards
    Celvin
    http://www.orahyplabs.com

Maybe you are looking for

  • CPU Patch for SOA BPEL -10.1.3.5 and B2B -10.1.2.0.4

    We are in DOD -GOVT US marine corps.. WE are on 10.1.3.3.1 .. There is no CPU Patches for 10.1.3.3.1 nor for 10.1.2.03-B2B open issues/questions: Open Issues: 1. What is Oracle's recommendation about upgrading 10.1.3.5 vs 10.1.3.4 (CPU Patch support

  • Role of business system in SLD

    I am doing PI post configuration with Central SLD on solution manager.What should be the Role of the business system for solution manager?In sxmb_adm should I give this as application system? And what should be the corresponding integration server?

  • I am unable to change my screen brightness using the fn+f2/fn+f3 keys. i understand that it can stil

    I am unable to change my screen brightness using the fn+F2/fn+F3 keys. I understand that it can still be adjusted differently but I want this way to work. Also whenever I change my volume using the fn+F7/fn+F8/fn+F9 keys, the little on-screen display

  • Hp deskjet 5150 printing on network

    I can print from my desktop without a problem. From my laptop, the printer comes up as online and ready. I click to print and it starts and then I get an error message that says: Unexpected error  Both my desktop and laptop are running Vista. Any hel

  • Can't seem to get hand cursor happening.

    To whom it may concern; I have been struggling to get a hand cursor over my MC's for pic4_mc, pic14_mc and pic1_mc. They are photos turned into MC's with as3 function to act like a btn. Perhaps I am putting the script: (myMC).buttonMode = true; (myMC