Transfer Dataset

Hi all,
I have declared an internal table in the following way.
tyeps: begin of tys_sample,
          a(9),
          b(9),
          end of tys_sample.
data: gt_sample type standard table of tys_sample,
        gs_sample type tys_sample.
made some operations on the internal table and appended with data, now I need to transfer this internal table content into a dataset.
Did in the following way.
open dataset gv_file for input in text mode " gv_file contains the file path.
transfer gt_sample to dataset gv_file.
while doing syntax check for this program I am getting an error that GT_sample is not an internal table.
I can efford to loop the internal table into work area and pass the work are to the file.
Please let me know the answer. It is urgent.
Thanks in advance.
Regards,
Mungala.

Hey praveena,
There is no direct way to move internal table directly to a file. You will have to loop through each record.
IF you dont wanna move records to work area then, define header line for internal table:
tyeps: begin of tys_sample,
a(9),
b(9),
end of tys_sample.
data: gt_sample type standard table of tys_sample <b>WITH HEADER LINE</b>
gs_sample type tys_sample.
open dataset gv_file for input in text mode " gv_file contains the file path.
loop at GT_SAMPLE.
<b>transfer gt_sample to gv_file</b>.
ENDLOOP.

Similar Messages

  • Short dump in transfer dataset  help me out

    hi to all experts,
      my requirement is to extract some records from z table.insert some records and download it in a text file and upload into the program and bring the file into application server using open dataset close and transfer dataset .here is my code. its giving a short dump in transfer dataset
    message in short dump is transfer f to fname.
              f cannot be non-char like field
    REPORT  ZB14HAI_DATATRANSFER1                   .
    DATA : IT_emp LIKE TABLE OF ZB14hai_EMP with header line,
           WA_emp LIKE LINE OF IT_emp.
    SELECT * FROM ZB14hai_EMP INTO TABLE IT_emp.
    WA_emp-EMPNO   = '10'.
    WA_emp-EMPNAME   = 'FAHEEM'.
    WA_EMP-EMPSAL  = '34567'.
    WA_EMP-EMPJD   = '19122000'.
    WA_EMP-DEPTNO  = '20'.
    INSERT WA_EMP INTO IT_EMP INDEX  9.
    WA_EMP-EMPNO   = '11'.
    wa_emp-empname   = 'VAHID'.
    WA_EMP-EMPSAL  = '45678'.
    WA_EMP-EMPJD   = '19122000'.
    WA_EMP-DEPTNO  = '20'.
    INSERT WA_EMP INTO IT_EMP INDEX 10.
    WA_EMP-EMPNO   = '12'.
    wa_emp-empname   = 'AHMED'.
    WA_EMP-EMPSAL  = '90000'.
    WA_EMP-EMPJD   = '19122000'.
    WA_EMP-DEPTNO  = '30'.
    INSERT WA_EMP INTO IT_EMP INDEX 11.
    WA_EMP-EMPNO   = '13'.
    wa_emp-empname   = 'SRINIVAS'.
    WA_EMP-EMPSAL  = '45678'.
    WA_EMP-EMPJD   = '19122000'.
    WA_EMP-DEPTNO  = '30'.
    INSERT WA_EMP INTO IT_EMP INDEX 12.
    WA_EMP-EMPNO   = '14'.
    wa_emp-empname   = 'KRISHNA'.
    WA_EMP-EMPSAL  = '432123'.
    WA_EMP-EMPJD   = '19122000'.
    WA_EMP-DEPTNO  = '40'.
    INSERT WA_EMP INTO IT_EMP INDEX 13.
    CALL FUNCTION 'GUI_DOWNLOAD'
       EXPORTING
       BIN_FILESIZE                  =
         FILENAME                      = 'C:\FAHEEM\EMPLOYEE.TXT'
       FILETYPE                      = 'ASC'
       APPEND                        = ' '
         WRITE_FIELD_SEPARATOR         = 'X'
       HEADER                        = '00'
       TRUNC_TRAILING_BLANKS         = 'X'
       WRITE_LF                      = 'X'
       COL_SELECT                    = 'X'
       COL_SELECT_MASK               = ' '
       DAT_MODE                      = ' '
    IMPORTING
       FILELENGTH                    =
       TABLES
         DATA_TAB                      = IT_EMP
      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.
    else.
    message i000(zhnc) with 'downloaded successful'.
    ENDIF.
    clear it_emp.
    clear wa_emp.
    CALL FUNCTION 'GUI_UPLOAD'
       EXPORTING
         FILENAME                      = 'C:\FAHEEM\EMPLOYEE.TXT'
       FILETYPE                      = 'ASC'
         HAS_FIELD_SEPARATOR           = 'X'
       HEADER_LENGTH                 = 0
         READ_BY_LINE                  = 'X'
       DAT_MODE                      = ' '
    IMPORTING
       FILELENGTH                    =
       HEADER                        =
       TABLES
         DATA_TAB                      = IT_EMP
      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
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ELSE.
    MESSAGE I000(ZHNC) WITH 'UPLOAD SUCCESSFUL'.
    ENDIF.
    DATA : FNAME(90) VALUE 'j:/ hai.txt'.
    OPEN DATASET FNAME FOR OUTPUT IN TEXT MODE ENCODING DEFAULT .
    IF SY-SUBRC = 0.
      WRITE : / 'FILE OPENED  FOR OUT PUT'.
    ELSE.
      WRITE : /'FILE NOT OPENED'.
    ENDIF.
    LOOP AT IT_emp into wa_emp.
      TRANSFER it_emp TO FNAME.
    ENDLOOP.
    CLOSE DATASET FNAME.
    IF SY-SUBRC = 0.
      WRITE : / 'FILE CLOSED'.
    ELSE.
      WRITE : /'FILE NOT CLOSED'.
    ENDIF.

    Hi,
    to open a data set, you need to have the path for the application server file, to see the application server files. goto AL11 transaction code, there you will find the directories then inside it you will find sub directories then you will find the file names, there you need to open the file using the open datasets ..
    you have written DATA : FNAME(90) VALUE 'j:/ hai.txt'. , but this is not a application server file name, just goto AL11 then you will find the file names and give the correct path
    Regards
    Sudheer

  • Error when uploading a file

    hi
    im uploading a file using the GUI_UPLOAD and when im doing the command
    OPEN DATASET x_file FOR INPUT IN TEXT MODE ENCODING DEFAULT MESSAGE msgid.
    Its retrurning me an error 'No such file or directory'
    The file does exist

    Hi,
    Input file is in presentation server means use GUI_UPLOAD
    If it is in application server then only you need use
    OPEN DATASET
    READ DATASET
    TRANSFER DATASET
    CLOSE DATASET
    Hope it will helps

  • How to create the log file?

    Hi,
    I am working with the transcation f-30, But this question is on technical area.
    So after complition of BDC program excution, if you go for this screen in ALL DISPLAY MODE , you will get one list of documents, which are POSTED or SIMULATED.
    So Now my question is,
    I want to save this records as a LOG FILE to application server. For this I am having selection screen parameter too.
    But how can I Transfer this list to the output file?
    Thanks,
    Naveen Inuganti

    Hi
    U need to "write" the log in the file instead of in the list.
    See the help for OPEN DATASET, TRANSFER DATASET statament
    Max

  • Function like GUI_UPLOAD/GUI_DOWNLOAD for background

    Is there a function or functions that work the same way as GUI_UPLOAD and GUI_DOWNLOAD but can be run both in the foreground and background?

    GUI_UPLOAD and GUI_DOWNLOAD can only work in the foreground.  The reason for this is that they use some code which reside on the frontend PC.  A background process knows nothing of the PC connected thru SAPgui. In order to "download" data to files, you must write the files to the application layer using OPEN DATASET, TRANSFER DATASET, CLOSE DATASET.
    Regards,
    Rich Heilman

  • BAPI_DOCUMENT_CREATE2 fails in Background

    Hi everyone,
    I wrote an ABAP-report calling BAPI 'BAPI_DOCUMENT_CREATE2'.
    This ABAP has to create a document and upload files per FTP into DMS (Checkin)
    Works Online fine (cause the BAPI avoids FTP as a GUI is online available)  but miserably fails in background:
    Message: RFC callback calls are not allowed in the ABAP...
    This message comes from a failed call of the FM 'SYSTEM_START_REG_SERVER'
    in the FM  'CV120_FTP_START_REG_SERVER' as described in an old thread (Error in Check in of Originals by BAPI In background)
    Sample of the BAPI-call:
      CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
        EXPORTING
          documentdata         = documentdata
          pf_ftp_dest          = 'SAPFTPA'
        IMPORTING
          documenttype         = documenttype
          documentnumber       = documentnumber
          documentpart         = documentpart
          documentversion      = documentversion
          return               = return
        TABLES
          documentdescriptions = documentdescriptions
          objectlinks          = objectlinks
    *      documentstructure    = documentstructure.
    *      documentfiles        = documentfiles
    *      documentstructure    = documentstructure.
          documentfiles        = documentfiles.
    I tried a lot, even in 2 steps (first create the doc per BAPI, second checkin per call of CVAPI_DOC_CHECKIN)
    but in everycase, i always get the same problem...
    Any help will greatly be appreciated : i daily and manually (ok, even if 1 report launch per day is sufficent) have to upload aprox.
    2000 PDFs ...
    Thanks in advance for answering...
    Edited by: Guillaume Delorme on May 5, 2010 11:08 AM

    Hi everyone,
    Due to holidays, i gotta  post under another account...
    There was a logical mistake in my problem:
    -> i thought i had to do the physical checkin of the files while or after the BAPI_DOCUMENT_CREATE2-call.
    In my case, the content-server is reachable from the app-server as it's been defined in the AL11.
    The content-server is directly defined in table TDWD with complete directorypath as a vault-server (NO DVA-VAULT).
    The SAP-FBs do actually handle two cases for file-checkin that can suit my concern::
    -> DVA-Vault?->FTP-Connect for filetransfer
    -> No DVA-Vault? ->Local GUI-Upload  for filetransfer
    For background-processing fails always the GUI-Upload -> normal
    I don't use any DVA-Vault -> i must do something else.
    Solution: Ridiculously easy...
    *-> FIRST :Physical Checkin over a stupid TRANSFER DATASET for the file.
    *If OK:
    *->SECOND: Call of  BAPI_DOCUMENT_CREATE2 with reference to the transferred File
    *      ->Structure BAPI_DOC_DRAW2:
    *          -> Short Dataname in BAPI_DOC_DRAW2-docfile1
    *          -> Datacarrier in BAPI_DOC_DRAW2-datacarrier1 (actually the key for the VAULT-server)
    *          -> App.type in BAPI_DOC_DRAW2-wsapplication1.
    *          -> Description, Documentype, username, laboratory are must-fields with my customizing too.
    *       ->Internal Table BAPI_DOC_FILES2:
    *          -> Short Dataname in BAPI_DOC_FILES2-docfile
    *          -> Datacarrier in  BAPI_DOC_FILES2-storagecategory (actually the key for the VAULT-server)
    *          -> App.type in BAPI_DOC_FILES2-wsapplication.
    *          -> no other fields required for this table
    *       ->(...)
    *endif.
    Now it runs fine every 5 minutes and i handle about 3000 documents a day...
    I give points to Phillip van den Heever who reminded me the AL11-Setting and i mark this topic solved as soon as i can...
    Thanks to everyone and greets,
    Guillaume Delorme

  • Bapi_Document_Create2: Check In Problem

    Hi All,
    we want to perform Transaction CV01n via FM.
    I tried the BAPI_DOCUMENT_CREATE2 to to the Job but i cant find the correct Parameter to Check in Documents into the Archiv.
    The Parameters lt_files-storagecategory = 'SAP-System' and lt_files-storagecategory = 'VAULT' are shown but the Archiv is missing.
    I found the Destiation Link in Transactin OAC0 (Content repository), it has te Value XY and The Type is ARCHLINK.
    Any Ideas on this toppic?
    Best Regards
    SR

    Hi everyone,
    Due to holidays, i gotta  post under another account...
    There was a logical mistake in my problem:
    -> i thought i had to do the physical checkin of the files while or after the BAPI_DOCUMENT_CREATE2-call.
    In my case, the content-server is reachable from the app-server as it's been defined in the AL11.
    The content-server is directly defined in table TDWD with complete directorypath as a vault-server (NO DVA-VAULT).
    The SAP-FBs do actually handle two cases for file-checkin that can suit my concern::
    -> DVA-Vault?->FTP-Connect for filetransfer
    -> No DVA-Vault? ->Local GUI-Upload  for filetransfer
    For background-processing fails always the GUI-Upload -> normal
    I don't use any DVA-Vault -> i must do something else.
    Solution: Ridiculously easy...
    *-> FIRST :Physical Checkin over a stupid TRANSFER DATASET for the file.
    *If OK:
    *->SECOND: Call of  BAPI_DOCUMENT_CREATE2 with reference to the transferred File
    *      ->Structure BAPI_DOC_DRAW2:
    *          -> Short Dataname in BAPI_DOC_DRAW2-docfile1
    *          -> Datacarrier in BAPI_DOC_DRAW2-datacarrier1 (actually the key for the VAULT-server)
    *          -> App.type in BAPI_DOC_DRAW2-wsapplication1.
    *          -> Description, Documentype, username, laboratory are must-fields with my customizing too.
    *       ->Internal Table BAPI_DOC_FILES2:
    *          -> Short Dataname in BAPI_DOC_FILES2-docfile
    *          -> Datacarrier in  BAPI_DOC_FILES2-storagecategory (actually the key for the VAULT-server)
    *          -> App.type in BAPI_DOC_FILES2-wsapplication.
    *          -> no other fields required for this table
    *       ->(...)
    *endif.
    Now it runs fine every 5 minutes and i handle about 3000 documents a day...
    I give points to Phillip van den Heever who reminded me the AL11-Setting and i mark this topic solved as soon as i can...
    Thanks to everyone and greets,
    Guillaume Delorme

  • Extract & Store pdf SD billing document from archivelink content Repository

    Hello friends,
    Can some one give me a hint on this :
    I have a requirement to create a program which will extract the pdf SD billing document from archivelink content Repository and will save pdf files on application servers's directory.
    We have business Object, Content Repository ID, Document type know for this.
    thanks
    ashish

    use FM : ARCHIVOBJECT_GET_TABLE to get the content in bin format..
    then use open dataset, transfer dataset, close dataset to store that in OS level.. task done..
    you can even use GUI_DOWNLOAD if you want to download it to presentation server.

  • ABAP program to make a Hierarchy flatfile structure?

    Hi,
    Is there any ABAP program by which we can make a flat file structure in the conventional format ? ( Nodeid,Infoobject,Nodename etc---)
    Because here i just cannot make the flat file manually as the document i have is huge one, having somany nodes and levels that it is almost impossible to write down on a paper too!
    Any suggestions?
    Thanks,
    Ravi

    Hi,
    I have used the following function modules to breakdown the hierarchy. You can write a simple abap program and download the heirarchy breakdown.
    CLAF_CLASSIFICATION_OF_OBJECTS - this function module will return the class information for the hierarchy.
    Use the internal table i_class (filled by the above function module) and pass the relevant fields to the FM CC_LS_GET_CLASS_HIER_STRUCTURE.
    The entire hierarchy then becomes available in the table 'class_structure'. Use appropriate methods to download to the presentation ( FM WS_DOWNLOAD GUI_DOWNLOAD) / application servers (OPEN Dataset/Transfer Dataset/CLose dataset).

  • Program to create a trigger file

    Hello,
    I have an Open Hub destination set up to run in a process chain, in this process chain I also need an program to create a blank trigger file (<openhubname>.trg). how woudl i create this program to create and drop this trigger file to the same directory as the open hub file is being extracted to.  Thanks in advance.

    Just do a:
    open dataset.  "for write.
    transfer dataset.
    close dataset.
    Make sure you don;t even write a space as space is a char so file size will be 1 byte.
    Don't forget to reward points.
    Sougata.

  • How can i read local excel file into internal table in webdynpro for abap a

    Could someone tell me how How can i read local excel file into an internal table in webdynpro for abap application.
    thank u for your reply

    Deep,
    File manuplations...............................
    1. At the presentation level:
    ->GUI_UPLOAD
    ->GUI_DOWNLOAD
    ->CL_GUI_FRONTEND
    2. At the application server level:
    ->OPEN DATASET : open a file in the application server for reading or writing.
    ->READ DATASET : used to read from a file on the application server that has been opened for reading
    -> TRANSFER DATASET : writing data to a file.
    -> CLOSE DATASET : closes the file
    -> DELETE DATASET : delete file
    If file is on the local PC,use the function module GUI_UPLOAD to upload it into an internal table by passing the given parameters......
    call function 'GUI_UPLOAD'
    exporting
    filename = p_file
    filetype = 'ASC'
    has_field_separator = '#'
    tables
    data_tab = t_data
    p_file : excel file path.
    t_data : internal table
    <b>reward points if useful.</b>
    regards,
    Vinod Samuel.

  • Creating a file to be used by report ROIUH_LOAD_JEINTF for journal entry

    Hello everyone,
    My doubt is related to the PRA module -
    I have to create a file to be used by program ROiUH_LOAD_JEINTF for journal entry creation. There are other programs also creating a similar file to what I am expected to create.
    When I observe the existing programs, they have not used OPEN DATASET statement, instead directly used the TRANSFER dataset and then CLOSE DATASET.
    What that does is it creates a file on the app server in a different format with only 1 line even if there may be like 10 lines of journal entry. The file mainly contains # which seems like some internal coding by the system.
    When I tried using the OPEN DATASET statement, it wrote all the lines to the app server that were there in my internal table.
    However, when I do not use the OPEN DATASET statement, it creates a file with just one line and maily # instead of the actual data from internal table.
    Can any one explain what difference does it make to the system when we do not use the OPEN DATASET statement.
    You help would be highly appreciated.
    Thanks and Regards,
    Shipra.

    Hello Satish,
    Thank you for your response.
    I think I was not clear enough about my doubt. I do not have any confusion about what OPEN DATASET would do.
    In my case, there is a file being written to the app server without using an OPEN DATASET for OUTPUT statement. The Z program directly calls a TRANSFER statement.
    The file that is created on the app server looks like:
    7042008-11-01                   000200100840 ######RD##################203               #### #####10012888                #####RI01            MC3                                                                               
    This file is used by the program ROIUH_LOAD_JEINTF. There are several lines in the internal table for Journal Entry creation but only 1 line shows in the file. However, when you debug the program ROIUH_LOAD_JEINTF with the above filename, you would see that it takes up all the JE lines that were passed from the previous program (the Z program) which created this file.
    However, when I changed the Z program to have an OPEN DATASET statement, it had all the lines displayed in the file, the file was very readable.
    I just wanted to know how does the system write to app server when no OPEN DATASET statement is written in the program.
    Hope I am clear this time. Thanks again.
    Regards,
    Shipra.

  • PDF file to be doewnloaded to application server.

    Hi ,
    Can we download a PDF converted file to the application server.
    Will the commands OPEN DATASET , READ DATASET and TRANSFER DATASET work out for PDF file format.
    Pls. provide your ideas.
    Thanks,
    stock

    Hi
    report ztest.
    data: begin of itab occurs 0,
            field(256),
          end   of itab.
    data: dsn(100) value '/usr/sap/xfr/FIS/testpdf',
          length  like sy-tabix,
          lengthn like sy-tabix.
    call function 'GUI_UPLOAD'
         exporting
              filename   = 'c:\temp\test.pdf'
              filetype   = 'BIN'
         importing
              filelength = length
         tables
              data_tab   = itab.
    open dataset dsn for output in binary mode.
    loop at itab.
      transfer itab-field to dsn.
    endloop.
    close dataset dsn.
    clear   itab.
    refresh itab.
    *- To crosscheck if it went well
    open dataset dsn for input in binary mode.
    do.
      read dataset dsn into itab-field.
      if sy-subrc = 0.
        append itab.
      else.
        exit.
      endif.
    enddo.
    call function 'GUI_DOWNLOAD'
         exporting
              filename     = 'c:\temp\testn.pdf'
              filetype     = 'BIN'
              bin_filesize = length
         importing
              filelength   = lengthn
         tables
              data_tab     = itab.
    Regards,
    Raj

  • Uploading from File Server

    hi,
        i have a BDC program to be done however the file is in File server so wht shud i do inorder to access the file the file server for example the path is given :
    127.1.1.10\SharedFolder\20070704.txt
    and i have authorization set on it and i have been given a user id and password to access the folder so wht shud i be doin to read the file from the given location

    Hi
    Use the Tcode CG3Y to bring the file from Application to Local server and write the ordinary BDC code
    other wise
    Use OPEN DATASET concept..
    READ dataset
    TRANSFER dataset
    CLOSE dataset
    see the sample code
    START-OF-SELECTION.
    ld_file = p_infile.
    OPEN DATASET ld_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc NE 0.
    ELSE.
      DO.
        CLEAR: wa_string, wa_uploadtxt.
        READ DATASET ld_file INTO wa_string.
        IF sy-subrc NE 0.
          EXIT.
        ELSE.
          SPLIT wa_string AT con_tab INTO wa_uploadtxt-name1
                                          wa_uploadtxt-name2
                                          wa_uploadtxt-age.
          MOVE-CORRESPONDING wa_uploadtxt TO wa_upload.
          APPEND wa_upload TO it_record.
        ENDIF.
      ENDDO.
      CLOSE DATASET ld_file.
    ENDIF.
    Reward points for useful Answers
    Regards
    Anji

  • What is the Unix command to concatenate two files and merget it in to one ?

    Hi Experts,
    I have three jobs and each job creates a file. I want to run one more job which clubs these three files and merges it in to one.
    I know the process of opening each file and appending it in to the target file using DATASET concept.
    Instead of that, I want any UNIX Shell command so that I can call that directly from ABAP and execute it
    Any help on this would be highly appreciated
    Thanks in advance.
    Babu Kilari

    Hello Babu,
    We can very well call an OS command from within ABAP, but in your case, I don't think that is really required. Please find below a logic that might be helpful to you.
    You have three files, whose contents needs to be merged into a single file.
    Read the contents of each file and store it into an internal table.
    DATA: command LIKE rs37a-line.
    DATA: BEGIN OF tabl OCCURS 0,
              line(2000),
          END OF tabl.
    command = 'cat /tmp/file1.txt'.
    CALL 'SYSTEM' ID 'COMMAND' FIELD command
                  ID 'TAB'     FIELD tabl-*sys*.
    Internal table 'tabl' will contain the contents of the file.
    Accumulate all the contents into a single file and upload to the application server using OPEN DATASET, TRANSFER DATASET and CLOSE DATASET.
    Let me know if you need a more detailed explanation.
    Regards
    Sabu.

Maybe you are looking for

  • Flashplayer doesn't work on some sites, but works on others?

    There are a lot of sites on which the flashplayer doesn't work, eventhough I have the latest version installed. It does work on youtube for example. Please help me!

  • No Authorization Issue in report

    Hi all, I am facing some  issue, I am not able to load data for some particular CompanyCodes(Say 100). Whereas i am able to load the same CompanyCode for other reports. On analyzing the joblog, it is displaying the message 'No Authorization for compa

  • Reg: Time lapses in webdynpro

    Hi, How can i see the time lapsed for webdynpro app in the portal when i execute it? Thanks in advance.

  • Incoming calls adjust computer volume unwarranted

    A few times in the past I've tried to use "supported devices" with my Mac and newest version of Lync via USB. This didn't work since you still needed to register the devices independently through the device itself (Polycom CX600, Snom 821, etc.) inst

  • Zen Neeon: Playlist h

    i got my zen neeon a few mths ago when it was just released not long in the market. the player seems to have problems with the playlist i created. it keeps hanging the moment i selected the playlist to play. sometimes it even 'locks' the player (the