Report with Report Painter including download to Application Server

Hi all,
i would like to create a report with the report painter which can be dowloaded to the application server. i have found under "report header" - "export parameters" - the button "export to application server", however there i am not able to specify the correct path and get the file downloaded.
Thank you very much!
Regards,
Christoph Lill

Hi,
Code samples please .
Thanks,Regards
Natraj

Similar Messages

  • Library develop report with report painter in Cost Center Accounting

    Dear experts!
    Now, I'm getting some issue about finding library for developing report with report painter.
    Really, i don't know libraries that are used to develop report with report painter for Cost Center Accounting.
    Can tell me about them?
    Help me, please.
    Best regards, Huy

    Hello Huy,
    CCA reports would be based on table CCSS, you can go to transaction GRR2 and check the various libraries listed there and find a suitable one. You can also use libary 1AB which contains the various cost center variance reports or you can use transaction GR21 to create your own library.
    Kind Regards // Shaubhik

  • Problem with pdf display downloaded from application server

    Hi all,
    I have a problem with displaying pdf downloaded from application server (saved in BINARY MODE).
    I am getting the pdf output of adobe form in FPFORMOUTPUT-PDF as rawstring back to my program and then converting that rawstring into binary form using the function module SCMS_BINARY_TO_STRING.
    Now, when I export the data to presentation server directly using cl_gui_frontend_services=>gui_download, the pdf is downloaded properly.
    However, when I save the data to application server file by looping at the internal table obtained from SCMS_XSTRING_TO_BINARY and using TRANSFER, and subsequently downloading the file in "unconverted format" from AL11 to my desktop, I am getting a "blank" pdf file (with the same number of pages as the one downloaded using gui_download).
    I have tried different encodings during download but in those cases i get corrupted pdf message. only the default option of INTIAL value seems to work.
    I am forced to believe that there is a problem in my code which saves the data to app server but I cant find any solution that is logical. Any solution to this would be greatly appreciated.
    Regards,
    Sasi
    Edited by: Sasi Upadrasta on Sep 29, 2010 7:55 PM

    used a program to read the file from appl server and then downloading it to desktop.

  • Download to application server using job open/close

    Hello people,
    Currently I am using open/close dataset to download to the application server automatically. What I do here is submit a program execute in background when the report is done the report is automatically downloaded to the application server.
    My problem now is that I want to use job open/close. With this, unfortunatley, my current method of open/close dataset will be unsuable to download to application server once the background job is done.
    My question is, is there a way for me to automatically download a file to the application server using the job open/close method?
    Thank you so much and take care.

    <b>Hi,
    What you can do is to write a report program that downloads the data to the file on the app server.
    Now, you can use the JOB_OPEN and JOB_CLOSE and submit this program in the background which will write the file.
    Regards,
    Ravi</b>
    So what you are saying is that I create two programs, where the job open/close program is the one I will run?
    Problem is that I plan to get the values of the selection-options from the original program using the program with the job open/close. How will that work.
    Thanks

  • Download Oracle Application Server 9.0.3

    Hi, I want to download Oracle Application Server 9.0.3(Enterprice Edition) which support Oracle forms and Reports. I go through the DOWNLOAD page in OTN, But It dircted to the Application Server 9.0.2. Where I can DOWNLOAD 9.0.3 version. Please help me ASAP. Because I want to download this version for testing purpose before we purchase this application server software.

    You should check your requirements again.
    AS comes in many different shapes. For full Enterprise Edition, you can choose 9.0.2 or 9.0.4. Also there's a stand-alone Forms and Reports Services packaging. AS 9.0.3 is OC4J updated.
    And 10.1.2 does not (yet?) have a full EE...

  • Download to application server File tcode relavance

    Hi
    i need to know the process for application server download and defining the same in file transaction
    also the process further to move the logical path to the TQA etc system
    also pls send me working example of the downloading to application server to refer for ECC 7.0 as there are some issues to be taken care in new version
    regards
    Nishant

    no replies new quesion raised

  • How to delimited text file data being downloaded in Application server

    Hi All,
    How to delimited or having a tab between each fields in the data being downloaded to  Application server. Please provide an example of code or how i should make changes to my below coding. Thanks.
    eg. the out file in application server.
    Field1#Field2#Field3
    what I currently get was as below:-
    Field1Field2Field3
    My coding:
    FORM download_outfile.
      DATA : xfer(400).
      IF rb_locl EQ 'X'.
        DESCRIBE TABLE itab LINES sy-tfill.
        IF sy-tfill GT 0.
          CALL FUNCTION 'WS_DOWNLOAD'
               EXPORTING
                    filename            = p_file
                    filetype            = 'DAT'
               TABLES
                    data_tab            = itab
               EXCEPTIONS
                    file_open_error     = 1
                    file_write_error    = 2
                    invalid_filesize    = 3
                    invalid_table_width = 4
                    invalid_type        = 5
                    no_batch            = 6
                    unknown_error       = 7
                    OTHERS              = 8.
          IF sy-subrc EQ 0.
            WRITE : / 'download done’.
          ELSE.
            WRITE : / '4)Error occured'.
          ENDIF.
        ENDIF.
      ELSE.
        OPEN DATASET p_file FOR OUTPUT IN TEXT MODE.
        DATA : l_subrc LIKE sy-subrc.
        LOOP AT itab.
          MOVE itab TO xfer.
          TRANSFER xfer TO p_file.
          IF sy-subrc NE 0.
            l_subrc = sy-subrc.
          ENDIF.
        ENDLOOP.
        IF l_subrc EQ 0.
          WRITE :/ 'download done’.
        ELSE.
          WRITE :/ 'error occurred’.
        ENDIF.
        CLOSE DATASET p_file.
      ENDIF.
    ENDFORM

    Hi,
    Please check this sample codes.
    OPEN DATASET P_DOWN FOR OUTPUT IN TEXT MODE. " P_DOWN is the file to download
      IF SY-SUBRC = 0.
        CLEAR V_STRING.
    *-- Download to the file
        LOOP AT IT_DOWN.
          CONCATENATE IT_DOWN-DISTTYPE
                      IT_DOWN-O_CITY
                      IT_DOWN-O_REGIO
                      IT_DOWN-O_PSTLZ
                      IT_DOWN-O_CTRY
                      IT_DOWN-D_CITY
                      IT_DOWN-D_REGIO
                      IT_DOWN-D_PSTLZ
                      IT_DOWN-D_CTRY
                      IT_DOWN-DISTANCE
                 INTO V_STRING
                 SEPARATED BY '09'.    " here 09 is the tab delimeter
          TRANSFER V_STRING TO P_DOWN.
          CLEAR V_STRING.
        ENDLOOP. 
    Regards,
    Ferry Lianto

  • Download Oracle Application Server 10.1.3

    Where can I download Oracle Application Server 10.1.3? I go to http://www.oracle.com/technology/software/products/ias/index.html, I have the choice of downloading Oracle WebLogic Server 10.3 Net Installer, Oracle JDeveloper 10g Release 3 (10.1.3.3), Oracle WebLogic Server 10.3 Full Package Installer.

    http://www.oracle.com/technology/software/products/ias/htdocs/101310.html

  • FM to select the file path for download into application server

    Hello,
    I need a FM to select the file path for download into application server. It is a F4 help .
    Its functionality should be simmilar to the one used for presentation server i.e. as fol
    CALL METHOD cl_gui_frontend_services=>file_save_dialog

    Hello,
    What about F4_DXFILENAME_TOPRECURSION? You can check other FMs of the group DX_FILE.
    BR,
    Suhas
    PS: I think these FMs are not released by SAP, so need to be cautious while using these

  • Create report output to the Client of the Application Server inst.of Server

    Hi,
    Please suggest the soution for the below:
    We are using SET_REPORT_OBJECT_PROPERTY and WEB.SHOW_DOCUMENT to create report. Now Requirement is to save the report output to Client instead of server. I tried to use WEBUTIL but web util can be used from form only becuase that is using form item.
    (1) We are calling all our report from a form. Is there any option to trigger a action when ever a report job is created in Application server (report server)
    (2) Please let me now is there any option to create the output directly to client of application server 10G R1WIN , 10GR2WIN or in 11G. If yes please let me know the details.
    Wtih Thanks & Regards
    K.Sundar
    Edited by: 870860 on Jul 13, 2011 10:27 PM

    Hi,
    Please suggest the soution for the below:
    We are using SET_REPORT_OBJECT_PROPERTY and WEB.SHOW_DOCUMENT to create report. Now Requirement is to save the report output to Client instead of server. I tried to use WEBUTIL but web util can be used from form only becuase that is using form item.
    (1) We are calling all our report from a form. Is there any option to trigger a action when ever a report job is created in Application server (report server)
    (2) Please let me now is there any option to create the output directly to client of application server 10G R1WIN , 10GR2WIN or in 11G. If yes please let me know the details.
    Wtih Thanks & Regards
    K.Sundar
    Edited by: 870860 on Jul 13, 2011 10:27 PM

  • Report with all monitors & their threshold for a server for SCOM 2007 R2

    Hi, 
    I need a report with all monitored monitors & rules with their effective threshold for SCOM 2007 R2. I tried few scripts & tools mentioned on different blogs, but not getting anything.
    Any help in this regard would be highly appreciated.
    TIA

    This would be a custom report, which is not available to my knowledge. You need to consider overrides, and this is the crux of the situation. What you can do is open the pack in MPViewer, and export the pack which will contain the thresholds. And you could
    also create an override view, in My Workspace, based on the pack you are interested in.
    Otherwise, it will be a custom TSQL query or stored procedure, that you may incorporate into your custom report.
    Jonathan Almquist | SCOMskills, LLC (http://scomskills.com)

  • Reports designed in 10g deploy in 9i Application server

    Hi,
    Is it possible to deploy reports designed in Reports 10.2.0.2 in a 9i Oracle application server?
    Thanks,
    Dipin

    Hi Yasmin Sardar,
    Pls. resize your form's canvas in Form Builder.
    Good luck

  • How to trigger a Report when a file is placed in Application server

    Hi All,
    How to triggger a Report and get executed when a new file is placed in the application server.?
    It will be helpful if a Navigation is provided for the EVENT.
    Thanks in advance
    Chakri

    Hi,
    Check what is the frequency of the file coming to the application server.
    Schedule your program in SM36 giving data and time make it periodic . select the check box Periodic Job
    and then select the period values and give the period values as per the frequency of the file coming to app server.
    Thanks,
    Harini

  • Problem with data downloading to Application server - DIR_INTERFACE

    Hi,
    Im downloading data to application server and its working fine for directory DIR_SAPUSERS ( ./ ). 
    But the files are missing when trying to download the data to the path " /INTERFACES_D49/WORK/D49/ASG/FI/KRED/BKPF_AMS.TXT " in directory DIR_INTERFACE -> /interfaces_D49/work
    I also tried " /INTERFACES_D49/WORK/BKPF_AMS.TXT".

    can you locate this directory in tcode AL11 ?
    if no please make the specific settings for that.
    Gordon.

  • WAD report with Report Item occurs binding error

    Hi,
    We created a report by Report Designer and embaded in a WAD report. If we run the report in Report Designer,
    It can generate the result correctly, but it will show "Binding error for characteristic value: / Binding error for key figure:Dynarmic" if we run it from WAD.  Our server is on 7.01 SP6.
    Thank you
    Best Regards,
    Michelle Lee

    Hi Michelle,
    The normal data references in a query have a reference to a dataprovider which should be static binding.
    It may be that by using the Report Designer and then embedding the query in the WAD, the references have been lost and therefore you see the 'dynamic' mesage as the binding is not available anymore.
    Hope this helps,
    Karen

Maybe you are looking for