Can Sentinel RD reports be in CSV format instead of PDF

Hi,
I am working with Sentinel RD and generating custom reports using
iReport. I was wondering if I can generate a custom report where the
output is in CSV format instead of PDF and can be scheduled in the same
way as the PDF are.
What do I need to do to achieve this?
ankurrane
ankurrane's Profile: http://forums.novell.com/member.php?userid=92392
View this thread: http://forums.novell.com/showthread.php?t=428324

Here is how to output report results in CSV format in SLM 1.1 (or
later):
STEP 1: Go to the $ESEC_CONFIG_HOME directory on your SLM server (It
will be something like: /etc/opt/novell/sentinel_log_mgr/config).
STEP 2: Open the file
"obj-component.JasperReportingComponent.properties" for editing.
STEP 3: Specify the following fields/values in that properties file:
reporting.csv.enable=true
reporting.csv.email=true
reporting.csv.outputdir=/opt/mycsvreportresults
STEP 4: Save the file.
STEP 5: I *think* you have to restart the SLM server after making
changes to any of these properties.
Some things to take note of:
NOTE 1: You can specify any directory (that the novell user has
permission to write to) in the "reporting.csv.outputdir" setting. This
will cause a .csv file to be created in that directory whenever a report
is run.
NOTE 2: If you set the "reporting.csv.email" setting to true, the .csv
report results will be included with any report results that are
emailed.
NOTE 3: The CSV results will include all of the report information in
the the .csv... including the header information any output from any
subreports. That additional information may not always be desireable in
the CSV results, so if you find the format of the .csv to not be what
you need or too difficult to work with, you might want to consider
creating a new report where there results/output are more optimized for
.csv output (may without any header or subreport information).
NOTE 4: Regardless of whether csv output is enabled or not, the
standard PDFs results will always be generated.
NOTE 5: The CSV results are not accessible through the GUI, but instead
are accessible by looking in the directory you specify via the
"reporting.csv.outputdir" property ... or via any report result emails
if the "reporting.csv.email" property is set to true.
NOTE 6: Just FYI: That "reporting.pdf.outputdir" property that you will
also see in the "obj-component.JasperReportingComponent.properties" file
is if you want to have the PDF results to be placed in a directory on
the server. (PDF results will always be accessible via the GUI
regardless of this setting.)
bweiner12345
bweiner12345's Profile: http://forums.novell.com/member.php?userid=55576
View this thread: http://forums.novell.com/showthread.php?t=428324

Similar Messages

  • How to get Report Output in csv format

    Hi,
    How can i get report Output in csv format, can any one tell me the word used for output type to get output in csv format.
    i have used XLS output type but it opens in excel format.
    conc.addLayout(appCode,concReqCode,"en-US","US",XLS);
    Thanks
    Babu

    Hi Babu,
    Till now in xmlpublisher there is no method to create file in csv format ,you have to create Excel file and then save it in .csv format.Unless and until ur using BI Publisher in which some work around are possible.
    Thanks

  • How can I export the universe  to CSV format in Rational      (java)

    How can I export the universe to CSV format in Rational ,please give me one demo .thanks!!

    There's no direct access to an Universe from Java - Universes do have an SDK, but it's COM-based.
    If what you want is to retrieve data from the Universe, what you can do is create a Web Intelligence document reporting off that Universe, create a Query with the data you want from the Universe, then use the ReportEngine (REBean) SDK to retrieve the ResultSet from the Query - note that there's no CSV export option, so you'd have to walk through the ResultSet and write to an CSV yourself.
    Sincerely,
    Ted Ueda

  • Change codepage in OIM reports saved in CSV format (e.g. UTF8 - Win1251)

    Hello guys.
    I have OIM V.9.1 installed on WebLogic. For some reason my customer would like to have OIM reports saved in CSV format encoded with codepage differ from default UTF8 (actually desired codepage is Windows 1251 but it is doesn't matter). I think that there should be a way to change default codepage for OIM reports via OIM's settings.
    There is no any information on it in the documentation.
    Does anybody already met this problem? Any help would be highly appreciated.
    Regards,
    Ivan

    Hello guys.
    I have OIM V.9.1 installed on WebLogic. For some reason my customer would like to have OIM reports saved in CSV format encoded with codepage differ from default UTF8 (actually desired codepage is Windows 1251 but it is doesn't matter). I think that there should be a way to change default codepage for OIM reports via OIM's settings.
    There is no any information on it in the documentation.
    Does anybody already met this problem? Any help would be highly appreciated.
    Regards,
    Ivan

  • I am new to XI  Technology Can u explain me what is CSV format

    Hi all..
    I am new to XI can u expalin me what is CSV format
    Thanks & Regards,
    Pushparaju.B

    <b>CSV stands for Comma Separated Value.</b>
    The CSV File Format
    Each record is one line 
         A record separator may consist of a line feed or a carriage return and line feed pair     
         Fields may contain embedded line-breaks so a record may span more than one line.
    Fields are separated with commas.
          Example John,11000, sdn.sap.com,USA
    As you are new in XI world , following links might help you to understand it more expeditiously:
    <b>DOC to File(in CSV format) blog </b>
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters
    <b>File to File Scenario:</b>
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    Thanks,
    Pooja Pandey

  • How to get report in excel format instead of pdf from oracle forms.

    Hi,
    How to get report in excel format instead of pdf from oracle forms.
    Form & Report developer 10g
    report format .rdf

    create a report using report builder.
    call the report from form using the following procedure
    DECLARE
         RO_Report_ID REPORT_OBJECT;
         Str_Report_Server_Job VARCHAR2(100);
         Str_Job_ID VARCHAR2(100);
         Str_URL VARCHAR2(100);
         PL_ID PARAMLIST ;
    BEGIN
    PL_ID := GET_PARAMETER_LIST('TEMPDATA');
         IF NOT ID_NULL(PL_ID) THEN
    DESTROY_PARAMETER_LIST(PL_ID);
         END IF;
         PL_ID := CREATE_PARAMETER_LIST('TEMPDATA');
         RO_Report_ID := FIND_REPORT_OBJECT('RP2RRO');
         Add_Parameter(pl_id,'P_SUPCODE',TEXT_PARAMETER,:CONTROL.S_CODE);
    Add_Parameter(pl_id,'P_INVOICE_NO',TEXT_PARAMETER,:CONTROL.IN_NO);
    Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_FILENAME, 'INVOICE_REG_DETAILS.rep');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_COMM_MODE, SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_EXECUTION_MODE, BATCH);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_DESTYPE, FILE);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_DESFORMAT, 'SPREADSHEET');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_SERVER, 'rep_dbserver_frhome1');
         Str_Report_Server_Job := RUN_REPORT_OBJECT(RO_Report_ID, PL_ID);
         Str_Job_ID := SUBSTR(Str_Report_Server_Job, LENGTH('rep_dbserver_frhome1') + 2, LENGTH(Str_Report_Server_Job));
         Str_URL      := '/reports/rwservlet/getjobid' || Str_Job_ID || '?server=rep_dbserver_frhome1';
         WEB.SHOW_DOCUMENT(Str_URL, '_SELF');
         DESTROY_PARAMETER_LIST(PL_ID);
    END;

  • XML reports show in XML format instead of Defult output PDF in R12

    I am facing a problem in XML report in oracle R12 ,
    when I am running the report ,it through warning msg and output is coming in XML format instead of PDF .
    Please let me know the solution.
    Zulqarnain

    I am facing a problem in XML report in oracle R12 ,
    when I am running the report ,it through warning msg and output is coming in XML format instead of PDF .What is the warning message?
    Please let me know the solution.Please check the OPP log file for any errors. Also, please post the contents of the concurrent request log file here.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=XML+AND+Output+AND+PDF&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Concurrent Program Open in XML format Instead of PDF in R12

    Hi ,
    I register 1 concurrent program and set its output in "XML" also attach this CP with XML template , when i run CP it show warning but output show in XML format instead of PDF format which is define in XML Template .
    Below text is log file of CP
    When i run concurrent program from oracle r12
    Custom Application: Version : UNKNOWN
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XXSGHAPCPV module: SGH Payment Voucher Report
    Current system time is 18-SEP-2012 10:12:50
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_ORG_ID='88'
    P_VOUCHER_NUMBER='60000001'
    P_VOUCHER_NUMBER_TO='60000001'
    Forcing NLS_NUMERIC_CHARACTERS to: '.,' for XDO processing
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    AMERICAN_SAUDI ARABIA.AR8MSWIN1256
    Enter Password:
    REP-0004: Warning: Unable to open user preference file.
    Report Builder: Release 10.1.2.3.0 - Production on Tue Sep 18 10:12:51 2012
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    Output file size:
    1703
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 1218186 on node ERPPRDAS1 at 18-SEP-2012 10:12:53.
    Post-processing of request 1218186 failed at 18-SEP-2012 10:16:53 with the error message:
    The Output Post-processor is running but has not picked up this request.
    No further attempts will be made to post-process this request, and the request will be marked
    with Warning status.
    Setting the profile option Concurrent: OPP Response Timeout to a higher value may be necessary.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 18-SEP-2012 10:16:53
    Thanks ,
    Zulqarnain

    plz see
    R12: Request Logs Contain the Message "REP-0004: Warning: Unable to open user preference file" [ID 1120529.1]
    Concurrent Processing - Concurrent Reports Failing With Errors REP-0004,REP-0082 and REP-0104 [ID 844976.1]
    R12: Executing a Report fails with REP-0004: Warning: Unable to open user preference file. [ID 1303903.1]
    also
    - xml output is correct?
    - what type of execution method for cp?
    - when you run cp the template picked up for cp?

  • Show user entered date when ssrs report exported to csv format

    Hi All,
    How can I show date range parameter entered by user when ssrs report is exported to csv format.
    my csv output should look like this....
    Date : 01/01/2015 TO 01/31/2015 (user selected dates)
    ID,EmpFirstName,EmpLastName,Location
    1,Tom,Garry,NY
    2,John,Graham,NJ
    3,Ron,Lorrie,CA
    Thanks,
    RH
    sql

    Hi RH,
    You can add two textbox at the top outside the tablix and using expression to get the parameter value use have selected to display in the textbox as blew:
    TextBox1: =Parameters!Date.Value
    TextBox2: =Parameters!To.Value
    For Multiple value parameter you can use the expression like : =Join(Parameters!Date.Value,",")
    You can rename the two textbox' name in the properties as "Date" and "To"  then the two textboxs will display like belkow in the CSV report:
    Date                 TO
    01/01/2015      01/31/2015 
    ID   EmpFirstName    EmpLastName   Location
    1      Tom                  Garry                  NY
    2      John                 Graham               NJ
    3      Ron                   Lorrie                 CA
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Proxy error when downloading report (IR) in csv format

    I'm getting the error below when downloading IR report in csv format. I'm getting that whenever the records is more than 108,000. Is there a limit in records to download? Is there a resolution.
    I am using apex 4.1, EXCEL 2010.
    Thanks,
    Pinky

    Since it is a text file it should have no limits within reason..
    See if you can recreate issue on Oracle's hosted site..
    Simple test, build a standard report on a table that has 101,000 rows and try downloading and then build a IR report on same table..
    Thank you,
    Tony Miller
    Dallas, TX

  • How Can I open Report within the same window instead of separate Window

    Hi All,
    I want to open report in my MDI form instead of opening it into a separate Oracle Report Navigator(i.e. Window which shows the report). How to do that? When I click the Report from Menu it should open it within the MDI Form. Any suggestion or reply would be greatly appreciated.
    One more question is how can i open report with in a maximized state. Actaully, the report will be opened in the normal state. How to open in maximized state instead of normal state. Is there any property in reports to acheive this?
    Thanks in Advance.
    Regards
    Gopinath Kona

    hello,
    reports is a separate application that is called from forms and therefore is running outside the context of the forms MDI window.
    you can use the commandline parameter MAXIMIZE=YES to start the runtime in full-screen-mode.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • XML report output displays xml code instead of pdf

    Hi,
    My Release is R12.1.1, An xml report whose output is set as pdf. when running this report output is coming as xml code instead of pdf
    another xml report ouput is coming in word instead of pdf
    is there any additional settings required to display in pdf format
    eventhough i configured pasta.csg & ixlib.cfg files
    Thanks,
    Alig
    Edited by: user12257829 on Jun 2, 2010 11:41 PM
    Edited by: user12257829 on Jun 2, 2010 11:41 PM

    Hi,
    Helios
    Even i tried both MOS documents u have referenced, as both reports compeleting normally without any error
    one thing i want to know can application use the same pasta.cfg file for pdf and text format
    as i have a single pasta.cfg configured
    Thanks
    Alig
    Edited by: user12257829 on Jun 3, 2010 1:18 AM
    Edited by: user12257829 on Jun 3, 2010 1:18 AM

  • JasperReportIntegration tool - Report coming back as HTML instead of PDF

    Using:
    * Apex 4.1.1 (using EPG)
    * 11G SE
    * Apache FOP as print Server
    * Dietmar Aust's free tool on integrating JasperReports
    I've recently created a second APEX instance locally (from externally hosted instance) and copied the application (via application export) and parsing schema (using exp/imp). Everything works fine except when I try to print reports (for JasperReports) it comes up as garbled HTML instead of PDF.
    In my hosted instance it all works fine.
    Since the necessary packages to integrate with Jasper reports goes into the parsing schema for application, all necessary objects are imported as well during the exp/imp.
    The only thing different about the hosted and my local instance is that the hosted one is XE where as my local one is SE but I don't think this is a factor at all.
    The other difference is the hosted instance uses Apex Listener while mine doesn't. Again don't think this a factor as well.
    My print server is enabled and working and I can print tables as PDF reports.
    I am not sure if I need to enable something or missed a step needed so the reports come up as expected as is the case in hosted instance. Any hints or suggestions welcome.
    Cheers.

    Hi Dietmar, I couldn't do it as I couldn't find that line I needed to modify. The XLIB_HTTP package goes upto line 45 and those lines referred in that post goes upto 89,90.
    But then I was due to change from EPG to Web Server + Apex Listener (for other reasons) which in turn solved my issue anyway.
    create or replace PACKAGE "XLIB_HTTP"
    AS
    /*=========================================================================
      $Id: xlib_http.pks 21 2010-01-07 07:41:27Z dietmar.aust $
      Purpose  : Make http callouts
      License  : Copyright (c) 2010 Dietmar Aust (opal-consulting.de)
                 Licensed under a BSD style license (license.txt)
                 http://www.opal-consulting.de/pls/apex/f?p=20090928:14
      $LastChangedDate: 2010-01-07 08:41:27 +0100 (Thu, 07 Jan 2010) $
      $LastChangedBy: dietmar.aust $
    Date        Author           Comment
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    19.02.2007  D. Aust          initial creation
    07.08.2008  D. Aust          added check_get_request
                                  display_url_raw: pass all request headers
                                     to the client
    =========================================================================*/
       c_success   CONSTANT CHAR (1) := '1';
       c_fail      CONSTANT CHAR (1) := '0';
       PROCEDURE display_url_raw (
          p_url                       VARCHAR2,
          p_mime_type_override   IN   VARCHAR2 DEFAULT NULL,
          p_charset              IN   VARCHAR2 DEFAULT NULL
       PROCEDURE retrieve_blob_from_url (
          p_url               VARCHAR2,
          o_blob        OUT   BLOB,
          o_mime_type   OUT   VARCHAR2
       FUNCTION escape_form_data (s VARCHAR2)
          RETURN VARCHAR2;
       FUNCTION check_get_request (p_url VARCHAR2)
          RETURN CHAR;
    END;Edited by: Arc_x on 11-Sep-2012 21:17

  • Reports, HTML vs CSV formatting...

    Hi,
    I have a report that in its response has one field which includes many values, like "roles"...
    when the report is visible in the browser, it looks good when one adds a br-tag between the different roles, but this is not a good "look" for it when you press the "export to CSV".
    So my query is... is there some way to format the "output" differently in CSV vs HTML output for the same report?
    OIM 9.x
    Edited by: Dhurgan on Jan 14, 2011 3:20 PM

    As far as I know there is no way to do this within the OIM reporting framework.
    On the other hand it is not very hard to get the information and format it yourself but to get that approach user friendly you would have to create a custom menu item.
    Best regards
    /Martin

  • Report export in CSV format

    hi,
    I am using the report export feature of oracle APEX. IT is working fine except i m getting something like this (div tag start)div id="report_19777432813352373_catch""First Name"
    in the first column of the report and the report ending with (div tag end)/div..
    i just need "First Name".. Can anyone help me out?
    Thanks in advance
    Vishal
    Message was edited by:
    apex_learner

    Hi
    In the report attributes, under Layout and Pagination, set the Enable Partial Page Refresh to No.
    Regards
    Paul

Maybe you are looking for

  • Stock consumption or sale order issued data.

    Hai, We are preparing ABAP report, Could any tell me from which table can i get the  stock consumption data or  stock sold data. Apart from MSEG is there any other table. From MSLB, MSKA, MCHB i can get only the stock data but not the consumption Req

  • Sync problems with outlook 2007 calender

    I am new in this type of comms. BUT: I have a Palm Tungsten T5; have Palm Desktop 6.2.2 with the update for Windows7. I have a sync problem with outlook 2007 calender; contacts, ToDo, memos all ok. HotSynLog says: there are multi-day repeating record

  • Using '-' in query java

    hi, How using the symbol '-' in a java quey. I have an error : java.lang.StringIndexOutOfBoundsException: String index out of range: 58      at java.lang.String.charAt(Unknown Source)      at com.sunopsis.sql.SnpsQuery.scanHostVariable(SnpsQuery.java

  • Sales order for noraml and VC materials with BAPI_SLSTRANSACT_CREATEMULTI

    Hi all, I created a sales order in CRM with Zfuction module in which I used the bapi BAPI_SLSTRANSACT_CREATEMULTI for a configurable material. I dint hard coded any thing and passed the product data and partner data using import paramters. Now I am u

  • Is it possible to install my home folder on an external drive?

    I need to hand my MacBook in for repair, but I don't want any of my documents on it when it goes in to the repair shop. I have full Time Machine back-ups of the entire laptop, but is there any way I can install my home folder on an external drive so