Create Report and Export it ?

Hi,
I just want to know if it's possible to export created Report on the OEM 10.2.0.2.
In fact, I created some new report, and i would to use them on some other server !
Thx.

Hi, have you found a solution for this, I am searching for this as well.
Thx.

Similar Messages

  • Reporting and exporting to Excel in SharePoint Online

    Hi
    I've developed a SharePoint site to replace a legacy Access database that dealt with consumer complaints and queries. In the Access database I'd developed a feature that allowed users to filter the complaints by a number of criteria and export them to Excel
    and I'm trying to do the same in SharePoint.
    If it were on-premises SharePoint I'd just create a parameterised SSRS report which would solve all my problems. However being SharePoint online, this is not an option. I'd like the users to be able to select complaints from any date range, for any category
    of complaint and for any product supplier (plus a few other criteria). The idea is that they want to be able to then send the filtered data to individual suppliers. Doing this out of the box with views throws up several problems. The main one is that any export
    to Excel of a view exports the entire set of data, meaning that users themselves would need to create a new view for every export they wished to perform, which is not practical.
    My question is: what is the best way in SharePoint online to export a filtered subset of a list to Excel?
    I can use SharePoint designer, but not C# in order to achieve the goal. We also have SharePoint Online Plan 2 if that makes it easier.
    Thanks in advance,
    Duncan

    Hi Duncan,
    Well its easy to Reporting and exporting to Excel in SharePoint Online,
    See the Youtube link below and other links for more descriptions.
    Office 365: Synchronize Excel with SharePoint Online
    Reporting and exporting to Excel in SharePoint Online
    Thanks
    Indul Hassan (www.indulhassan.com)

  • The best practice for creating reports and dashboard

    Hello guys
    I am trying to put together a list of best practice on how to create reports and dashboards using OBIEE presentation service. I know a lot of those dos and donts are just corporate words that don't apply consistantly in real world environment, but still I'd like to know if Oracle has any officially defined best practice or not.
    the only best practice I can think of when it comes to building reports and dashboards is:
    Each subject area should contain only one star schema that holds data for a specific business information
    Is there anything else?
    Please advice
    Thanks

    Read this book to understand what a Dashboard is, what it should do and look like to be used by the end users. Very enlightentning.
    Information Dashboard Design: The Effective Visual Communication of Data by Stephen Few (There are a couple of other books by Stephen and although I haven't read them yet, I anticipate them to be equally helpful.
    This book was also helpful to me:
    http://www.amazon.com/Performance-Dashboards-Measuring-Monitoring-Managing/dp/0471724173
    I also found this book helpful in Best Practices...
    http://www.biconsultinggroup.com/knowledgebase.asp?CategoryID=337

  • Scheduling a webi report and export the result in PDF on local disk

    I'm working with the new SDK to schedule a report and export its result on my local c:\ hard disk drive. My code give no errors at run but I do not find the file on my root.
    The Instance counter of the report increase each time, so there is a refresh.
    Is something wrong in the following lines? I just follow the examples give in the documentation for scheduling.
    Thanks in advance !
    Here is my code :
                   Destinations oDestinations = Destinations.Factory.newInstance();
                   Destination[] oDestination = new Destination[1];
                   oDestination[0] = Destination.Factory.newInstance();
                   oDestination[0].setName("CrystalEnterprise.DiskUnmanaged");
                   DiskUnmanagedScheduleOptions diskOptions = DiskUnmanagedScheduleOptions.Factory.newInstance();
                   String[] destinationFile = new String[1];
                   destinationFile[0] = "c:\\" + report_name + ".pdf";
                   DestinationFiles destinationFiles = DestinationFiles.Factory.newInstance();
                   destinationFiles.setDestinationFileArray(destinationFile);
                   diskOptions.setDestinationFiles(destinationFiles);
                   oDestination[0].setDestinationScheduleOptions(diskOptions);
                   oDestinations.setDestinationArray(oDestination);
                   System.out.println("Getting report...");
                   ResponseHolder respons = this.platform.get("path://InfoObjects/<path to report>/" + report_name, null);
                   InfoObjects reports = respons.getInfoObjects();
                   if (reports == null)
                        return;
                   Webi myReport = (Webi)reports.getInfoObjectArray()[0];
                   System.out.println("Getting scheduling info...");
                   SchedulingInfo schedulingInfo = myReport.getSchedulingInfo();
                   boolean newSchedulingInfo = false;
                   if (schedulingInfo == null)
                        schedulingInfo = SchedulingInfo.Factory.newInstance();
                        newSchedulingInfo = true;
                   System.out.println("Setting scheduling info...");
                   schedulingInfo.setRightNow(Boolean.TRUE);
                   schedulingInfo.setScheduleType(ScheduleTypeEnum.ONCE);
                   schedulingInfo.setDestinations(oDestinations);
                   WebiProcessingInfo webiProcessingInfo = myReport.getWebiProcessingInfo();
                   if(webiProcessingInfo == null) {
                        webiProcessingInfo = WebiProcessingInfo.Factory.newInstance();
                   WebiFormatOptions webiReportFormatOptions = webiProcessingInfo.getWebiFormatOptions();
                   if(webiReportFormatOptions == null)
                        webiReportFormatOptions = WebiFormatOptions.Factory.newInstance();
                   System.out.println("Setting Format...");
                   webiReportFormatOptions.setFormat(WebiFormatEnum.PDF);
                   webiProcessingInfo.setWebiFormatOptions(webiReportFormatOptions);
                   myReport.setWebiProcessingInfo(webiProcessingInfo);
                   if (newSchedulingInfo)
                        myReport.setSchedulingInfo(schedulingInfo);
                   System.out.println("Schedule...");
                   this.platform.schedule(reports);
                   System.out.println("Schedule done...");

    Hi Jerome,
    I have gon ethrough your code again and there we are missing the destination plugin.
    We have to query the info store to get the disk unmanaged plugin.
    Below is the code
    IDestinationPlugin destPlugin = null; //Destination plugin returned by InfoStore Query
            IDiskUnmanagedOptions diskUnmanagedOptions = null; //Object returned by the getSchedulingOptions() method
            List listDestination = null; //List object to hold destination file location
            IDestination destination = null; //Destination Interface
            //retrieve the Scheduling Options and cast it as IDiskUnmanagedOptions
            //This interface is the one which allows us to add the file location
            //for the scheduling
              for(int i = 0; i< oInfoObjects.getResultSize();i++)
               oInfoObject = (IInfoObject) oInfoObjects.get(i);
               destPlugin = (IDestinationPlugin)iStore.query( "SELECT * from CI_SYSTEMOBJECTS WHERE SI_PARENTID=29 and SI_NAME='CrystalEnterprise.DiskUnmanaged'").get(0);
              diskUnmanagedOptions = (IDiskUnmanagedOptions) destPlugin.getScheduleOptions();
            listDestination = diskUnmanagedOptions.getDestinationFiles();
              String dest = "c:\\";
            listDestination.add (dest + oInfoObject.getTitle()+".pdf");
              schedInfo = oInfoObject.getSchedulingInfo();
            schedInfo.setRightNow(true);
            schedInfo.setType(CeScheduleType.ONCE);
            //retrieve the IDestination interface from the SchedulingInfo object
            //use the setFromPlugin() to apply the changes we made to the
            //IDestinationPlugin object returned from the IStore
            destination = schedInfo.getDestination();
            destination.setFromPlugin(destPlugin);
              iStore.schedule(oInfoObjects);
    Regards,
    Prithvi

  • Can you create report and schedule in EVDRE

    Hi,
    I was asked by someone that if it is possible to create report and schedule in one single worksheet?  As you set report/schedule in workbook options for the file my assumption was its not possible. Is there any work around?
    Also i was asked about mandate in evsnd. I havent come across that either. what is it?

    Hi,
    Yes! You can create report and schedule in single work sheet. If you insert 2 different evdre's , one for report and other for schedule then use [Get only range|http://help.sap.com/saphelp_bpc75_nw/helpdata/en/47/b9a7ccae664edb9034c3579ebec486/content.htm] for report area.
    Or using a single evdre also you can acheive this by selecting part of range not to send.
    hope it works...
    regards,
    Raju

  • Oracle BI Suite EE 10g R3: Create Reports and Dashboards Self Study CD

    Hi All,
    Has anyone used Oracle BI Suite EE 10g R3: Create Reports and Dashboards self study CD? Any comments...
    Thanks,
    RK

    Havent used it, but I guess it will be the same as: http://www.oracle.com/technology/obe/obe_bi/bi_ee_1013/index.html
    and that one is ok.. to learn some basis things!

  • How to create reports and infosets in E recruiting

    Hi we are planning to create reports and infosets in E recruiting module Though I am not a developer I need to write functional designs for creating reports and Infosets.For the same I need to know what should be our approach and what all things we should keep in mind.and how creating reports and infosets is different from the ones in SAP  R/3.
    Thanks and best regards
    Rajeev

    I am sorry but your question does not seem to make much sense.
    Can you please rephrase your question?

  • Reports and exporting

    Is there any place I can see examples of CF8 reports? Also,
    if I create a report in CF8, from what I've read, I can click on a
    button to export it to PDF to save/print. Is there an example of
    this? Also, is it easy to create a report and the ability to
    export?
    Thanks,
    Nate

    Hi Nate,
    You can find some examples
    here
    Navigate to, Getting Started with CFML -> Tags ->
    Alphabetical List of Tags -> cfreport

  • Creating Report and connecting to database

    Hi I am trying to create a report using Crystal Reports and VB.net, However when I use the database expert to connect to the database I get
    the error code 0xbe9, cannot open the database.
    It sometimes work and sometimes do not.
    Please help
    Regards
    Navin

    Hi Navin
    1) What version of CR - please be precise. If this is a stand-alone designer go to "Help | ABout...". If this is a CR bundle for VS, quote the version of crpe32.dll.
    2) What version of .NET?
    3) What database?
    4) How are you connecting to the database?
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow me on Twitter

  • Show Repeated key values in Reports and Export Into Excel

    Hi Experts,
    Currently I am working on the BW3.5 version. Our client requirement to display the repeated key value in web and export same into excel. I have followed the steps in web template which mentioned below to achieve the requirement.
    1) In my web template, add the following line to the Template Properties object tag (the tag at the very top of the web template in HTML mode):<param name="SUPPRESS_REPETITION_TEXTS" value=""/>
    After the change web template change, Myself execute the report in web, Its fine web. But I export into excel, again the key values are suppressed. So I have followed the steps in query. Then its fine. I mean, I can export into excel with repeated key values.
    2) In my query, in Properties and on the Display tab, unchecked "Hide Repeated Key Values".
    But do we have any other option without changing query properties to achieve the requirement.. I am fine with the web template change("SUPPRESS_REPETITION_TEXTS"). But I do not want to change the query properties.
    Please help me to fix the issue. Thanks in advance.
    Thanks,
    RR

    Hi Experts,
    I have come across one of the suggestion in the below location. Could you plz help me to implement it.
    http://www.sapfans.com/forums/viewtopic.php?f=16&t=118185
    Suggestion:
    You can do exactly what you want, but it will take either a button changing the properties of the web item or a javascript function added to the context menu getting the properties of the table item and changing it to "X" or "". These are just two examples, there are other ways to do this. This is the actual code that sets the suppression for the repeated texts. Hope this helps.
    SAP_BW_URL item=âu20ACu2122TABLE_1âu20ACu2122 SUPPRESS_REPETITION_TEXTS=âu20ACu2122Xâu20ACu2122
    Thanks,
    RR

  • How to create Reports and Forms using JSP

    Hi,
    How to create reports using JSP. And how many types of reports can be created using JSP.Can anyone explain with example please.
    Thanks,
    Vijayalakshmi.M

    Here is some code that creates xml for any SQL that returns a ResultSet. Note this uses my default out-of-the-box XML template, but you can quickly create and use your own templates to generate xml to look anyway you desire.
    FormattedDataSet fds=FormattedDataSet.createInstance();
    Map miscData=new HashMap();
    map.put("rootElement", "musicgroups");
    String xml=fds.getFormattedDataSet("select * from groups", miscData, "xml1");
    String xml has the value:
    <musicgroups>
    <row rowID='1'>
      <group_id>1</group_id>
      <group_name>Rolling Stones</group_name>
      <type>Rock</type>
    </row>
    <row rowID='2'>
      <group_id>2</group_id>
      <group_name>Beatles</group_name>
      <type>Rock</type>
    </row>
    <row rowID='3'>
      <group_id>3</group_id>
      <group_name>Led Zepplin</group_name>
      <type>Rock</type>
    </row>
    </musicgroups>steve -
    http://www.fdsapi.com - The easiest way to generate dynamic HTML and XML
    http://www.jamonapi.com - A performance tuning and scalability measuring API

  • Best way to expand a report and export it to PDF?

    Hi, we have created an Excel worksheet with several Power View reports. Some of the reports contain detailed information, such as a table of risks for a project. The stakeholders are quite happy with the interactive feature of Power View, as they can use
    a filter to select a project and view its risks. Also it is very easy to add additional columns in the future (compared to traditional reporting solutions like SSRS that require developers help just to add some columns). However, sometimes the
    stakeholders also need a static pdf output, as some stakeholders do not have Excel 2013, and they may work offline (do not have access to the SharePoint version of Power View either).
    In this static version, the projects must be expanded, so that the pdf contains information of all projects, not just the currently selected one by the filter. Ideeally, if there're 10 projects, each contains 3 sheets, then each sheet will be repeated
    for every project in the pdf, so there will be 30 pages in the output. But Excel's built-in print to pdf feature doesn't seem to support this scenario. In addition, some projects have a lot of risks, and in Power View, a scroll bar is displayed.
    When exporting to pdf, the scroll bar is not expanded. Thus the pdf only displays part of the risks which are currently visible on the screen.
    Is there a way to overcome those limitations, while keep most benifits of self servicing report? We don't mind to look into third party solutions, if the price is reasonable and the solution works nicely with Power BI. Thanks for any thought.
    Shining Oh Blue Star

    This is a bad thing to do with JPEGs. You're better off just reducing the 'q' if you want a smaller/faster/lower resolution image. That way you're throwing away resolution intelligently. Using scaling you're throwing resolution away unintelligently. I was on a project where 40,000 images were scaled when they should have been low-q'd. Don't do it.

  • Submit report and export to memory

    Hi
    I am using this code to submit report
    submit ZM005REP
    WITH S_BLEND IN R2
    WITH S_GROUP IN R3
    WITH S_WERKS IN r1
    exporting list to memory and return.
    I am using LIST_FROM_MEMORY to read the list.
    I want to further use the values from this list for calculations , but when I saw the list its just an array of strings.
    I want to read the opening bal field which is returned in this list.
    Any advice on this ?
    Thanks,
    Shital

    Hi,
    DATA  BEGIN OF itab_list OCCURS 0.
            INCLUDE STRUCTURE abaplist.
    DATA  END OF itab_list.
    DATA: BEGIN OF vlist OCCURS 0,
            filler1(01)   TYPE c,
            field1(06)    TYPE c,
            filler(08)    TYPE c,
            field2(10)    TYPE c,
            filler3(01)   TYPE c,
            field3(10)    TYPE c,
            filler4(01)   TYPE c,
            field4(3)     TYPE c,
            filler5(02)   TYPE c,
            field5(15)    TYPE c,
            filler6(02)   TYPE c,
            field6(30)    TYPE c,
            filler7(43)   TYPE c,
            field7(10)    TYPE c,
          END OF vlist.
    SUBMIT zreport EXPORTING LIST TO MEMORY.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject = itab_list
      EXCEPTIONS
        not_found  = 4
        OTHERS     = 8.
    CALL FUNCTION 'LIST_TO_ASCI'
      EXPORTING
        list_index         = -1
      TABLES
        listasci           = vlist
        listobject         = itab_list
      EXCEPTIONS
        empty_list         = 1
        list_index_invalid = 2
        OTHERS             = 3.
    Then you can use the ITAB_LIST for caliculation which is having all the values.
    Thanks
    Sudheer

  • Create file, and export it to Network drive?

    Ok. I have said this a few times - I am a java developer, and I am not that great at writing procedures, or function, but I try. Here is my situation. I would like a procedure that will query a table, and output this data into a file based on the queries. So for example. I would like to output something like this:
    Report Name: Date:
    Total Number of Proposals Missing PSR: 247
    Proposals missing PSR pending credit check: 147
    proposal id      prospect id   psr/document_number   credit check  description
    ========         ========      ================      ============= =============
    818356           434345                              fail          credit check failed
    634466           134556                              fail          credit check failed
    etc.....
    Proposals missing PSR but credit check passed: 46
    proposal id      prospect id   psr/document_number   credit check  description
    ========         ========      ================      ============= =============
    345345            345453                           pass          credit check passed
                                                                       but missing psr
    345653            864564                           pass          credit check failed
                                                                       but missing psr
    Proposals update with missing psr/document_number:                                     26
    proposal id      prospect id   psr/document_number   credit check  description
    ========         ========      ================      ============= =============
    778978            456473       345366                pass          proposal id [778978]
                                                                       updated with psr [345366]
    944564            457756       64332                 pass          proposal id [944564]
                                                                       updated with psr [345366]Now I would like to put this data in a file.
    Once I get the file I would like to put it out on the network drive.
    Now I have done this with java, but I think there is a way to do it in oracle.
    I found this code
    create or replace
    PROCEDURE PR_OUTPUT_TOFILE IS
               file_handle UTL_FILE.FILE_TYPE; -- file handle of OS flat file
               prop_id  NUMBER; 
               c1 NUMBER(9); -- C1 retrieved from testtab table
               retrieved_buffer VARCHAR2(100); -- Line retrieved from flat file
             BEGIN
               -- Open file to write into  and get its file_handle
               file_handle :=
                 UTL_FILE.FOPEN('/tmp','myTestfile.txt','W');
               -- Write a line of text out to the file.
               UTL_FILE.PUT_LINE(file_handle, 'this is line 1 as a test');
               -- Select the c1 from the sat_proposal table
              SELECT c1 INTO prop_id FROM pon_user.sat_proposal
                  WHERE proposal_id > 838300 and proposal_id < 840000;  
               -- Using PUTF write text with the col1 argument out to the file.     
               UTL_FILE.PUTF (file_handle,
                  'This is the c1 %s.\n', prop_id);
               -- Close the file.
               UTL_FILE.FCLOSE(file_handle);
            EXCEPTION
               WHEN NO_DATA_FOUND THEN
                  DBMS_OUTPUT.PUT_LINE('no_data_found');
                  UTL_FILE.FCLOSE(file_handle);
               WHEN UTL_FILE.INVALID_PATH THEN
                  DBMS_OUTPUT.PUT_LINE('UTL_FILE.INVALID_PATH');
                  UTL_FILE.FCLOSE(file_handle);        
               WHEN UTL_FILE.WRITE_ERROR THEN
                  DBMS_OUTPUT.PUT_LINE('UTL_FILE.WRITE_ERROR');
                  UTL_FILE.FCLOSE(file_handle);
               WHEN OTHERS THEN
                  DBMS_OUTPUT.PUT_LINE('other stuff');
                  UTL_FILE.FCLOSE(file_handle);
    END PR_OUTPUT_TOFILE;and it puts a file out their on the oracle server in the /tmp directory that I am running from. Is there a way to get a network connection and upload this file to the mapped drive?
    you know like \\nvlplace\SAT\Reports\etc
    orozcom

    orozcom,
    Are you running on a unix/linux server or a windows server?
    If you are running on a Linux or unix server, then I would look at SAMBA mapping and mounting the SAMBA drive to a mount point and then you can properly reference it.
    If you are running on Windows, you will need to go to underlying service in the services manager and change the running service from the system account to the Oracle NT account that has network privileges. Restart the service and then you can reference network drives from the database.
    Take caution and read your documentation, review security concerns, before changing the Oracle background service. I have done it before, but I do not know if it is supported of hand.
    Thanks,
    Bryan

  • How to create report and print able pages in 10.1.3.1 ?

    hi
    thank you for reading my post
    how i can create a print able page in jdeveloper ?
    indeed i need to make some reports in my web application , then users should be able to print those files.
    does any one has some experience with report generation and Jdeveloper ?
    any tutorial / tip or sample could be very usefull.
    thanks

    PDF, Excel, HTML reports may be generated in JDeveloper by:
    1. Integrating JasperReports in JDeveloper.
    JasperReports and Jdeveloper
    http://technology.amis.nl/blog/index.php?p=346
    http://jasperreports.sourceforge.net/
    2. Integrating XML Publisher in JDeveloper.
    Re: Oracle's XML Publisher in JDeveloper and XSQL Servlet
    3. PDF Reports may be generated with XSQL.
    http://technology.amis.nl/blog/?p=1182

Maybe you are looking for

  • What's difference between JPanel.remove(); and JPanel = null

    nice day, how can remove JPanel (including its JComponents), safe way, can you explain the difference between JPanel.remove () and JPanel = null, 1/ because if JPanel does not contain any static JComponents 2/ or any reference to static objects, then

  • Where can I get a replacement sim card for a sch 1515 v ?

    I have a preowned sch 1515 v nexus that I want to activate on my account to replace a moto x that has a cracked screen. It does not have a sim card. can I get a replacement sim card and what size ? or can it be activated without one and work?

  • Variable NOT Found in Class. I'm Confused!

    Variable "no" not found in class. I don't understand. Also, this code is really a mess. If a User enters an integer, then another and another, it's suppose to count the number of integers and how many times each was chosen. Example 1.4.4.5.7.7.7.8. I

  • Certain Equipment for Podcast

    Hey all, just wondering if any of you could suggest a basic pre amp or mixer to purchase for starting out podcasting. I know nothing about mixers or any of that stuff. I basically just want to hook 2 mics up and run that somehow to my Sony HDR FX1 ca

  • Re: Is it possible to accessing regular Thumbdrive...

    Hi All, Is it possible to access regular thumbdrive from Nokia HP just as it is acccessing a memory card? What happens when a regular USB thumbdrive is attached to a N96 using a convertor cable? Have anyone tried this before? Thanks a lot in advance.