Output of Reports

We need the output of reports 6i to be converted to EXCEL. Can anyone help us out in this?

Oh.. i thought you will hit here at last. But finding the path of the EXE every time in the client PC is not a suitable solution. So we cant hardcode the EXE path also.
But even here, we can handle in 2 ways.
1) Putting the EXE in the PATH variable of the SYSTEM
2) Finding the EXE path by reading the REGSITRY of the client PC.
But our current standards doesnt allows us to take either of this. Because we arent allowed to use HOST commands from the front end.
Anything else we can do to achieve apart from what i have said before
Many thanks for your participation and prompt replies.
Guru

Similar Messages

  • How to change default output XMLP report  to rtf/excel !

    I used xmlp 5.6.2
    The default output for report is pdf file.
    Now i want to change default output to rtf or excel file
    Please ! help me !

    Hi Brightsea,
    We customized the code in FNDRSRUN.fmb, But we are not able to get the output in RTF format.
    Our requirement is to display the report output in .rtf or .xls(Not required to defaultly as .rtf or .xls).
    we are getting the following error.
    "The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    Invalid at the top level of the document. Error processing resource 'http://galaxian.bluestar.cvg0:8000/OA_CGI/FNDWRR.exe?t...
    {\rtf1\ansi\deff0"
    ^
    Regards,
    suresh.

  • How to bring output of report on smartform

    Hi experts,
                      I want to display output of one std report on the smartform. Output of the Z report is using large no. of write statements. I want to create one smartform which displays output same as the output of report.
    Is it possible to directly bring output of report on smartform??
    Please give me solution
    Thanks
    Sameer
    Edited by: sameer dhuke on Mar 17, 2008 6:53 AM

    Hi,
    To The best of my knowledge it is not possible directly.
    You have to design the smartform with all the fields in the report.
    And u have create the driver program for the Smartform or u can use the report as a driver program itself.
    Then Call the smartform using FM SSF_FUNCTION_MODULE_NAME to call the smartform.
    Regards
    Sandipan

  • Page breaks appear in the spool output of report when run in the background

    Hi All,
    Report is using fm 'REUSE_ALV_GRID_DISPLAY' to display the report. parameters passed to this fm for display are :it_fieldcat,is_layout,it_events,t_outtab.
    Page breaks appear in the spool output when report is run in the background.These page breaks needs to be removed. When executed in the background, the excel extract should be the same as if pulling directly from the report itself.
    How to remove the page breaks in background?
    Thanks & Regards,
    Abhishek Singh

    Hi
    You can use the below code , which the reprt run in background. If you run the report in background thenyou need to use  'REUSE_ALV_LIST_DISPLAY'
    if sy-batch = ' '.
    call 'REUSE_ALV_GRID_DISPLAY'.
    else.
    call 'REUSE_ALV_LIST_DISPLAY'.
    endif.
    if you are using OO alv then write this code..
    CALL METHOD cl_gui_alv_grid=>offline
    RECEIVING e_offline = off.
    IF off IS INITIAL.
    CREATE OBJECT g_custom_container
    EXPORTING container_name = g_container.
    ENDIF.
    Regards

  • Output of report to control file

    Hi all,
    I have to show my report output into 2 formats one is csv format and another is ctl file.
    For this I am using FND_SUBMIT.SET_REQUEST_SET in after report trigger of my report.
    For first output type I am submitting XML program to get csv output.
    After this my second progrm output type has to be control file, in this control file I have to show the Total sum of amount which is generated in first program that is csv format. How can I achieve this?
    How can I get output of report in control file?
    Could you help me in this?
    Thanks in advance

    You may have an additional layout for the .ctl file. That is a new set of frames and fields that gives you the .ctl file, without querrying again.
    As for the after report trigger, it would be best not to use it. It is obsoleted.

  • How to define the datafile output_Name when output a report as spreatsheet

    Hi,
    in 10gR2 env. with AS 10 g / Reports work with RWSERVLET
    i do output a Report as a SPREADSHEET, that works fine,
    but
    to save this file there is a file_name like 'getjobid1234.xls'
    I tried to work with the report - title with boilerplate B_OR$REPORT_TITLE placed in margin ,
    but it doesn't work, no change in output_file_name
    and : how to change the B_OR$REPORT_TITLE dynamic while runtime ?
    any Help ?
    Norbert

    i use
    Desformat= SPREADSHEET
    Destype= CACHE
    web.show_document(/reports/rwservlet/getjobid<jobid>?server=ReportServer,_blank);
    with a 'name' as getjobid<jobid>
    desname doesn't work in CACHE - Mode ?
    with
    Desformat= SPREADSHEET
    Destype= FILE
    Desname= my_variable_report_name.xls
    there is the file my_variable_report_namet.xls saved on host-file-system
    ok, but can I call this with my_variable_report_name from cache without to save it everytime on server before ?

  • For output display report is final_internal table or structure in wd ABAP?

    Hi all,
    for output display report is final_internal table or structure in wd ABAP?
    in wd java output display report -.> CALLING rfc and that RFC OUTPUT table
    finally in internal table is assigned to STRUCTURE .Same procdure?
    Thanks,
    RAMA

    Dear Madhu,
    thanks for guidence!
    its showing popup tht this BADI ( ME_CHANGE_OUTTAB_CUS ) is only use for "SAP Internal  use".
    Regards,
    Praphull

  • Pacifictime format PST required in the output of report

    I want to display the pacific time format i.e. PST in the output of Report.
    Can you please let me know.....if any function module or else....
    I am using the followin lines of code but it was not showing correct time...please correct me if I am wrong.
    REPORT  ZTIMEZONE.
    DATA: time_stamp type timestamp,
          dat TYPE d,
          tim TYPE t,
          tz  TYPE ttzz-tzone.
    Data : text(4) type c,
           text1(4) type c,
           text2(4) type c,
           text3(20) type c.
    data : temp(15) type c.
    *tz = 'BRAZIL'.
    tz = 'PST'.
    dat = sy-datum.
    tim = sy-UZEIT.
    CONVERT DATE dat TIME tim
            INTO TIME STAMP time_stamp TIME ZONE tz.
    WRITE: / time_stamp.
    temp = time_stamp.
    concatenate temp8(2) ':' temp10(2) ':' temp+12(2) into text3.
    write : / text3.

    It considers your time as the GST and than calculates the time for you as per the PST's rule.
    Try like this:
    DATA: time_stamp type timestamp,
    dat TYPE d,
    tim TYPE t,
    tz TYPE ttzz-tzone.
    tz = 'PST'.
    * Get the time in the time stamp
    get time stamp field time_Stamp.
    CONVERT TIME STAMP time_stamp TIME ZONE tz
            INTO DATE dat TIME tim.
    WRITE: /(10) dat, (8) tim.
    Regards,
    Naimesh Patel

  • Comma separated output using report builder

    Hi Experts,
    I am working with EBS 11.5.10, database 9i, and report builder 6i. I have a XML Publisher report, with output type EXCEL, which is working fine. But if i get huge data like 1million, 2million, it's not able accommodate the output in EXCEL. Since it's EXCEL 2003, it can't handle data more than it's capacity(i think 60,000 rows).
    So we thought, if we can generate the output in CSV file with comma separte, then we can open the file in EXCEL 2007. Could somebody help me how to generate the CSV output using report builder 6i.
    or is there any work around to our problem, kindly help me, it's urgent.

    Hi,
    Not sure if report builder can be made to generate csv output.
    But you can create a PLSQL Report. Just use the query of Report Builder and write a Plsql procedure based on this query
    -Idris

  • Generating delimited output from Reports Runtime R60

    When generating a delimited file using Runtime how can you predict or determine how Oracle will form the output rows from the report layout? Does anyone have any documentation on Runtime that explains the generation process as there is nothing in the Runtime Reference manual.

    The only documentation (such that it is) that I've found on this is in MetaLink, in Note 68245.1 "Delimited Output in Reports" and a tiny bit more in Note 120072.1 "Suppressing header on delimited output".
    - Bill

  • Need to change font size and style in output of report

    hi experts,
                      im having a requirement of changing the font size in the output of report ( alv grid display).
    regards,
    andrews.

    hi rob,
                   When i execute the report i want in the output of the report (alv grid display report)
    regards,
    andrews.

  • Build Reports from XML output from Reports

    Hi,
    I was just wondering if it is possible to build reports from output in XML format, originally generated by Oracle Reports.
    The XML output produced by Reports is stored in a database for further processing.
    TIA
    Hien

    Hi Hien
    If I have understood this right, you need to create report in XML format from an XML Report Definition File. From the Builder, Generate to File from the File menu and choose XML format for the output.
    Remember that XML output from Reports is Data driven and faithfully reproduces the Data Model. It is NOT layout driven.
    Regards
    Sripathy

  • How to make the field in the output ALV report editable ?

    Hi,
       I have a requirement to make fields like MATNR,WERKS in the output ALV report editable . Could any of you help me with this ?.
    Thank you.
    Moderator Message: Search.
    Edited by: kishan P on Sep 6, 2010 6:35 PM

    Hi
    Please for available information on SCN. There are a lot of information on SCN about ALV wit hEDIT functionality.
    Regards
    Abhii

  • Hwo to display 4 level output in report?

    hi all,
    i have to display 4 level output in report.
    how it can be done?
    thanks in advance
    Regards
    Prabhat

    Hi:
    Have a look to this documentation (interactive lists):
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba2c435c111d1829f0000e829fbfe/frameset.htm
    Cheers
    Jordi

  • How would I output 9i report to excel ?

    I am using reports 9i and want to send the output of my report to excel. I remember that in 6i, I just selected file -> output to xls, or something like that. I can't find how to do that now.
    Thanks.

    1) You can output the report in delimited format (In builder , Generate file to --> delimited)
    Delimited format output can be opened in Excel.
    Refer the following link
    http://download-west.oracle.com/docs/html/B10602_01/orbr_concepts2.htm#1014636
    2) Alternately this is another approach while publishing report to web
    http://otn.oracle.com/products/reports/htdocs/getstart/demonstrations/excel/index.html
    3)>> I remember that in 6i, I just selected file -> output to xls, or something like that<<
    You might be referring to "Generate to delimited".
    Thanks
    Ratheesh

Maybe you are looking for

  • Any hope for my Mac Classic?

    OK, so I ran out to Radio Shack and bought a computer cable... My Mac Classic will turn on and has shown me a checkerboard pattern, made a few grindy noises, and then just a plain gray screen. I turned it off and then on again and a few minutes later

  • Solid Black Lines/Blocks Over Personal Data

    Some printouts have solid black lines and/or solid black boxes in sections of the printed page.  They generally appear over areas containing personal data (name, address, account #, etc.).  Typically happens when printing statements from third-party

  • Link between QM Notification & Material Document(QMFE & MSEG)

    Hi Experts, While creating notification in QM01 I am moving data from Production location to Rjejection location,Sothat It generated Document and stored in MSEG. But How can I get particular notification document number from MSEG. Is there any link b

  • Oracle Forms C/C++  API

    hi all, from where I can get Oracle Forms(6i/9i/10g) C/C++ API reference With regards Satheesh Kumar

  • HT2534 there is no none option in credit card option

    there is no none option in credit card option