Data download as on date

Dear All,
In download scheduler I schedule the report, I need to download the reports as on date on daily basis. How can I specify date criteria as current date while scheduling the report. Is there any other way I can schedule and download the report as on day.
I need urget help on this issue.
Thanks & Regards
Abhijit

hi,
  I think in order to specify the date as current date you have use variant and run the report . In the variant specify the date as SY-DATUM....
Hope it helps...

Similar Messages

  • Problem with initial download of a data object

    Dear All,
    I have created a data object named "EQUIPMENT", which has three nodes. EQUIPMENT is the header node, DETAILS is the child node to EQUIPMENT and LOCATION is the child node to DETAILS. I have also done explicit key mapping to DETAILS and LOCATION.
    I have selected the following as the BE Keys in the nodes.
    SERIAL NO in EQUIPMENT header node.
    TYPE in DETAILS node.
    ZIPCODE in LOCATION node.
    In the explicit key mapping of DETAILS node we have selected "SERIAL NO" field in this node.
    In the explicit key mapping of LOCATION node we have selected "SERIAL NO" and "TYPE" fields in this node.
    Data object contains no errors and i have activated the data object and it was successful.
    Then i have also created back adapter which has EQUIPMENT get list and get detail. Get list returns only serial numbers (which is the BE key in EQUIPMENT node). Get detail takes "serail no" as input, returns "DETAILS" and "LOCATION" data in tables parameter. I have tested the get list and get detail interfaces, they are working fine. Then i have activated back end adapter and that was successful.
    Now i have triggered an initial download for the  "EQUIPMENT" data object, but there is no data downloaded into the data object. I have checked the monitoring in administration portal, it is showing status "Ended with errors", but there is no details of an error.
    So can you please let me know what could be mistake i have done or how to check what is the error. Please help us to resolve the issue.
    Regards,
    Kiran.

    Hi Kiran
    Are you checking in the NWMA>>Monitoring>>Logs and Traces>>Backend Integration?  The logs should have the proper error.
    If not can you regenerate the DO, edit and activate your adapter and try again?
    Regards
    Rohith

  • Image browser "memory card utility" downloading to wrong date folder

    Mac OSX 10.7, Image Browser 6.9.0.3 (9L)
    I own 5Dmarkii and 60D.  When I insert memory card, Memory Card Utility (1.7.0.0.9L) launches.  I select Download, and program transfers to my computer.  No fancy settings, just standard.
    Both cameras date setting is correct, and image efix data is correct for date and time shot.  Computer system date and time correct.
    Pictures taken prior to 5:00pm are filed in a folder with previous days date.  Photos after 5:00pm are filed in correct days folder.
    Driving me nuts..... Help please

    I'm having the same issue.  The Canon software behaves as though it catagorizes the photos (and names them, based on the way I'm importing them) based upon what day it was/is in England (I  think it uses GMT when making the date classification)
    For me, it is also usually an annoyance, but sometimes it's more frustrating.  If I want my files named by date, correctly, then I have to re-name all the photos taken after 4:00 pm (16:00).
    Yes, my camera (7D) and computer (MacBook Pro) have their date and time settings correct.  (I tried changing the time zone my camera was set to to see if it changed the problem, and it didn't.  The Canon software is mis-placing the photos based on the date.)
    I might try this workflow on a Windows machine, and see if it persists.
    Anyone have any ideas?

  • Download using open data set and close data set

    can any body please send some sample pgm using open data set and close data set .the data should get downloaded in application server
    very simple pgm needed

    Hi Arun,
    See the Sample code for BDC using OPEN DATASET.
    report ZSDBDCP_PRICING no standard page heading
    line-size 255.
    include zbdcrecx1.
    *--Internal Table To hold condition records data from flat file.
    Data: begin of it_pricing occurs 0,
    key(4),
    f1(4),
    f2(4),
    f3(2),
    f4(18),
    f5(16),
    end of it_pricing.
    *--Internal Table To hold condition records header .
    data : begin of it_header occurs 0,
    key(4),
    f1(4),
    f2(4),
    f3(2),
    end of it_header.
    *--Internal Table To hold condition records details .
    data : begin of it_details occurs 0,
    key(4),
    f4(18),
    f5(16),
    end of it_details.
    data : v_sno(2),
    v_rows type i,
    v_fname(40).
    start-of-selection.
    refresh : it_pricing,it_header,it_details.
    clear : it_pricing,it_header,it_details.
    CALL FUNCTION 'UPLOAD'
    EXPORTING
    FILENAME = 'C:\WINDOWS\Desktop\pricing.txt'
    FILETYPE = 'DAT'
    TABLES
    DATA_TAB = it_pricing
    EXCEPTIONS
    CONVERSION_ERROR = 1
    INVALID_TABLE_WIDTH = 2
    INVALID_TYPE = 3
    NO_BATCH = 4
    UNKNOWN_ERROR = 5
    GUI_REFUSE_FILETRANSFER = 6
    OTHERS = 7.
    WRITE : / 'Condition Records ', P_FNAME, ' on ', SY-DATUM.
    OPEN DATASET P_FNAME FOR INPUT IN TEXT MODE.
    if sy-subrc ne 0.
    write : / 'File could not be uploaded.. Check file name.'.
    stop.
    endif.
    CLEAR : it_pricing[], it_pricing.
    DO.
    READ DATASET P_FNAME INTO V_STR.
    IF SY-SUBRC NE 0.
    EXIT.
    ENDIF.
    write v_str.
    translate v_str using '#/'.
    SPLIT V_STR AT ',' INTO it_pricing-key
    it_pricing-F1 it_pricing-F2 it_pricing-F3
    it_pricing-F4 it_pricing-F5 .
    APPEND it_pricing.
    CLEAR it_pricing.
    ENDDO.
    IF it_pricing[] IS INITIAL.
    WRITE : / 'No data found to upload'.
    STOP.
    ENDIF.
    loop at it_pricing.
    At new key.
    read table it_pricing index sy-tabix.
    move-corresponding it_pricing to it_header.
    append it_header.
    clear it_header.
    endat.
    move-corresponding it_pricing to it_details.
    append it_details.
    clear it_details.
    endloop.
    perform open_group.
    v_rows = sy-srows - 8.
    loop at it_header.
    perform bdc_dynpro using 'SAPMV13A' '0100'.
    perform bdc_field using 'BDC_CURSOR'
    'RV13A-KSCHL'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_field using 'RV13A-KSCHL'
    it_header-f1.
    perform bdc_dynpro using 'SAPMV13A' '1004'.
    perform bdc_field using 'BDC_CURSOR'
    'KONP-KBETR(01)'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_field using 'KOMG-VKORG'
    it_header-f2.
    perform bdc_field using 'KOMG-VTWEG'
    it_header-f3.
    **Table Control
    v_sno = 0.
    loop at it_details where key eq it_header-key.
    v_sno = v_sno + 1.
    clear v_fname.
    CONCATENATE 'KOMG-MATNR(' V_SNO ')' INTO V_FNAME.
    perform bdc_field using v_fname
    it_details-f4.
    clear v_fname.
    CONCATENATE 'KONP-KBETR(' V_SNO ')' INTO V_FNAME.
    perform bdc_field using v_fname
    it_details-f5.
    if v_sno eq v_rows.
    v_sno = 0.
    perform bdc_dynpro using 'SAPMV13A' '1004'.
    perform bdc_field using 'BDC_OKCODE'
    '=P+'.
    perform bdc_dynpro using 'SAPMV13A' '1004'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    endif.
    endloop.
    *--Save
    perform bdc_dynpro using 'SAPMV13A' '1004'.
    perform bdc_field using 'BDC_OKCODE'
    '=SICH'.
    perform bdc_transaction using 'VK11'.
    endloop.
    perform close_group.
    Hope this resolves your query.
    Reward all the helpful answers.
    Regards

  • Proper data download to excel

    hi all,
    i am getting right output.But while downloading iam not
    getting the data for name1 field from lfa1 table to be displayed & also while downloading the negative sign is not coming for the amount values.
    Modify the below code.
    REPORT zvenageing1 NO STANDARD PAGE HEADING                             
                        LINE-SIZE 300                                        
                        LINE-COUNT 65(3).                                    
    TABLES DECLARATION                                                    
    TABLES : bsik,  "Accounting: Secondary index for vendors                
              bsak,  "Accounting: Secondary index for vendors (cleared
    items)
              lfa1.                                                                               
    INTERNAL TABLE                                                        
    DATA : BEGIN OF itab OCCURS 0,                                          
            saknr LIKE bsik-saknr,                                           
            lifnr LIKE bsik-lifnr,                                           
            name1 LIKE lfa1-name1,                                           
            umskz LIKE bsik-umskz,                                           
            belnr LIKE bsik-belnr,                                           
            blart LIKE bsik-blart,                                           
            bldat LIKE bsik-bldat,
                   zfbdt LIKE bsik-zfbdt,                                                   
           ageing TYPE i,                                                           
           duedate LIKE itab-zfbdt,                                                 
           zbd1t LIKE bsik-zbd1t,                                                   
           waers LIKE bsik-waers,                                                   
           wrbtr LIKE bsik-wrbtr,                                                   
           pswsl LIKE bsik-pswsl,                                                   
           dmbtr LIKE bsik-dmbtr,                                                   
           sgtxt LIKE bsik-sgtxt,                                                   
           shkzg LIKE bsik-shkzg,                                                   
           END OF itab.                                                                               
    HEADER DETAILS                                                                
    DATA : BEGIN OF itab_head OCCURS 0,                                             
           name1(20) TYPE c,                                                        
           name2(20) TYPE c,                                                        
           name3(50) TYPE c,                                                        
            name4(20) TYPE c,                                                
            name5(20) TYPE c,                                                
            name6(20) TYPE c,                                                
            name7(20) TYPE c,                                                
            name8(20) TYPE c,                                                
            name9(20) TYPE c,                                                
            name10(20) TYPE c,                                               
            name11(20) TYPE c,                                               
            name12(20) TYPE c,                                               
            name13(20) TYPE c,                                               
            name14(20) TYPE c,                                               
            name15(20) TYPE c,                                               
            name16(20) TYPE c,                                               
            END OF itab_head.                                                                               
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.           
    SELECT-OPTIONS : s_bukrs FOR bsik-bukrs,                                
                      s_saknr FOR bsik-saknr,                                   
                      s_lifnr FOR bsik-lifnr.                                   
    PARAMETERS : p_date1 LIKE itab-zfbdt." value sy-datum.                     
    SELECTION-SCREEN END OF BLOCK b1.                                          
    *p_date1 = sy-datum.                                                       
    SET PF-STATUS '100'.                                                       
    PERFORM head.                                                              
    SELECT saknr lifnr belnr bldat zfbdt zbd1t waers wrbtr pswsl dmbtr         
            sgtxt shkzg blart umskz                                             
            INTO CORRESPONDING FIELDS OF TABLE itab                             
            FROM bsik                                                           
            WHERE bukrs IN s_bukrs                                              
            AND saknr IN s_saknr                                                
            AND lifnr IN s_lifnr                                                
            AND zfbdt LE p_date1                                                
            AND budat LE p_date1                                                
            AND umskz NE 'F'.                                                   
    SELECT saknr lifnr belnr bldat zfbdt zbd1t waers wrbtr pswsl dmbtr     
           sgtxt shkzg blart umskz                                         
           FROM bsak                                                       
           APPENDING CORRESPONDING FIELDS OF TABLE itab                    
           WHERE bukrs IN s_bukrs                                          
           AND saknr IN s_saknr                                            
           AND lifnr IN s_lifnr                                            
           AND zfbdt LE p_date1                                            
           AND augdt GT p_date1                                            
           AND budat LE p_date1.                                                                               
    LOOP AT itab.                                                          
      CALL FUNCTION 'DAYS_BETWEEN_TWO_DATES'                               
           EXPORTING                                                       
                i_datum_bis             = p_date1                          
                i_datum_von             = itab-zfbdt                       
            I_KZ_EXCL_VON           = '0'                                
            I_KZ_INCL_BIS           = '0'                                 
            I_KZ_ULT_BIS            = ' '                                 
            I_KZ_ULT_VON            = ' '                                 
            I_STGMETH               = '0'                                 
            I_SZBMETH               = '1'                                 
          IMPORTING                                                         
               e_tage                  = itab-ageing                        
           EXCEPTIONS                                                       
                days_method_not_defined = 1                                 
                OTHERS                  = 2.                                
      MODIFY itab.                                                          
      CLEAR itab.                                                           
    ENDLOOP.                                                                               
    LOOP AT itab.                                                           
    CLEAR lfa1.                                                             
      SELECT SINGLE name1 FROM lfa1                                         
             INTO (itab-name1)                                              
             WHERE lifnr = itab-lifnr.                                                                               
    IF itab-shkzg EQ 'H'.                                                 
        itab-wrbtr = itab-wrbtr * -1.                                       
        itab-dmbtr = itab-dmbtr * -1.                                       
      ENDIF.                                                                
      DATA : total(16) TYPE p DECIMALS 2.                                   
      total = total + itab-dmbtr.                                           
      itab-duedate = itab-zfbdt + itab-zbd1t.                                                                               
    WRITE : /2(10)     itab-saknr,                                        
               12(10)    itab-lifnr,                                        
               24(35)    itab-name1,                                        
               61(1)     itab-umskz,                                        
               70(10)    itab-belnr,                                        
               82(2)     itab-blart,                                        
               86(10)    itab-bldat,                                       
               98(10)    itab-zfbdt,                                       
              110(4)     itab-ageing,                                      
              116(10)    itab-duedate,                                     
              130(3)     itab-zbd1t,                                       
              146(5)     itab-waers,                                       
              152(13)    itab-wrbtr,                                       
              166(5)     itab-pswsl,                                       
              174(13)    itab-dmbtr,                                       
              190(50)    itab-sgtxt.                                       
             243(25) itab-xblnr.                                                                               
    AT LAST.                                                             
      SKIP 1.                                                              
        ULINE.                                                             
        WRITE : /2 'GRAND TOTAL' COLOR 3,155 total COLOR 3.                
        ULINE.                                                             
        CLEAR total.                                                            
      ENDAT.                                                                    
    ENDLOOP.                                                                    
          FORM HEAD                                                     *     
    FORM head.                                                                  
    ULINE.                                                                     
    WRITE :/15 'V E N D O R  O P E N  I T E M S  A S  O N  : ', p_date1        
      COLOR 3 INTENSIFIED ON.                                                   
    ULINE.                                                                     
       FORMAT COLOR 2 INTENSIFIED OFF.                                          
    ULINE.                                                                     
       WRITE : /2 'RECON.A/C',                                                  
                12 'VENDOR NO.',                                                
                24 'VENDOR NAME',                                          
                61 'SP.GL',                                                
                73 'DOC.NO',                                               
                81 'DT',                                                   
                85  'DOC.DATE',                                            
                95  'INV.RCD.DATE',                                        
                109 'AGE DAYS',                                            
                119 'DUE DATE',                                            
                132 'CREDIT PERIOD',                                       
                148 'CURR',                                                
                156 'AMT.IN.DOC',                                          
                167 'LOC.CUR',                                             
                176 'AMT.IN.LOCA',                                         
                192 'TEXT'.                                                
       ULINE : /(300).                                                     
    ENDFORM.                                                                               
    AT USER-COMMAND.                                                        
      IF sy-ucomm = 'EXCEL'.                                                
       WHEN 'EXCEL'.                                                      
          PERFORM downloadexcel.                                            
      ENDIF.                                                                
          FORM DOWNLOADEXCEL                                            * 
    FORM downloadexcel.                                                     
      DATA : b_file1 LIKE rlgrap-filename.                                  
      REFRESH itab_head.                                                    
      MOVE : 'REC A/C'         TO itab_head-name1,                          
             'VEN A/C'         TO itab_head-name2,                          
             'VEN NAME'        TO itab_head-name3,                          
             'SP G/L'          TO itab_head-name4,                          
             'DOC NO'          TO itab_head-name5,                          
             'DT'              TO itab_head-name6,                          
             'DOC DATE'        TO itab_head-name7,                          
             'INV.RCD.DATE'    TO itab_head-name8,                          
             'AGEING DAYS'     TO itab_head-name9,                          
             'DUE DATE'        TO itab_head-name10,                         
             'CR DAYS'         TO itab_head-name11,                         
             'DOC CURR'        TO itab_head-name12,                         
             'DOC CURR AMT'    TO itab_head-name13,                         
             'LOC CURR'        TO itab_head-name14,                         
             'LOC CURR AMT'    TO itab_head-name15,                         
             'TEXT'            TO itab_head-name16.                                                                               
    APPEND itab_head.                                                     
      CLEAR itab_head.                                                      
      CALL FUNCTION 'WS_FILENAME_GET'                                       
          EXPORTING                                                         
               def_filename     = ' '                                       
               def_path         = 'C:\'                                     
               mask             = ',.,..'                               
               mode             = 'S'                                       
               title            = 'Save this file as '                      
          IMPORTING                                                         
               filename         = b_file1                                   
            RC               =                                            
           EXCEPTIONS                                                       
                inv_winsys       = 1                                        
                no_batch         = 2                                        
                selection_cancel = 3                                        
                selection_error  = 4                                        
                OTHERS           = 5.                                                                               
    CALL FUNCTION 'WS_DOWNLOAD'                                           
          EXPORTING                                                         
            BIN_FILESIZE            = ' '                                 
               codepage                = 'IBM'                              
               filename                = b_file1                            
               filetype                = 'DAT'                              
            MODE                    = ' '                                 
            WK1_N_FORMAT            = ' '                                 
            WK1_N_SIZE              = ' '                                 
            WK1_T_FORMAT            = ' '                                 
            WK1_T_SIZE              = ' '                                 
            COL_SELECT              = ' '                                 
            COL_SELECTMASK          = ' '                                 
            NO_AUTH_CHECK           = ' '                                 
       IMPORTING                                                          
            FILELENGTH              =                                     
           TABLES                                                           
                data_tab                = itab_head                         
            FIELDNAMES              =                                     
           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                                 
                gui_refuse_filetransfer = 8                                 
                OTHERS                  = 9.                                                                               
    CALL FUNCTION 'WS_DOWNLOAD'                                           
          EXPORTING                                                         
            BIN_FILESIZE            = ' '                                 
               codepage                = 'IBM'                              
               filename                = b_file1                            
               filetype                = 'DAT'                              
               mode                    = 'A'                               
            WK1_N_FORMAT            = ' '                                
            WK1_N_SIZE              = ' '                                
            WK1_T_FORMAT            = ' '                                
            WK1_T_SIZE              = ' '                                
            COL_SELECT              = ' '                                
            COL_SELECTMASK          = ' '                                
            NO_AUTH_CHECK           = ' '                                
       IMPORTING                                                         
            FILELENGTH              =                                    
           TABLES                                                          
                data_tab                = itab                             
            FIELDNAMES              =                                    
           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                                 
                gui_refuse_filetransfer = 8                                 
                OTHERS                  = 9.                                
    ENDFORM.

    hi Sanjeev,
    Use GUI_DOWNLOAD in this way  ..
          DATA: W_WSD_FILENAME01 TYPE STRING,
                W_WSD_FILETYPE01 TYPE CHAR10.
          W_WSD_FILENAME01 = P_OUT1.
          W_WSD_FILETYPE01 = 'DAT'.
          CALL FUNCTION 'GUI_DOWNLOAD'
               EXPORTING
    *              BIN_FILESIZE                    =
                   FILENAME                        = W_WSD_FILENAME01
                   FILETYPE                        = W_WSD_FILETYPE01
    *              APPEND                          = ' '
    *              WRITE_FIELD_SEPARATOR           = ' '
    *              HEADER                          = '00'
    *              TRUNC_TRAILING_BLANKS           = ' '
    *              WRITE_LF                        = 'X'
    *              COL_SELECT                      = ' '
    *              COL_SELECT_MASK                 = ' '
    *              DAT_MODE                        = ' '
    *              CONFIRM_OVERWRITE               = ' '
    *              NO_AUTH_CHECK                   = ' '
    *              CODEPAGE                        = ' '
    *              IGNORE_CERR                     = ABAP_TRUE
    *              REPLACEMENT                     = '#'
    *              WRITE_BOM                       = ' '
    *              TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *              WK1_N_FORMAT                    = ' '
    *              WK1_N_SIZE                      = ' '
    *              WK1_T_FORMAT                    = ' '
    *              WK1_T_SIZE                      = ' '
    *          IMPORTING
    *              FILELENGTH                      =
               TABLES
                   DATA_TAB                        = ITAB_VBAK
    *              FIELDNAMES                      =
               EXCEPTIONS
                   FILE_WRITE_ERROR                = 1
                   NO_BATCH                        = 2
                   GUI_REFUSE_FILETRANSFER         = 3
                   INVALID_TYPE                    = 4
                   NO_AUTHORITY                    = 5
                   UNKNOWN_ERROR                   = 6
                   HEADER_NOT_ALLOWED              = 7
                   SEPARATOR_NOT_ALLOWED           = 8
                   FILESIZE_NOT_ALLOWED            = 9
                   HEADER_TOO_LONG                 = 10
                   DP_ERROR_CREATE                 = 11
                   DP_ERROR_SEND                   = 12
                   DP_ERROR_WRITE                  = 13
                   UNKNOWN_DP_ERROR                = 14
                   ACCESS_DENIED                   = 15
                   DP_OUT_OF_MEMORY                = 16
                   DISK_FULL                       = 17
                   DP_TIMEOUT                      = 18
                   FILE_NOT_FOUND                  = 19
                   DATAPROVIDER_EXCEPTION          = 20
                   CONTROL_FLUSH_ERROR             = 21
                   OTHERS                          = 22  .
               IF SY-SUBRC <> 0.
    *              MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
               ENDIF.

  • Is there a way of showing more info than just the title and author for books in my iPad "library", say date downloaded, or date last read, eg ?

    Sometimes I forget the title of a book I am currently reading, and have to check through each book in my long list of titles in my "library" to find it again. I cant see any way of adding any additional information to each title (and author), like date downloaded, or date last read, which would help me find a particular book again quickly. 
    I may be missing something simple, so can anyone please help?
    Thanks in advance.

    Sometimes I forget the title of a book I am currently reading, and have to check through each book in my long list of titles in my "library" to find it again. I cant see any way of adding any additional information to each title (and author), like date downloaded, or date last read, which would help me find a particular book again quickly. 
    I may be missing something simple, so can anyone please help?
    Thanks in advance.

  • HT201272 How do i see a list of the apps that have been downloaded and the dates and times and amounts?  Tried to follow the on-line thing but i want to compare what has been downloaded with my visa bill.  HELP!!

    How do i see a list of the apps that have been downloaded and the dates and times and amounts?  Tried to follow the on-line thing but i want to compare what has been downloaded with my visa bill.  HELP!!

    See this -> http://support.apple.com/kb/HT2727

  • How to download internal table data to .xlsx file ?

    Hello All,
    I am using SAP ECC 6.0. I need to download internal table data to .xlsx file.
    I tried GUI_DOWNLOAD, all the data are getting transferred to the .xlsx file, but while opening I am getting the below error.
    Excel cannot open the file "download.xlsx" because file format or file extension is not valid. Verify that the file has not been corrupted and that the file extension matches the format of the file.
    Though Microsoft office 2007 is installed in my system.
    Please help <removed by moderator>.
    Edited by: Thomas Zloch on Oct 24, 2011 10:55 AM

    Hi,
    Please find the below code to download data into excel file.
      DATA: ld_filename TYPE string,
            ld_path TYPE string,
            ld_fullpath TYPE string,
            ld_result TYPE i.
    Display save dialog window
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
        EXPORTING
         window_title      = ' '
          DEFAULT_EXTENSION = 'XLS'
          default_file_name = 'accountsdata'
          INITIAL_DIRECTORY = 'c:\temp\'
        CHANGING
          filename          = ld_filename
          path              = ld_path
          fullpath          = ld_fullpath
          user_action       = ld_result.
    Check user did not cancel request
      CHECK ld_result EQ '0'.
      CALL FUNCTION 'GUI_DOWNLOAD'
       EXPORTING
            filename         = ld_fullpath
            filetype         = 'ASC'
          APPEND           = 'X'
            write_field_separator = 'X'
          CONFIRM_OVERWRITE = 'X'
       TABLES
            data_tab         = it_datatab[]     "need to declare and populate
       EXCEPTIONS
            file_open_error  = 1
            file_write_error = 2
            OTHERS           = 3.
    Thanks and Regards
    Chitra

  • Downloading .xml/.tx data to presentation server while running background.

    Hi experts,
    I have a requiremnt to downloading .xml/.txt data to presentation server while running background.
    when i run the program in foreground with use of GUI_upload/ Gui_download its working fine but not working in background.
    i can't use email/data download to database file and than get it  option as data can be huge.
    Can anybody help me out regarding this.
    Thanks
    Anuj jain

    Hi anjui,
    it'snt possible to download a file in background using gui_download.
    You could try to create a Shell Command (transaction SM69) to transfer data in a shared directory.
    You can execute Os Commands using function module SXPG_COMMAND_EXECUTE
    Alessandro

  • Download internal table data to Excel in background

    Hi all ,
      Can anyone tell that how i can download internal table data
    into Excel sheet  in Backgroud Mode .
    I used both fun mod  ws and gui download but these are not working in background mod .
    Please help  issue is urgent .
    Answer is rewarded  by point .
    With Regards ,
    Nilesh Jain

    hi,
    you have to use  function module 'SAP_CONVERT_TO_XLS_FORMAT'.
    DATA:
    ITAB1 TYPE TRUXS_T_TEXT_DATA.
    CALL FUNCTION 'SAP_CONVERT_TO_XLS_FORMAT'
    EXPORTING
      I_FIELD_SEPERATOR          = ';'
      I_LINE_HEADER              =
       i_filename                 = filename
      I_APPL_KEEP                = ' '
    tables
       i_tab_sap_data             = itab
    CHANGING
      I_TAB_CONVERTED_DATA       = itab1
    EXCEPTIONS
      CONVERSION_FAILED          = 1
      OTHERS                     = 2
    *IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *ENDIF.
    try this one.
    reward points if useful,
    thanks & regards,
    rajee.

  • I attempted to download ITunes up date 11.1.4 and it would not install. Got two error messages, error 7 windows error 126 an "privileges. Also meesage that msvcr80.dll was missing. Would like help.

    I attempted to download itunes up date 11.1.4 and it would not install. Received the following error messages: error 7 windows error 126 and "privileges. Did uninstall itunes , but could not ger new download. What do you suggest?

    Hello, Jack. 
    You will find this article helpful in troubleshooting the error that you are receiving.
    iTunes for Windows: "Error 7" message when opening iTunes
    http://support.apple.com/kb/ts3074
    Regards,
    Jason H.

  • Foxfire downloaded an up-date last night (10 20/2010) at 5:30 PM EDST and it crashed the compter on re-start with an error message... Missing or Corrupt File ... WINNT\system32\config\SYSTEM

    Foxfire downloaded an up-date last night (10/20/2010) at 5:30 PM EDST when I started Firefox, and it crashed the compter on re-start with an error message... Missing or Corrupt File ... WINNT\system32\config\SYSTEM. This machine is Windows 2000 Professional on Dell computer and Foxfire 3.6 or 4 not sure computer is stuck at the error message.

    Hi there,
    You're running an old version of Safari. Before troubleshooting, try updating it to the latest version: 6.0. You can do this by clicking the Apple logo in the top left, then clicking Software update.
    You can also update to the latest version of OS X, 10.8 Mountain Lion, from the Mac App Store for $19.99, which will automatically install Safari 6 as well, but this isn't essential, only reccomended.
    Thanks, let me know if the update helps,
    Nathan

  • When I try to sync my iPod iCal with my MBP iCal via WiFi I get a message saying "Safari Downloading Safe Browsing Data" but I am connected to a local network and thus the syncing does not complete"

    When I try to sync my iPod iCal with my MBP (OS 10.7) iCal via iTunes and WiFi I get a message saying "Safari Downloading Safe Browsing Data" but I am connected to a local network and thus the syncing does not complete because the downloading never completes because I am not connected to the internet.
    Why does syncing iCal need Safari Safe Browsing Data?  How can I turn this off?

    See:
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi Syncing
    "Safari Downloading Safe Browsing Data" is just some data that is synce with the computer. To turn off on the Mac go to System Preferencs>iCloud and turn off Safari

  • How to download the Dynamic data into PPT format

    Hi Friends,
    I have one doubt on WDJ. How to download the Dynamic data into PPT format. For Example Some Dynamic data is available in to View in that One Download Link or button available. Click on Download link or button download that data into PPT Format
    Is it possible for WDJ. If possible please tell me.
    Or
    How to create Business Graphics in Web Dynpro Applications depening up on Excel Data and finally we can download the  Business Graphics  into powerpoint presentation.
    Thank you,
    Regards
    Vijay Kalluri
    Edited by: KalluriVijay on Mar 11, 2011 6:34 AM

    Hi Govindu,
    1. I have one doubt on WDJ. Click on either Submit Buttion or LinkToURL UI we can download the file that file having ppt formate(Text.PPT).
    I am using NWDS Version: 7.0.09 and Java Version: JDK 1.6
    2. is it possible to download the business Graphics in to the PPT by using Java DynPro
    Regards
    VijayK

  • Excel download problem :--- Header data duplicating in unexpected  columns

    Guys, 
       I   am  able  to  download  the  data onto  Excel  with   Header  data  but  the Header data duplicating in unexpected  columns RHS  upto  all  the  line item columns  below....Below  is  partial   excerpt... 
    Please help....
    DATA:
           BEGIN OF excel_wa,
                posnr               TYPE  vbap-posnr,           "Line Item
                matnr               TYPE  vbap-matnr,           "Mat#
                pmatn               TYPE  vbap-pmatn,           "Pric Mat
                zansicat            TYPE  zmarall-zansicat,     "AnsiCat#
                zansigrd            TYPE  zmarall-zansigrd,     "Grade
                zcurrvaltnarea      TYPE  zco002-zcurrvaltnarea,"Val Area
                zcurrcstusd         TYPE  zco002-zcurrcstusd,   "Cost$
                zzbrndnm            TYPE  mara-zzbrndnm,        "Brand
                zqedscgrp           TYPE  zglbprc-zqedscgrp, "QE Disc Grp
                mstav               TYPE  mara-mstav,        "Status
                prodh               TYPE  vbap-prodh,        "Prod Heir
                kwmeng              TYPE  vbap-kwmeng,       "Qty
                lprc                TYPE  konv-kbetr,  "List Price ZBP1
                sprc                TYPE  konv-kbetr,  "Std Pric ZNAA,ZNAX
                netpr               TYPE  vbap-netpr,  "Quot price
                mrgn                TYPE  konv-kbetr,  "margin%
           END   OF excel_wa,
           BEGIN OF sema_wa,
            posnr            LIKE ws-xxlt VALUE 'STRDFT',
            matnr            LIKE ws-xxlt VALUE 'STRDFT',
            pmatn            LIKE ws-xxlt VALUE 'STRDFT',
            zansicat         LIKE ws-xxlt VALUE 'STRDFT',
            zansigrd         LIKE ws-xxlt VALUE 'STRDFT',
            zcurrvaltnarea   LIKE ws-xxlt VALUE 'STRDFT',
            zcurrcstusd      LIKE ws-xxlt VALUE 'STRDFT',
            zzbrndnm         LIKE ws-xxlt VALUE 'STRDFT',
            zqedscgrp        LIKE ws-xxlt VALUE 'STRDFT',
            mstav            LIKE ws-xxlt VALUE 'STRDFT',
            prodh            LIKE ws-xxlt VALUE 'STRDFT',
            kwmeng           LIKE ws-xxlt VALUE 'N00ADD',
            lprc             LIKE ws-xxlt VALUE 'N02ADD',
            sprc             LIKE ws-xxlt VALUE 'N03ADD',
            netpr            LIKE ws-xxlt VALUE 'N02ADD',
            mrgn             LIKE ws-xxlt VALUE 'N00ADD',
          END OF sema_wa,
          BEGIN OF clhd_wa,
            posnr            LIKE ws-xxlt VALUE 'LineItem#',
            matnr            LIKE ws-xxlt VALUE 'Mat#',
            pmatn            LIKE ws-xxlt VALUE 'VC Mat#',
            zansicat         LIKE ws-xxlt VALUE 'AnsiCat',
            zansigrd         LIKE ws-xxlt VALUE 'Grade',
            zcurrvaltnarea   LIKE ws-xxlt VALUE 'ValnArea',
            zcurrcstusd      LIKE ws-xxlt VALUE 'Currency',
            zzbrndnm         LIKE ws-xxlt VALUE 'Brand',
            zqedscgrp        LIKE ws-xxlt VALUE 'QE disc',
            mstav            LIKE ws-xxlt VALUE 'Status',
            prodh            LIKE ws-xxlt VALUE 'Prod Heir',
            kwmeng           LIKE ws-xxlt VALUE 'Qty',
            lprc             LIKE ws-xxlt VALUE 'List Pric',
            sprc             LIKE ws-xxlt VALUE 'St.Disc',
            netpr            LIKE ws-xxlt VALUE 'Quote Price',
            mrgn             LIKE ws-xxlt VALUE 'Margin%',
         END OF clhd_wa,
         BEGIN OF hdtxt1_wa,
            vbeln      LIKE ws-xxlt VALUE 'Quotation#',
            kunnr      LIKE ws-xxlt VALUE 'Quote Date',
            kvgr3      LIKE ws-xxlt VALUE 'Rep Date',
            pltyp      LIKE ws-xxlt VALUE 'Pric List Typ & Currency',
            waers      LIKE ws-xxlt VALUE 'Sold To',
            knuma      LIKE ws-xxlt VALUE 'Ship To',
            datab      LIKE ws-xxlt VALUE 'Top Parent',
            datbi      LIKE ws-xxlt VALUE 'Sales Org/Sales Dist/CPA',
            note       LIKE ws-xxlt VALUE 'Net Sales',
         END OF hdtxt1_wa,
         BEGIN OF hdtxt2_wa,
            vbeln      LIKE ws-xxlt VALUE '',"Quotation#',
            kunnr      LIKE ws-xxlt VALUE '',"Quote Date',
            kvgr3      LIKE ws-xxlt VALUE '',"Rep Date',
            pltyp      LIKE ws-xxlt VALUE '',"Pric List Typ & Currency',
            waers      LIKE ws-xxlt VALUE '',"Sold To',
            knuma      LIKE ws-xxlt VALUE '',"Ship To',
            datab      LIKE ws-xxlt VALUE '',"Top Parent',
            datbi      LIKE ws-xxlt VALUE '',"Sales Org/Sales Dist/CPA',
            note       LIKE ws-xxlt VALUE '',"Net Sales',
         END OF hdtxt2_wa.
    DATA:
          ivbap      LIKE  STANDARD TABLE OF ivbap_wa,
          imat       LIKE  STANDARD TABLE OF mat_wa,
          icurr      LIKE  STANDARD TABLE OF curr_wa,
          ikonv      LIKE  STANDARD TABLE OF konv_wa,
          ivbpa      LIKE  STANDARD TABLE OF ivbpa_wa,
          ikna1      LIKE  STANDARD TABLE OF kna1_wa,
          iresult    LIKE  STANDARD TABLE OF result_wa,
    *Excel tables
          iexcel     LIKE  STANDARD TABLE OF excel_wa,
          isema_wa   LIKE  gxxlt_s,
          it_sema    LIKE  STANDARD TABLE OF gxxlt_s,
          ihkey_wa   LIKE  gxxlt_h,
          it_hkey    LIKE  STANDARD TABLE OF gxxlt_h,
          iotxt_wa   LIKE  gxxlt_o,
          it_otext   LIKE  STANDARD TABLE OF gxxlt_o,
          iptxt_wa   LIKE  gxxlt_p,
          it_ptext   LIKE  STANDARD TABLE OF gxxlt_p,
          ivkey_wa   LIKE  gxxlt_v,
          it_vkey    LIKE  STANDARD TABLE OF gxxlt_v.
    *Field-Symbols
    FIELD-SYMBOLS:
          <vbap>  LIKE   ivbap_wa,
          <vbpa>  LIKE   ivbpa_wa,
          <mat>   LIKE   mat_wa,
          <sema_wa>,
          <clhd_wa>,
          <hdtxt1_wa>,
          <hdtxt2_wa>.
    *Constants
    CONSTANTS:
          c_auart   TYPE  vbak-auart  VALUE  'AG', "AG = Quotn
          c_parvw1  TYPE  vbpa-parvw  VALUE  'AG',
          c_parvw2  TYPE  vbpa-parvw  VALUE  'WE',
          c_parvw3  TYPE  vbpa-parvw  VALUE  'ZT',
          c_kappl   TYPE  konv-kappl  VALUE  'V',
          c_kschl1  TYPE  konv-kschl  VALUE  'ZBP1',
          c_kschl2  TYPE  konv-kschl  VALUE  'ZNAX',
          c_kschl3  TYPE  konv-kschl  VALUE  'ZNAA',
          c_psize   TYPE  i           VALUE  65535.
    *&      SELECTION-SCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK a WITH FRAME TITLE  text-001.
    SELECT-OPTIONS:
        s_vbeln  FOR  ws-vbeln NO INTERVALS NO-EXTENSION OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK a.
    *&      AT SELECTION-SCREEN.
    AT SELECTION-SCREEN.
      PERFORM validate_screen_entries.
    START-OF-SELECTION.
      PERFORM gather_quot_data.
      PERFORM gather_mat_data.
      PERFORM gather_ansi_data.
      PERFORM gather_customer_data.
      PERFORM gather_price_data.
      PERFORM process_consolidate_data.
    TOP-OF-PAGE.
      PERFORM write_header_data.
      PERFORM write_column_heading.
    END-OF-SELECTION.
      SET PF-STATUS 'XLS'.
      PERFORM display_output.
    AT USER-COMMAND.
      CASE sy-ucomm.
        WHEN 'XLS'.
          LOOP AT iresult INTO result_wa.
            CLEAR excel_wa.
            excel_wa-posnr       = result_wa-posnr.
            excel_wa-matnr       = result_wa-matnr.
            excel_wa-pmatn       = result_wa-pmatn.
            excel_wa-zansicat    = result_wa-zansicat.
            excel_wa-zansigrd    = result_wa-zansigrd.
            excel_wa-zcurrvaltnarea = result_wa-zcurrvaltnarea.
            excel_wa-zcurrcstusd = result_wa-zcurrcstusd.
            excel_wa-zzbrndnm    = result_wa-zzbrndnm.
            excel_wa-zqedscgrp   = result_wa-zqedscgrp.
            excel_wa-mstav       = result_wa-mstav.
            excel_wa-prodh       = result_wa-prodh.
            excel_wa-kwmeng      = result_wa-kwmeng.
            excel_wa-lprc        = result_wa-lprc.
            excel_wa-sprc        = result_wa-sprc.
            excel_wa-netpr       = result_wa-netpr.
            excel_wa-mrgn        = result_wa-mrgn.
            APPEND excel_wa TO iexcel.
          ENDLOOP.
          PERFORM set_up_xxl_structures.
          PERFORM download_xxl.
        WHEN OTHERS.
      ENDCASE.
      FREE: ivbpa, imat, ikna1, ivbap, ikonv, iresult, ws.
    *&      Form  set_up_xxl_structures
          text
    FORM set_up_xxl_structures.
      REFRESH: it_otext, it_sema, it_hkey, it_vkey.
      CLEAR:   result_wa, ivbpa_wa, it_otext, ws.
      MOVE  sy-repid  TO ws-title-repid.
      MOVE 'Section'  TO ws-title-reppart.
      WRITE sy-uzeit  TO ws-title-uzeit USING EDIT MASK '__:__'.
      MOVE  ws-title  TO ws-xxl-title.
      READ TABLE iresult INTO result_wa
                         WITH KEY vbeln = s_vbeln-low.
      READ  TABLE  ivbpa INTO ivbpa_wa
                         WITH KEY vbeln = s_vbeln-low
                                  parvw = 'AG'.
      CONCATENATE ivbpa_wa-kunnr '/'
                  ivbpa_wa-name1 INTO ws-soldto.
      CLEAR ivbpa_wa.
      READ  TABLE  ivbpa INTO ivbpa_wa
                         WITH KEY vbeln = s_vbeln-low
                                  parvw = 'WE'.
      CONCATENATE ivbpa_wa-kunnr '/'
                  ivbpa_wa-name1 INTO ws-shipto.
      CLEAR ivbpa_wa.
      READ  TABLE  ivbpa INTO ivbpa_wa
                         WITH KEY vbeln = s_vbeln-low
                                  parvw = 'ZT'.
      IF   ivbpa_wa-kunnr EQ space.
        CLEAR ivbpa_wa.
        READ  TABLE  ivbpa INTO ivbpa_wa
                           WITH KEY vbeln = s_vbeln-low
                                    parvw = 'AG'.
      ENDIF.
      CONCATENATE ivbpa_wa-kunnr '/'
                  ivbpa_wa-name1 INTO ws-tparent.
      DO.
        CLEAR: isema_wa, ihkey_wa, iotxt_wa, iptxt_wa, ivkey_wa.
        ASSIGN COMPONENT sy-index OF STRUCTURE hdtxt1_wa TO <hdtxt1_wa>.
        ASSIGN COMPONENT sy-index OF STRUCTURE hdtxt2_wa TO <hdtxt2_wa>.
        IF sy-subrc <> 0.
          EXIT.
        ENDIF.
        CASE <hdtxt1_wa>.
          WHEN 'Quotation#'.
            <hdtxt2_wa> = 'Quotation#'.
          WHEN 'Quote Date'.
            <hdtxt2_wa> = 'Quote Date'.
          WHEN 'Rep Date'.
            <hdtxt2_wa> = 'Rep Date'.
          WHEN 'Pric List Typ & Currency'.
            <hdtxt2_wa> = 'Pric List Typ & Currency'.
          WHEN 'Sold To'.
            <hdtxt2_wa> = 'Sold To'.
          WHEN 'Ship To'.
            <hdtxt2_wa> = 'Ship To'.
          WHEN 'Top Parent'.
            <hdtxt2_wa> = 'Top Parent'.
          WHEN 'Sales Org/Sales Dist/CPA'.
            <hdtxt2_wa> = 'Sales Org/Sales Dist/CPA'.
          WHEN 'Net Sales'.
            <hdtxt2_wa> = 'Net Sales'.
        ENDCASE.
        MOVE : 1           TO ihkey_wa-col_no,
               sy-index    TO ihkey_wa-row_no,
               <hdtxt2_wa> TO ihkey_wa-col_name.
        APPEND ihkey_wa TO it_hkey.
        CLEAR ihkey_wa.
        CASE <hdtxt1_wa>.
          WHEN 'Quotation#'.
            <hdtxt2_wa> = result_wa-vbeln.
          WHEN 'Quote Date'.
            WRITE result_wa-erdat TO ws-dat1.
            <hdtxt2_wa> = ws-dat1.
          WHEN 'Rep Date'.
            WRITE result_wa-repdt TO ws-dat2.
            <hdtxt2_wa> = ws-dat2.
          WHEN 'Pric List Typ & Currency'.
            CONCATENATE result_wa-pltyp '/'
                        result_wa-waers INTO <hdtxt2_wa>.
          WHEN 'Sold To'.
            <hdtxt2_wa> = ws-soldto.
          WHEN 'Ship To'.
            <hdtxt2_wa> = ws-shipto.
          WHEN 'Top Parent'.
            <hdtxt2_wa> = ws-tparent.
          WHEN 'Sales Org/Sales Dist/CPA'.
            CONCATENATE result_wa-vkorg  '/'
                        result_wa-bzirk  '/'
                        ivbpa_wa-kvgr3
                        INTO <hdtxt2_wa>.
          WHEN 'Net Sales'.
            <hdtxt2_wa> = result_wa-netwr.
        ENDCASE.
        MOVE : 2           TO ihkey_wa-col_no,
               sy-index    TO ihkey_wa-row_no,
               <hdtxt2_wa> TO ihkey_wa-col_name.
        APPEND ihkey_wa TO it_hkey.
      ENDDO.
      DO.
        CLEAR: isema_wa, ihkey_wa, iotxt_wa, iptxt_wa, ivkey_wa.
        ASSIGN COMPONENT sy-index OF STRUCTURE sema_wa TO <sema_wa>.
        IF sy-subrc NE 0.
          ASSIGN COMPONENT sy-index OF STRUCTURE clhd_wa TO <clhd_wa>.
          IF sy-subrc EQ 0.
            MESSAGE e193 WITH 'OFIL Structures out of synch-Contact IT'.
          ENDIF.
          EXIT.
        ENDIF.
        ASSIGN COMPONENT sy-index OF STRUCTURE clhd_wa TO <clhd_wa>.
        IF NOT <sema_wa> EQ 'NOSHOW'.
          ADD 1 TO ws-xxl-tabix.
          MOVE: ws-xxl-tabix   TO isema_wa-col_no,
                <sema_wa>(3)   TO isema_wa-col_typ,
                <sema_wa>+3(3) TO isema_wa-col_ops,
                ws-xxl-tabix   TO isema_wa-col_src.
          APPEND isema_wa TO it_sema.
          IF ws-xxl-tabix LE ws-xxl-vrtkeys.
            MOVE: ws-xxl-tabix TO ivkey_wa-col_no,
                  <clhd_wa>    TO ivkey_wa-col_name.
            APPEND ivkey_wa TO it_vkey.
          ELSE.
            ADD 1 TO ws-xxl-attcols.
            MOVE: ws-xxl-attcols TO ihkey_wa-col_no,
                  10             TO ihkey_wa-row_no,
                  <clhd_wa>      TO ihkey_wa-col_name.
            APPEND ihkey_wa TO it_hkey.
          ENDIF.
        ENDIF.
      ENDDO.
    ENDFORM.                    " set_up_xxl_structures
    *&      Form  download_xxl
          text
         -->P_IHQEXCEL  text
    FORM download_xxl.  "TABLES  iexcel STRUCTURE excel_wa.
      DESCRIBE TABLE iexcel LINES ws-xxl-count.
      ws-xxl-from = 1.
      ws-xxl-to = c_psize.
      DO.
        IF ws-xxl-from GT ws-xxl-count.
          EXIT.
        ENDIF.
        IF ws-xxl-to GT ws-xxl-count.
          MOVE ws-xxl-count TO ws-xxl-to.
        ENDIF.
        ADD 1 TO ws-xxl-suffix.
        MOVE ws-xxl-suffix TO: ws-xxl-name+6(2),
                               ws-xxl-title+36(2).
        CALL FUNCTION 'XXL_FULL_API'
             EXPORTING
                  n_vrt_keys       = ws-xxl-vrtkeys
                  n_att_cols       = ws-xxl-attcols
                  n_hrz_keys       = ws-xxl-hrzkeys
                  data_starting_at = ws-xxl-from
                  data_ending_at   = ws-xxl-to
                  filename         = ws-xxl-name
                  header_1         = space
                  sema_type        = 'X'
                  so_title         = ws-xxl-title
             TABLES
                  data             = iexcel
                  hkey             = it_hkey
                  online_text      = it_otext
                  print_text       = it_ptext
                  sema             = it_sema
                  vkey             = it_vkey
             EXCEPTIONS
                  data_too_big     = 1
                  file_open_error  = 2
                  file_write_error = 3
                  inv_winsys       = 4
                  inv_xxl          = 5.
        CASE sy-subrc.
          WHEN 1.
            MESSAGE e193 WITH 'dim_mismatch_data'.
          WHEN 2.
            MESSAGE e193 WITH 'file_open_error'.
          WHEN 3.
            MESSAGE e193 WITH 'file_write_error'.
          WHEN 4.
            MESSAGE e193 WITH 'inv_winsys'.
          WHEN 5.
            MESSAGE e193 WITH 'inv_xxl'.
        ENDCASE.
        ADD c_psize TO: ws-xxl-from,
                                ws-xxl-to.
      ENDDO.
    ENDFORM.                    " download_xxl

    Hello Friend,
    You can use GUI_DOWNLOAD FM to get the excel header if that's the only specific requirement.
    [Download Excel including header |Download Excel including header;
    Hope this helps.
    BR,
    Suhas

Maybe you are looking for

  • -36 I/O Error copying from one external drive to another? Ugh...help?!?

    Hardware: Apple Powermac Dual 2.5 GHz G5 512 MB RAM External Drive 1: LaCie 250 GB (Firewire 800) (contains 150 GB data) (formatted MacOS Extended) External Drive 2: LaCie 400 GB (Firewire 800) (contains NO DATA) (formatted MacOS Extended Journaled)

  • Error occur while protecting the document using RMS sharing application

    The set-up in which the error occurs has the following details, Server name :    hcdc1.ad.com RMS SCP :            adrms.ad.com http:// adrms.ad.com /_wmcs/licensing/license.asmx http:// adrms.ad.com /_wmcs/certification/certification.asmx Unable to

  • Question on updating Moved Archives

    Procedural questions: I have a mailbox that receives throughout the day every day firewall logs. These are then automatically moved into monthly folders, and the monthly folders are automatically moved to archives. Since the archive was getting to be

  • Something is wrong with my WSDL

    Hi. I'm new at web services, and I'm trying to make a simple hello world example work. I've previously written the WSDL in RPC/literal, but I neede to rewrite it to document/literal to fit the JSR 172 JME specification, and now it doesn't work any mo

  • Orace Service billing

    Hi All I am working on some proof of concept for billing Service contract. I have created service/usage items but I am having diffculties in creating contract line. Appreicate if you can share with me any instructions(BR100/TR) on creating contract l