Information broadcasting in CSV format. Unwanted Headers

Hi,
I have setup the Information Broadcaster to mail CSV formats of BEx Queries. It is working perfectly , however it also gives me the Query name and Date and Time Stamp when the Data was last updated. How can I get rid of these unwanted information.
e.g
Sales Query
Last Data Update:
04.08.2008 14:33:47
CustomerNo.     ProdGrp     ProdCode     AgentNo.     InvNo.     Inv/Cred     QtyOrd     QtyDsp     Nett     ListPr     Cost     Disc     InvDate
100000130     #     124143132     #     91000192     I     1     12     4.89     0.71     0.32     42.47     01.08.2008
100000130     #     25986606091     #     91000313     I     1     13     2.3     1.18     0.13     84.98     01.08.2008
100000130     #     8204469     #     91000193     I     1     11     11.05     1     0.14     0     01.08.2008
100000130     #     8868732     #     91000292     I     7     55     46.77     0.85     0.04     0     01.08.2008
Please help me out if anybody has faced and resolved this issue.
Thanks and Regards,
Shashank

In Bex under the Business Explorer / Tools, you should have a Distribute option to distribute workbooks.  This should open the web browser based Information Broadcasting inerface which allows you to send a wkbk immediately, or you can schedule the execution and distribution.
I believe with 3.5 SP15 there is an option to distribute as a csv file.  I believe the Note has you add an entry to a table that adds csv as an output option, but I think the technical functionality actually exists before SP15.

Similar Messages

  • Information Broadcasting - HTML Only formatting features when opened

    I run the query and broadcast the report as HTML in ZIP file.
    When I double click on the HTML, it opened up showing text texting codes.
    I cannot see the report at all.
    Has anyone faces the same problem?
    I am expecting a report on the HTML page.

    Hi Colin,
    Try to send directly without ZIP format. It may be because of the Zipping, you HTML report has been changed.
    Regards,
    Ravi Kanth

  • Information Broadcasting in SAP BI 7.3

    Hi All,
    We have a requirement to send a report to few recipients through Information Broadcasting in .CSV file. When I entered Info Broadcast setting through BEx analyzer, I am not able to find the option to send the file in .CSV format. I could only see MHTML, HTML and Links to current data. Could you please help me out in solving this?
    We are on SAP BI 7.3
    Thanks.

    Hello,
    Unfortunately it is only possible to broadcast with the output format CSV with a query or query view. That is by design.
    Best regards,
    Michael

  • Information Broadcasting in MS Excel Format to the users

    Hi All,
    I am trying to use information broadcasting and send reports in an MS Excel Format to the users.
    But could not find any options in SAP 3.5 to send Output in MSExcel  to the users..
    I read in the SAP Docs that we can send the Excel output in XML format and also WorkBooks...do we require any additional third party Softwares or uograde patches to achieve this?
    Please share your experiences on the Above in SAP 3.5.
    Thanks,
    Mike.

    In Bex under the Business Explorer / Tools, you should have a Distribute option to distribute workbooks.  This should open the web browser based Information Broadcasting inerface which allows you to send a wkbk immediately, or you can schedule the execution and distribution.
    I believe with 3.5 SP15 there is an option to distribute as a csv file.  I believe the Note has you add an entry to a table that adds csv as an output option, but I think the technical functionality actually exists before SP15.

  • Information Broadcasting direct email delivery of CSV files?

    Hello,
    Is there any way to configure Information Broadcasting in BW 3.5/Netweaver 04 such that email delivery of CSV files is possible?  I see that the pre-calculation server will generate workbooks.  Though, we really need delivery direct to CSV.
    Alternatively, has any one come up with a process of delivering Bex web links with a template that can generate CSV?  I saw this second option come up in a previous topic, but I am not sure how this would work.
    Regards,
    Joel

    Hello,
    Sorry I did not see your question until today.  It seems that you posted right before I went on vacation. ƒº  To answer your questions
    To Broadcast a Template for CSV extract only
    1)     Create a new template
    2)     Add a table
    3)     Set the new table as HIDDEN
    4)     Add Button or In-line command
    Info about executing Commands:
    http://help.sap.com/saphelp_nw04/helpdata/en/22/ff843b4df3da10e10000000a114084/content.htm
    Exporting Data:
    http://help.sap.com/saphelp_nw04/helpdata/en/33/f3843b0af3de0ee10000000a114084/content.htm
    Sample JavaScript:
    //Exports a table to an Excel file
         function exportToExcel()
              var suppress_repeating_texts = getIsSupressingRepeatingTexts(TABLE_NAME);
              exportToFile('XLS', suppress_repeating_texts);
         //Exports a table to a CSV file and force repeating texts on.
         function exportToCSV()
              var suppress_repeating_texts = ' ';
              exportToFile('CSV', suppress_repeating_texts);
         //Exports a table to a file
         function exportToFile(fileFormat, suppress_repeating_texts)
              SAPBWOpenURL(SAP_BW_URL_Get() +
                   '&CMD=EXPORT' +
                   '&FORMAT=' + fileFormat +
                   '&DATA_PROVIDER=DP1' +
                   '&SUPPRESS_REPETITION_TEXTS=' +
                   suppress_repeating_texts);
    I hope this helps.
    Best regards,
    Joel Blackthorne

  • Broadcast Bex queries in CSV format

    Hi,
    Is there a way to broadcast Bex queries in "CSV" format? Please do not confuse this with the "Export to CSV" option. I need to be able to set up the job periodically to send the reports in CSV format. Any ideas...
    Thanks

    Hi Tanu,
    You can do it by using RSCRM_BAPI tcode. Please see below thread for details.
    [Broadcasting Bex Query & Web template in CSV format possible???;
    Hope it helps you.
    Regards,
    Nikhil Joy

  • Data ONTAP PowerShell Toolkit - Collect SYSSTAT type of information in CSV format

    As part of performance monitoring and analysis collecting performance data is crucial. Even though historical data could be collected with other monitoring tools we are often using SYSSTAT command to collect such data during short period of time of specific activity to analyze performance of NetApp array. Raw output of SYSSTAT command is useful but in some cases it needs to be presented in more visual form such graphs and charts. Producing Comma-Separated-Values file from SYSSTAT command output is long and painful process.
    Working with customer on performance analysis made me to develop PowerShell script which can capture such data in CSV format, so that data can be processed much faster and presented to customer in nice graphical format.
    Script Get-NaSysStat.ps1 uses Get-NaPerfCounter and Get-NaPerfData commandlets to extract performance data of NetApp array and store them into CSV file. Script uses next parameters:
      NaIP       : IP address or Name of the Filer
      NaUS      : Filer User Name. Default Value - root
      NaPW     : Filer User's Password. Default Value - password.
      Output     : Display/<File Name or Path>. Default Value - Display
      Interval     : Interval in minutes between samples. Default Value - 5 min.
      Iterations  : Number of sample iterations.
                   Default Value - 0, for no limit.
                   Execution can be ended by pressing Ctrl-C
    Example of calling script and screen output:
    PS C:\@work\Scripts> .\Get-NaSysStat.ps1 -NaIP 10.58.97.11 -NaUS root -NaPW <password> -Output Perf.csv -Interval 1
    Name                                 Value
    Time                                  4/7/2011 4:37:03 PM
    system_model                    FAS6070
    ontap_version                     NetApp Release 8.0.1RC2 7-Mode: Thu Oct 21 01:27:45 PDT 2010
    serial_no                            ***
    system_id                          ***
    hostname                           Array-01
    nfs_ops                              0.00
    cifs_ops                             0.00
    http_ops                             0.00
    fcp_ops                              8.50
    iscsi_ops                           0.00
    read_ops                           0.00
    sys_read_latency               0.00
    write_ops                           8.50
    sys_write_latency               0.32
    total_ops                            8.50
    sys_avg_latency                 0.32
    net_data_recv                     2.20
    net_data_sent                    9.25
    disk_data_read                  169.61
    disk_data_written               584.21
    cpu_busy                          2.12
    avg_processor_busy          1.49
    total_processor_busy         5.98
    num_processors                4
    Screen output is valuable part but parameter -Output tells script to save data into CSV file. Here is an example of CSV files:
    Time, avg_processor_busy, cifs_ops, cpu_busy, disk_data_read, disk_data_written, fcp_ops, hostname, http_ops, iscsi_ops, net_data_recv, net_data_sent, nfs_ops, num_processors, ontap_version, read_ops, serial_no, sys_avg_latency, sys_read_latency, sys_write_latency, system_id, system_model, total_ops, total_processor_busy, write_ops,
    3/28/2011 5:32:25 PM, 3.17, 0.00, 17.30, 6773.59, 21667.06, 1031.74, BP-SAN-04, 0.00, 0.00, 17.41, 284.66, 0.00, 12, NetApp Release 8.0.1 7-Mode: Wed Jan  5 17:23:51 PST 2011, 558.10, 700000501660, 0.83, 0.89, 0.75, 1873760944, FAS6280, 1031.54, 37.98, 473.44,
    3/28/2011 5:33:26 PM, 2.07, 0.00, 10.88, 8511.15, 16221.77, 869.91, BP-SAN-04, 0.00, 0.00, 6.29, 91.75, 0.00, 12, NetApp Release 8.0.1 7-Mode: Wed Jan  5 17:23:51 PST 2011, 656.24, 700000501660, 0.80, 0.79, 0.84, 1873760944, FAS6280, 869.70, 24.89, 213.46,
    3/28/2011 5:34:27 PM, 0.83, 0.00, 3.59, 3311.89, 5268.20, 131.53, BP-SAN-04, 0.00, 0.00, 1.84, 9.72, 0.00, 12, NetApp Release 8.0.1 7-Mode: Wed Jan  5 17:23:51 PST 2011, 50.07, 700000501660, 0.81, 1.05, 0.65, 1873760944, FAS6280, 131.35, 10.00, 81.28,
    3/28/2011 5:35:28 PM, 1.66, 1.70, 10.61, 2518.90, 3812.95, 241.06, BP-SAN-04, 0.00, 0.00, 12.41, 25.53, 0.00, 12, NetApp Release 8.0.1 7-Mode: Wed Jan  5
    Performance data is exported into Microsoft Excel for further analysis and nice performance graphs created within minutes:
    Script is attached to this post.

    i can't start this script - i have error:================C:\ps\Get-NaSysStat.ps1:52 row:10 + $Filer = Connect-NaController $NaIP -Credential $Creds +          ~~~~~~~~~~~~~~~~~~~~ + CategoryInfo          : ObjectNotFound: (Connect-NaControllertring) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException================what can i do?

  • Send Query Results to Application server in CSV format

    HI All,
    I need to schedule a query on a regular basis and send the results to Apllication server in csv format(rows will be more than 65,000).
    I tried RSCRM_BAPI transaction but i think it has lot of restrictions like, cannot use texts, calculated keyfigures, etc. so cannot use this.
    cannot use Infospoke since there are calculated keyfigures in the query.
    Information Broadcasting is not setup in my system
    Tried WRITEQUERY but it only send the results to Spool, special handling is needed to move the data from spool to Appl. server.
    is there any other way i can achive this, is it even possible?
    Thanks,
    S.B.

    I dont know if this helps.
    1)You can save the file as a normal CSV file on your desktop.
    2) and Based on the ABAP code using ( OPEN DATASET and CLOSE DATASET  statements) You can put your file into the application server
    but i am not sure if you can use this methodilogy for an automated and continous process
    Regards
    satish

  • Schedule report results to be stored on a server in Excel or .CSV format

    Hi All,
    there is a requirement to schedule the report results to be saved in Excel or .CSV format and the file to be stored at a server location.
    Could anyone please advise how we can achieve this if its possible at all?
    Many thanks!

    This is possible using BEx Information Broadcasting.
    After Opening the Query in Query Designer, Click on Query -> Publish -> BEx Broadcaster.
    There is plenty of help on SCN Downloads / Articles on Information Broadcasting that will walk you step by step.
    Here are a few links:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/40811e9c-4edd-2a10-06bd-c41e475f607a
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/00172934-f3c1-2b10-728a-c42a0fc28c61
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/00d91245-1f5d-2a10-c795-8394960f56cc
    Just search in SCN for Information Broadcasting and you will get plenty of help.
    Good Luck.
    MP.

  • Problem in exporting report in CSV format

    Hi All,
    I am using Crystal Reports. Following are details about it:
    CR Developer
    Product 8.5.0.217
    *_Problem that I am facing:__*_
    I can create report in .rpt format, it is working fine here. But while trying to export this report in CSV format, it gives report that doesn't contain any information.
    Is it because I am missing something or it is a known issue?
    Thanks and Regards,
    Anand

    Hi,
    I too am facing the same problem.
    The report was made in 8.5. I have exported the report & opened it in Crystal report 12.
    I can export to PDF, RTF, DOC & Tab separated Test.
    However when I export this report in .csv (legacy mode) I just get the header & when I export it in .csv (Standard) I get a blanck .csv file.
    I have  checked 'Isolate Report/Page sections' and 'Isolate Group sections'. Still no data in the report.
    refreshed it too.
    I contains sub reports, but not in the page header & footer (I think) & it does not seem to have cross tabs & OLAP grids.
    Any help is appreciated.
    Links to Screenshots:
    Main Report:
    http://picasaweb.google.com/lh/photo/yM9sBexKt5jW9soqaMmHjw?feat=directlink
    One of the Sub-Report:
    http://picasaweb.google.com/lh/photo/0ofa5sABakvZ-nFZp-JSMw?feat=directlink

  • How can I export the report to Excel or CSV format in Rational(Java)?

    <p>Dear all,</p><p>Now I develop CR report integrate with Web application, I use Ratioanl(RAD) to develop. And I want to export the report to Excel/CSV format, but always failed.</p><p>If I force it export CSV file in the system, when I use MS office to open this CSV file, the file content is bad.</p><p>Could any one tell me how to achieve this?</p><p> Many thanks!</p><p>Steven</p>

    <p>CR4E is bundled with RAD 7...actually to be clear it is a version of CR4E Professional. Users of RAD 7 will also get a dev/test license of CR Server as well as number of additional features to support developing applications against their BusinessObjects Enterprise or Crystal Reports Server systems. For more information regarding the RAD 7 launch you can read the press release here:</p><p><strong><a href="http://biz.yahoo.com/bw/061205/20061205005363.html?.v=1">http://biz.yahoo.com/bw/061205/20061205005363.html?.v=1</a> </strong> </p><p>I am hoping to do a webinar in January highlighting a number of the new features available with the IBM Rational Application Developer integration.</p><p>As for RAD 6 support, unfortunately the CR4E toolkit does require Eclipse 3.2 support so it will not work with RAD 6. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) <br /><br /> <strong><a href="http://www.eclipseplugincentral.com/Web_Links-index-req-ratelink-lid-639.html">Rate this plugin @ Eclipse Plugin Central</a></strong>          </p>

  • FM -  gui_upload. Problems uploading CSV format file

    Hi experts,
    I am facing an issue here. I tried to upload a .csv format file using FM - gui_load, in the table LT_RAW all the information is all in one column and rest of the columns are empty.
    How can i get the information to its respective fields?
    below are my codes:
    CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                = pv_file
          READ_BY_LINE            = 'X'
          HAS_FIELD_SEPARATOR     = 'X'
          codepage                = '4110'
        IMPORTING
          filelength              = lv_filelength
        TABLES
          data_tab                = lt_raw
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          OTHERS                  = 17.
    I can only upload using .CSV format.

    Hi Suhas,
    below is the new code that i used. now the data is not filled in only one column,
    Instead it will fill up the max length of the field and continue the data in other field and fill up its max length of the field.
    " my declaration of lt_raw and ls_raw
    lt_raw            TYPE TABLE OF ZCTD_MIGCUSTOMER,
    ls_raw            like line of lt_raw,
    CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                = pv_file
          codepage                = '4110'
        IMPORTING
          filelength              = lv_filelength
        TABLES
          data_tab                = lt_raw
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          OTHERS                  = 17.

  • Saving a form in JSP as .CSV format

    Hi,
    I have created a JSP page that contains a textbox. i want to save that textbox value to the CSV FIle. .
    How can I save that information from the jsp page as a .csv format, and is there a way to save it straight into a .csv format?
    Thanks,
    subodh

    yes you can do it by using poi api which is downloadable at apache web site using the HSSF class u can insert a value from text field to .csv

  • Export  WebDynpro context node  to CSV format?

    I have successfully implemented exporting the context node to xml format then open through the Excel following the tutorial : Exporting Context Data into Excel Using the Web Dynpro Binary Cache.
    But now, I need to implement another version that export to CSV format, then open through Excel.
    I remembered I read a blog and some forum posts that mentioned about this solution, but I just could not locate where they are now through SDN search now.
    I will appreciate if someone can point me to those links again.
    Thanks.
    Kent

    Hi Kent,
    I am also developing the application wherein Table data needs to be exported to Excel.
    I am trying to download the WDExcelExport.zip from the foll. link
    https://wwwn.sdn.sap.com/irj/sdn/downloaditem?rid=/webcontent/uuid/bad3e990-0201-0010-3985-fa0936d901b4 [original link is broken]
    But I am getting the error
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    The exception was logged. Inform your system administrator..
    See the details for the exception ID in the log file
    Can you please send me the Sample Application WDExcelExport.zip. My mail id is  [email protected]
    Regards
    Nikhil Bansal

  • 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

Maybe you are looking for

  • Trying to install iTunes on Windows 7 but error message stops installation

    I tried installing iTunes 9.2.1 for Windows (64 bit) but after a few moments the installation stops and I receive a message saying "Could not access network location %APPDATA%\." I read an troubleshooting article that told me I should delete a Temp f

  • Volume level method

    i can't figure out what's wrong with my volumeLevel() method in this code, can anyone please show me what's wrong with it? thanks! class volumes      int currentVolume;      void volumeUp()           if(currentVolume == 5)           System.out.printl

  • How to choose iMessage or text message with the iOS8.2

    Why, now with iOS8.2, can't I choose whether to send a text message or an iMessage? In older versions, simply turning off iMessage in Settings would allow me to send text messages without use of data/wifi.  Now, 1) I cannot control when I hit "send"

  • My SDK doesn't implement Cipher, course of action

    Hi, all. First of all let me tell you that I've checked the forum for this topic. Found 44 threads when searching for "Cipher". I've pretty clear that due to restrictions from the U.S. Goverment, the Sun JC kit doesn't implement the Cipher class. Tha

  • [JS CS5] ScriptUI: changing position of cursor in EditText control

    Is there a way to change the position of the cursor in an EditText control? I've played around with the textselection property, but with no luck in getting the cursor between the right characters.