DRM export in Level Format

Hi,
can anyone guide me how to export in level format (essbase level).
topnode|parent|child1|1st children of child1|etc
tried generation export using inverted level option but it is not returning correct results.
can anyone here guide in taking export in level format.

You're making this a lot harder than it needs to be. Just use a generation export, select root to node option, create a filter (for Leaf=True or depending on your use case maybe #_Children = 0), and set the bottom level value.
For example, if you set set the bottom level = 8 with your sample data, exporting node name without the filter you would get:
A null null null null null null null
A B null null null null null null
A B C null null null null null
A B C null null null null D
A B C null null null null E.
But filter for only bottom nodes, you would get:
A B C null null null null D
A B C null null null null E.
You can add the Description column and you'll get:
A DescrA B Descr B C DescrC null null null null null null null null D DescrD.
A DescrA B Descr B C DescrC null null null null null null null null E DescrE.
The export will take about 20 seconds to define, which is about 10% of the time it took to create this response. Good luck

Similar Messages

  • Change in report format after exporting from pdf format to excel format.

    Hi,
    I got a problem while exporting the pdf format of the Report to Excel format "Fully-Foramtted Grids and Texts".
    The format gets automatically changed.
    Is there any solution to this problem.

    Can you give some more details?
    Which version are you using (and which patch level - if any).
    Also what formatting is default on the reports and what is the default format in excel.
    What exactly is different between PDF and excel?
    Another possibility is that font substitution is going on??

  • ReportDocument Export always exports top level of report!

    <p> I use the following code to export data from a reportdocument object which is persisted by being written to the filesystem when page unloads and reloaded when the page is loaded</p><p>Now i have modified the export options whithin the viewer to accept a custom export format which basically runs code below the problem is that when the code below runs it exports a</p><p>high level view of the report even if you have drilled down into a group??? do I have to do something special to get the currently viewed page to be able to export it. The default formats within </p><p>the viewer work fine and export the correct data.</p><p class="coloredcode"><span class="kwd">Dim</span> dfo <span class="kwd">As</span> CrystalDecisions.<span class="kwd">Shared</span>.DiskFileDestinationOptions = <span class="kwd">New</span> CrystalDecisions.<span class="kwd">Shared</span>.DiskFileDestinationOptions() dfo.DiskFileName = rptPath & <span class="st">".tsv"</span> rptDoc.ExportOptions.DestinationOptions = dfo rptDoc.ExportOptions.ExportDestinationType = CrystalDecisions.<span class="kwd">Shared</span>.ExportDestinationType.DiskFile rptDoc.ExportOptions.ExportFormatType = ExportFormatType.TabSeperatedText rptDoc.Export()</p><p> any help would be great thanks</p><p>k</p>

    using System;
    using System.Data;
    using System.Configuration;
    using System.Collections;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Web.UI.HtmlControls;
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    using CrystalDecisions.ReportSource;
    using System.Data.SqlClient;
    using RH;
    namespace RH
        public partial class frmAnalyzeReports : System.Web.UI.Page
            #region Variable Declaretions
            ReportDocument rptDoc = new ReportDocument();
            Database crDb = null;
            Tables crTables = null;
            ConnectionInfo cnInfo = new ConnectionInfo();
            conModel con = new conModel();
            #endregion
            protected void Page_Load(object sender, EventArgs e)
                Response.Cache.SetCacheability(HttpCacheability.NoCache);
                if (Session["RoleID"] == null || Session["RoleID"].ToString() == "")
                    Response.Redirect("frmUserLogin.aspx");
                else
                rptDoc.Load(Server.MapPath("Reports/PieChart.rpt"));
                rptDoc.SetDatabaseLogon(ConfigurationManager.AppSettings["DBLogin"].ToString(), ConfigurationManager.AppSettings["DBPassword"].ToString(), ConfigurationManager.AppSettings["DBServer"].ToString(), ConfigurationManager.AppSettings["DBase"].ToString());
                con.ReportConnection(rptDoc, cnInfo, crDb, crTables);
                if (!Page.IsPostBack)
                    ParameterDiscreteValue paraDiscVal = new ParameterDiscreteValue();
                    ParameterValues paraRpt = new ParameterValues();
                    foreach (ParameterFieldDefinition paraDefTemp in rptDoc.DataDefinition.ParameterFields)
                        //Decalring Values to stored procedure
                    SqlCommand cmdSearch = new SqlCommand();
                    cmdSearch.Connection = con.con;
                    cmdSearch.CommandText = "[dbo].[sp_Report_Query]";
                    cmdSearch.CommandType = CommandType.StoredProcedure;
                    //Assigning value to stored procedure
                    ExportOptions crExportOptions;
                    DiskFileDestinationOptions crDiskFileDestinationOptions = new DiskFileDestinationOptions(); ;
                    string Fname;
                    Fname = Server.MapPath("ReportOutputs/test.pdf");
                    crDiskFileDestinationOptions = new DiskFileDestinationOptions();
                    crDiskFileDestinationOptions.DiskFileName = Fname;
                    crExportOptions = rptDoc.ExportOptions;
                        crDiskFileDestinationOptions.DiskFileName = Server.MapPath("ReportOutputs/test.pdf");
                        crExportOptions.DestinationOptions = crDiskFileDestinationOptions;
                        crExportOptions.ExportDestinationType = ExportDestinationType.DiskFile;
                        crExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat;
                    rptDoc.Export();
                    Session.Add("report", rptDoc);
                CrystalReportViewer1.ReportSource = (ReportDocument)Session["report"];
            protected void CrystalReportViewer1_Init(object sender, EventArgs e)
                TableLogOnInfo li = new TableLogOnInfo();
                li.ConnectionInfo.ServerName = ConfigurationManager.AppSettings["DBServer"].ToString();
                li.ConnectionInfo.UserID = ConfigurationManager.AppSettings["DBLogin"].ToString();
                li.ConnectionInfo.Password = ConfigurationManager.AppSettings["DBPassword"].ToString();
                li.ConnectionInfo.DatabaseName = ConfigurationManager.AppSettings["DBase"].ToString();
                CrystalReportViewer1.ReportSource = CrystalReportSource1;
                CrystalReportViewer1.LogOnInfo.Add(li);
                CrystalReportViewer1.HasCrystalLogo = false;
                CrystalReportViewer1.HasPageNavigationButtons = false;
                //CrystalReportViewer1.HasAttributes = false;
                CrystalReportViewer1.HasViewList = false;
                CrystalReportViewer1.HasToggleGroupTreeButton = false;
                //CrystalReportViewer1.HasDrillUpButton = false;
                CrystalReportViewer1.DisplayGroupTree = false;
                //CrystalReportViewer1.to
            protected void LinkButton2_Click(object sender, EventArgs e)
                Session.Abandon();
                Response.Redirect("frmUserLogin.aspx");
    Only 1st level exported by above code. Please help me export other levels too...
    Arindam Roy
    - Work is workship

  • Import using level format

    Hi All,
    Is there a way of importing a file to DRM, which is in the Generation/Level format?
    Thanks in Advance.
    Anindyo Dutta

    Thanks for responding.
    It is going to be additional overhead to convert the source file then.
    CHeers!
    Anindyo

  • Crystal report : Export to Text format from BI Launch pad

    Hi,
    We are facing issue in exporting the Crystal report to text format option from BI Launch pad view mode. Currently BI launch pad doesn’t support export to Text format option for crystal report in view mode. But export to text format option is feasible in schedule mode. But customer is not interested in exporting the reports through schedule mode.
    Please advise, if we have any alternative way of exporting the crystal report to text format option from BI Launch pad.
    Thanks,
    Chinnu A

    Hi Chinnu,
    The question is better suited to be asked in the BI Platform space.
    -Abhilash

  • Export to Text format

    When a report is exported to Text format, trailing spaces do not appear in the exported file.
    How do you resolve this issue?
    1. Create a report.
    2. Include 3 fields
    3. Export ->txt
    After the end of 3rd field we require 200 spaces...any idea...

    Try to insert a new formula after the third field like this
    space(200)
    or try to create a formula for the third field like this
    +space(200)
    and place this formula in the place of the third field and export to text file.
    Regards,
    Raghavendra

  • Question about CHKDSK ,S.M.A.R.T and low level format

    hi,
    I like to know the difference     exactly  between CHKDSK and S.M.A.R.T and low level format program(I know that  low level format  writes zero"s) I mean besides the low level format writes  zero's what onother
    benefits it  has , it repairs some bad sectors or mark bad sectors ect?
    very short explanation wil be enough.
    thanks
    johan
    h.david

    H.david
    1-CHKDSK http://en.wikipedia.org/wiki/CHKDSK  CHKDSK verifies the
    file system integrity on
    hard disks or
    floppy disk and fixes logical file system errors.
    2-S.M.A.R.T http://en.wikipedia.org/wiki/S.M.A.R.T.  smart is a monitoring system for
    computer
    hard disk drives (HDDs) and
    solid-state drives (SSDs)<sup class="reference" id="cite_ref-1">[1]</sup> to detect and report on various indicators of reliability, in the hope of anticipating failures.
    3-Low level formatting  http://en.wikipedia.org/wiki/Low_level_format
    Wanikiya and Dyami--Team Zigzag

  • How can I schedule an export to excel format of an OBIEE Analysis or Dashboard to a local directory ?

    Hello,
    I would like to schedule with an agent some reports in OBIEE 11g that must be exported in excel format to a specific local directory.
    There is a need for a group of OBIEE users to have a set of reports ready (exported in .xlsx) every morning.
    Furthermore, if the previous scenario is possible then could I deliver a whole OBIEE Dashboard with the same way?
    Any input will be appreciated.
    Thank you in advance.

    Hi,
    As of now , we are not able to save the report in shared location in Linux /Unix.
    Windows it is possible.
    http://satyaobieesolutions.blogspot.com/2013/03/oracle-bi-ee-11g-calling-vb-scripts-to.html
    http://satyaobieesolutions.blogspot.com/2013/03/oracle-bi-ee-11g-calling-js-scripts-how.html
    Thanks,
    Satya Ranki Reddy

  • Export to Excel format changed after update to new Office

    Post Author: Ceraq
    CA Forum: Exporting
    I am using the XL export format as an intermediate step to some complex calculations and ties that are not supported in my legacy system.  To get what I want I simply used a CR XI report to create a mid way data file and then used a second report to crunch the final numbers from the data file.  Its a long painful story as to exactly why I have to do it this way... not my choice.
    Prior to the update when I exported more than ~65k lines to an XL format they remained in one sheet.  So the second report would grab all the data and go...  Now, after the update of office, the report gets split into seperate sheets each of ~65k records long and the second report sees each sheet as a seperate data table!  I'm pushing over 1.25 million records into less than 400k in the mid data file so I'm getting about 7 sheets instead of the original 1.
    I have a lot of work and time invested in this method so I would like to fix it so it still works in the previous manner... I have tried to export to a different format, but it seems that CR XI cannot export to a format that it can also read in... at least that I have found and not without creating a whole new DB for it to export into (Access).  I cannot unroll the new office either as it is already enterprise wide...
    Reomendations? Suggestions? Should I simply go get a few cases of Dr. Pepper and tell my wife I wont be home this week and re write everything (no plan on how I'd do that either...)?
    Best regards,
    Michael

    Hi Debbei
    I think  u have to use microsoft office 2003
    Regards Reeha

  • ORA-06502 Error while exporting to xls format

    While Exporting to xls format, the ORA-06502 crops up in the exported file.
    The print server is BI Publisher.
    The report has around 50 columns.
    Any help would be greatly appreciated.

    Any suggestions?

  • How to low level format an external hard drive on Yosemite

    I need to perform a low level format on an external hard drive as the WD external hard drive does't provide instructions for doing it on my Mac with Yosemite.

    Drive Partition and Format
    1. Open Disk Utility in your Utilities folder.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Apply button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.

  • Export in column format

    Dear Gurus,
    What if i check the option export in column format while export the database?
    Thanks,
    Sekhar

    Hi,
    Adding to the John comments,
    If you export the database in the column format the size of the export file will be much more than the data in the cubes.
    I had an experience where I used to export the data in column format which results in a file which was
    twice the size of the file without the column format.
    If you have a lot of data in essbase cubes, I advice you to export data in non columnar format in order to save the disk space.
    Thanks,
    Sourabh

  • Reports exported to Excel - Formatting issues

    We have two Business Objects Enterprise servers (boxi r2 and boxi r3.1 sp3) running side by side.  We find that reports created using boxi r2 and exported to Excel format look fine.  When we run the same report and export to excel using boxi r3.1 sp3, we encounter the following formatting issues:
    <ol>
    <li>All columns do not fit on pages.  The last 2 to 3 columns spill over onto extra pages.</li>
    <li>There are some columns where most of the values are blank, but when a row is exported that has a value in that column, all subsequent column positions for that row shift.</li>
    <li>All rows do not fit on page.  The last two rows flow onto a new page, then there seems to be a page break.</li>
    <li>On some reports dates are displayed as ######.</li>
    <li>On some reports column headings are  not centered.</li>
    <li>I would appreciate any input that would help us determine a fix for the formatting issues we are encountering.</li>
    </ol>
    The report is executed using CrystalDecisions.CrystalReports.Engine.
    Here is the code from the application that does the export:
                                ExportOptions exportOptions = new ExportOptions();
                                exportOptions.ExportFormatType = ExportFormatType.Excel;
                                exportOptions.ExportDestinationType = ExportDestinationType.DiskFile;
                                DiskFileDestinationOptions diskOptions = new DiskFileDestinationOptions();
                                diskOptions.DiskFileName = filename + ".xls";;
                                exportOptions.ExportDestinationOptions = diskOptions;
                                ExcelFormatOptions XLOptions = new ExcelFormatOptions();
                                XLOptions.ExportPageBreaksForEachPage = true;
                                XLOptions.ExportPageHeadersAndFooters = ExportPageAreaKind.OnEachPage;                           
                                exportOptions.ExportFormatOptions = XLOptions;
                                rptDoc.Export(exportOptions);
    Please note the following details about our environment:
    <h5>Report Designers:</h5>CR Designer version:  xi Rel 2
    <h5>Developer environment</h5>Has the following installed:
    - Business Objects Enterprise XI Release 2
    - VS .Net  2008
    - Crystal reports Basic for Visual Studio 2008
    - Crystal Report 2008 Runtime SP3
    - Boxi .Net SDK
    - SAP BusinessObjects Enterprise XI 3.1 Client Tools sp3
    - .Net Version:  2.0
    <h5>Crystal Server environment:</h5>Two clustered  Business Objects Enterprise servers with the following installed & configured
    - Business Objects Enterprise XI Release 2
    - Crystal Reports XI Release 2
    - SAP BusinessObjects Enterprise XI 3.1 SP3
    - .Net Version:  2.0
    <h5>Web Servers:</h5>Two load balanced web servers with the following installed and configured
    - Business Objects Enterprise XI Release 2
    - Crystal Report 2008 Runtime SP3
    - Crystal Reports XI Release 2 .Net 2005 Server
    - SAP BusinessObjects Enterprise XI 3.1 SP3
    - .Net Version:  2.0

    Umm, the code you provided has nothing to do with Business Objects Enterprise...(?). So, I'm a bit confused by the mention of BOE and "The report is executed using CrystalDecisions.CrystalReports.Engine" in essentially one paragraph.
    Can you pls explain?
    - Ludek

  • Can I export in different formats at the same time?

    Most of my pictures are in different formats. When I choose ones of different formats and then try and export them at the same time, I have to choose what format to put them in(TIFF, JPEG, etc.) Is there an option to export each one in it's original format or do they all have to be exported in one format of my choosing?
    Maybe I just don't understand formats and how Aperture makes adjustments from Masters to Versions.
    Please help if you can.
    Thanks,
    Brian

    i do all the time. Select the images you want to export and start to export. Once the export begins, select a second set of images and start to export. You can watch the exports through Activity Monitor under Window Menu.

  • HT3775 I just made a movie in iMovie and exported in MP4 format, now it won't open, error message says quicktime can't open the file ***? Anyone?

    i just made a movie in iMovie and exported in MP4 format, now it won't open, error message says quicktime can't open the file ***? Anyone?

    I have the same problem. I'm using Mavericks OS and latest iMovie. Both downloaded last week. I save the movie into File (as directed) and  QuickTime
    will not open. I'm then directed to a page of formats which are supposed to be supported on which is .mp4. Any tips?

Maybe you are looking for

  • Installation on a B&W G3 with Stock 16 Meg Video

    This is one of those cases where when you boot off of the installation DVD you get the wonderful greyscale colors. I'm just wondering if there is any fix to this. I do know that if you install 10.3 and then install the 10.3.9 update, the driver is in

  • Exam Countdown timer

    Hi Experts! i just want to ask for your help regarding my timer. I've been working for an exam timer wherein the value of the time will come from a database. in my jsp, I've used hidden fields to retrive the data from the database but when i get the

  • Could not sign in

    imac with 10.6.8 installed just installed facetime 1.0.2(166) from apple store, I always got this message: " could not sign in. please check your network connection and try again " my network connection is ok! please help

  • Discover System with a database cluster environment?

    Hi All We are thinking of getting the Discovery System and are looking into using the SQL Server 2005 Enterprise addition to allow us to use the Discovery System beyond the 180 day evaluation version of SQL Server that comes with the system. Does any

  • How much to add non-iPhone additional line?

    I'm sorry if this question has been posed and answered before, but since the search function is temporarily not available, I can't search. As a new AT&T subscriber with iPhone and the $59 plan, what is the cost of the plan if I want to add another li