DME output files in CSV format

Hi,
Can anybody please let me know whether we can get the DME output files in CSV format using program RFFOJP_L?
Your help and time will be really appreciate.
Thanks & Regards,
Niki Shah
Edited by: Niki Shah on Aug 5, 2009 10:14 AM

No it will not work. You need full Photoshop (CS5)

Similar Messages

  • Saving the output of a .sql file in .csv format

    Hi,
    I am saving the output of a .sql file in .csv format. But the problem is , the record of few columns have "new line" character in it, so when it is getting saved in .csv format, those records are coming in multiple rows, but they should come in one single row in single block. Please advise how to overcome this problem.
    Regards,
    Niraj

    Hi Guys,
    I guess, there is a misunderstanding.
    He is talking about the issue caused as a result of the data containing a "CRLF" ( Carriage return Line feed ) .
    That is mainly a data issue.
    The query i presume, must be right.
    I guess you should be able to fix it using some string functions.
    Some thing similar to this
    CREATE TABLE ASH (NAME VARCHAR2(10))
    SELECT REPLACE(NAME, CHR(13)||CHR(10), 'ISH') FROM ASH;
    SELECT REPLACE(NAME, CHR(10), 'ISH') FROM ASH;
    SELECT REPLACE(NAME, CHR(13), 'ISH') FROM ASH;
    depending on the type of new line whether it is CR or LF. or CRLF.
    Regards
    Ashish/-

  • Need help in writing data to a flat file in .csv format

    Hi All,
    could you please show with a sample example to write data in .csv format using UTL_file.
    The result of the refcursor i want to write to a file in .csv format.
    How can i achieve this.
    Thx

    Hi,
    There are two ways to acheive this.
    First and which I prefer is creating a SQL script which will generate csv file at the specified location in CSV format. And then this SQL script can be called from your cron job similar to how you call stored procedure. Following is pseudo code that can be used -
    set linesize 500
    set echo off
    set feedback off
    set prompt off
    set pagesize 0
    spool <name of the csv file>.csv
    <Your select statement>;
    spool offPut select statement delimiting columns you want to use with ','. E.g. following query should create a CSV file named as abc.csv with one record and 2 columns delimited by comma. First column is ENO and second column is ENAME.
    set linesize 500
    set echo off
    set feedback off
    set prompt off
    set pagesize 0
    spool abc.csv
    select ENO || ',' || ENAME from employee;
    spool offSecond, you can write a PLSQL procedure and then call this procedure from cron job. There is a generic procedure shared by BluShadow some time back which is a very good example for this. Please refer to following link for this solution -
    REF Cursor creating CSV files
    I will suggest to use first method above if possible since it will be faster and less complicated in my opinion. Second method is recommended for scenarios where select statement is created dynamically and cannot be written during development.
    Hope this solves your purpose.
    Cheers,
    Anirudha

  • Issue while downloading file in .CSV format

    Hi,
    I need to download the file in .CSV format.
    I hade used FM SAP_CONVERT_TO_CSV_FORMAT  and then used GUI_Download.
    Now when I am opening file which is downloaded, it gives all the data in a single column. If there are 5 fields in my table, the generated file gives the data of all the 5 fields in a single column.
    Could you please help?

    Hi try wi th the following code.
    TYPE-POOLS : truxs.
    DATA: t_file TYPE STANDARD TABLE OF type_file.
    data:t_conv_data TYPE truxs_t_text_data.
    CALL FUNCTION 'SAP_CONVERT_TO_TEX_FORMAT'
      EXPORTING
        i_field_seperator          = ', '
      TABLES
        i_tab_sap_data             = t_file
    CHANGING
       i_tab_converted_data       = t_conv_data
    EXCEPTIONS
       conversion_failed          = 1
       OTHERS                     = 2.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename                = 'C:\TESTCSV.CSV'
        filetype                = 'ASC'
        write_field_separator   = '  '
      TABLES
        data_tab                = t_file
       fieldnames              = names
      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.

  • ALV Grid to be run in background & to generate output file in Excel format

    I use  REUSE_ALV_GRID_DISPLAY in my program for the ALV output
    My Requirement is Program to be run in a background since it is getting timed out when executed in foreground and also to generate the output file in Excel format. And we are using 4.6 C version.
    how do i attain this?

    Hello,
    One alternate solution can be :
    Execute your report in background and then send the data to Spool .
    From this spool , you can download the data in excel file.
              SUBMIT xyz TO SAP-SPOOL
                 SPOOL PARAMETERS gt_print_parameters.
    Regards,
    Sandeep

  • Converting flat files to csv format

    hi,
    Iam converting flat files to csv format..the problem is that iam running a script for inserting values.while i run this script it works fine .but while i open this csv file the datas in the excel sheet is not coming in a single line that is for a particular record its moving to second line .there is a break for a single record.so there is a problem in conversion.can anything be done in it this to avoid the breaking of lines
    thanks
    Ratheesh

    YOGenereally, you shouldn't convert from a lossy format AAC or MP3) to another lossy fomrat.
    It's called loss because you lose information when you convert it.
    If you only use these files on the computer and the iPod, I'd recommend AAC. Better quality at same bit rate as MP3.

  • Downloading Excel File in CSV Format

    Hi All,
    How can I Download a file in .CSV Format?
    I am using the below shown code.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
      BIN_FILESIZE                    =
        FILENAME                        = 'C:\Documents and Settings\sandeepp3\Desktop\sample.csv'
        FILETYPE                        = 'DAT'
      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                      = ' '
      WRITE_LF_AFTER_LAST_LINE        = ABAP_TRUE
      SHOW_TRANSFER_STATUS            = ABAP_TRUE
    IMPORTING
      FILELENGTH                      =
      TABLES
        DATA_TAB                        = ITAB
        FIELDNAMES                      = HTAB
    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.
    I am getting the field separator as Tab(SPACE).
    Please Advise

    Hi Anil,
    Try this way.
    REPORT ztest_notepad.
    "Declarations
    TYPE-POOLS :truxs.
    DATA : it_download TYPE truxs_t_text_data.
    DATA: BEGIN OF it_data OCCURS 0,
            arbgb TYPE t100-arbgb,
            msgnr TYPE t100-msgnr,
            text TYPE t100-text,
          END OF it_data.
    START-OF-SELECTION.
      "Select Data
      SELECT * FROM t100
      INTO CORRESPONDING FIELDS OF TABLE it_data UP TO 200 ROWS   WHERE sprsl = sy-langu.
      "Convert SAP to CSV format
      CALL FUNCTION 'SAP_CONVERT_TO_CSV_FORMAT'
        EXPORTING
          i_field_seperator    = ';'
        TABLES
          i_tab_sap_data       = it_data
        CHANGING
          i_tab_converted_data = it_download
        EXCEPTIONS
          conversion_failed    = 1
          OTHERS               = 2.
      IF sy-subrc = 0.
        "Download data using GUI_DOWNLOAD
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            filename = 'C:\test.txt'
            filetype = 'ASC'
          TABLES
            data_tab = it_download.
      ENDIF.
    Thanks
    venkat.O

  • Output files in CMYK format

    Currently using Elements 7 and I want to output files in CYMK format. Contacted Adobe and was told to upgrade to Elements 9. Will this actually work? I cannot find any reference to CMYK format in Elements 9.

    No it will not work. You need full Photoshop (CS5)

  • BW System - F.M to down load the file to CSV format

    Hi All,
    Canm any one plz let me what is the F.M to down load the file to CSV format in BW system

    Hi,
    try using this FM  " /LICMAN/UT_CONVERT_ITAB_2_CSV" to conver the data to CSV. then call GUI_Download to download
    Regards,
    Aditya

  • DME OUTPUT FILE-F110

    Hi Experts,
    I have to replace Belnr of  xbelnr in DME OUTPUT FILE
    genearted by F110.
    How it can be done?
    Regards
    Mohit

    Hi,
    This output is generated via a standard program so u cant change output values. all u can do is copy the standard and customise it to your requirement.
    prog name - J_1i0043.
    search  J43
    tc
    saji

  • Download File In Csv Format

    Hi all,
        I want to create a file on the presentation server with csv format. i used gui_download function. The file is created but it is not csv format.
    it is urgent please can you help e out in this
    I used filetype as 'ASC' then CSV but in vain
    GV_ERR_FNAME = '
    SAM\ERRORFILE.CSV'
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        FILENAME                        = GV_ERR_FNAME
        FILETYPE                        = 'ASC'
        WRITE_FIELD_SEPARATOR           = 'X'
      TABLES
        DATA_TAB                        = GT_ERROR_TAX
    THANKX IN ADV

    Please check out this sample program.
    report zrich_0001.
    data: begin of itab occurs 0,
          fld1(10) type c,
          fld2(10) type c,
          fld3(10) type c,
          end of itab.
    data: begin of iout occurs 0,
          rec(1000) type c,
          end of iout.
    parameters: p_file type localfile default 'C:test.csv'.
    data: file type string.
    start-of-selection.
    * Build the ITAB
      itab-fld1 = 'A'.
      itab-fld2 = 'B'.
      itab-fld3 = 'C'.
      append itab.
      itab-fld1 = 'D'.
      itab-fld2 = 'E'.
      itab-fld3 = 'F'.
      append itab.
      itab-fld1 = 'G'.
      itab-fld2 = 'H'.
      itab-fld3 = 'I'.
      append itab.
    * Build the output internal table from ITAB
    * Concatenate all fields into IOUT-REC
      loop at itab.
        concatenate itab-fld1 itab-fld2 itab-fld3 into iout-rec
                    separated by ','.
        condense iout-rec no-gaps.
        append iout.
      endloop.
    * Now Download
      file = p_file.
      call function 'GUI_DOWNLOAD'
           exporting
                filename = file
           tables
                data_tab = iout
           exceptions
                others   = 22.
    Regards,
    Rich Heilman

  • Need Spool output file in Excel format

    Hi,
    We have background job , which creates a spool output in Internet Explorer format. Customer needs this in Excel format.
    Wondering, if any authorizations to be changed for file type? or this is a set in program level?
    Thanks,
    Sam

    Hi Sam,
                     This need to be fixed at the program level only,so you need an ABAPer to make the changes in out put. There is nothing to do with authorizations.
    Regards,
    Hari.
    PS: Award points if helpful.

  • DMEE Output File missing records

    I'm trying to create a flat file to send payment information to the Bank. I create a format tree that correspond to the Bank Layout using DMEE1 tcode. The request is create a flat file in which only detail records are stored (no headers are needed). After I configure all the payment stuff and run the payment program, the output file only contains one record. My testing scenario include two invoices pointing to a different vendors which are ready to be paid, the file should have two records.
    In addition, the idea is to create an Output file based on the CoCde field (separate files). Could you please help on this issue.

    HI Cristobal:
    Verifying the file I noticed that It has one record including to payment documents. Instead of that I need to records one per payment document. I tried with both options that you mentioned, but both of them creates one record with the two payments documents.
    Could you please let me know what I'm doing wrong?
    Regards...

  • Download the File in CSV format

    hI,
    Can any one tell me F.M to down load to CSV format in BW System.
    In BW system we donot have F.M SAP_CONVERT_TO_CSV_FORMAT.

    Hi,
    I hope you have GUI_DOWNLOAD function module
    Try this i had used this in BW before
    Data : w_file_path type string.
    file_path = 'c:\temp\abcd.csv'.
    Note: T_field is optional (If you want field names at the top row you can use it
    CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = w_file_path
          filetype                = 'ASC'
          write_field_separator   = 'X'
          confirm_overwrite       = 'X'
        TABLES
          data_tab                = t_output
          fieldnames              = t_field.
    Regards
    Krishna

  • DMEE - Output in the required format

    Hi
    I need an output in this format:
    ........1........2........3........4........5........6....
    101 DEUT0797B CoCd    0905271433A094101DEUTSCHE BANK          Company Name         <CR/LF>
    5200Company Name Payment Type      1         CCD
        090527   1DEUT07970000001 <CR/LF>
    622000052000987032           0028050900               First Name
    Last Name    0DEUT07970000001 <CR/LF>
    820000000100000052000000000000000000280509001
                  DEUT07970000001 <CR/LF>
    9000001000001000000010000005200000000000000000028050900
                                  <CR/LF>
    99999999999999999999999999999999999999999999999999999999999999999
    99999999999999999999999999999 <CR/LF>
    99999999999999999999999999999999999999999999999999999999999999999
    99999999999999999999999999999 <CR/LF>
    99999999999999999999999999999999999999999999999999999999999999999
    99999999999999999999999999999 <CR/LF>
    99999999999999999999999999999999999999999999999999999999999999999
    99999999999999999999999999999 <CR/LF>
    99999999999999999999999999999999999999999999999999999999999999999
    99999999999999999999999999999 <CR/LF>
    <END>
    But the output I get as per DME is
    ........1........2........3........4........5........6....
    000            CoCd 0906011646  DEUTSCHE BANK
    Company name
                                       <CR/LF>
    000CompanyName
                                         T
          090501            2805
                                                              1986
                               Srini XXX
                        28.000000 00000000000000000000000000000000000
    00000000000000000000000000000                              28.0
    0 <CR/LF>
    <END>
    Can someone help me on this.
    Mainly I want to know how these 999999999999999999 etc have been generated. What config in DMEE I need to do.
    Regards
    Malathi. U

    Hello,
    You get data from REGUH and REGUP tables.
    Most of the files will have header, transactions and trailer.
    Please let me know how you have created the current DME structure. Have you copied from some standard structure or you have created on your own?
    Please check if there are any standard DME strcuture for your country / bank available in the system. Refer to them.
    Regards,
    Ravi

Maybe you are looking for

  • Concept of Dev, Test, Prodn Environments

    Hi All, I am new to Oracle and my question may sound silly, please bear with me ..... and have never worked before in a clients place I am trying to understand the concept of environments like dev, prodn etc..... A server has Oracle 10g installed in

  • Why is "live recording" showing under TV shows?

    I just noticed that on my Apple TV, under TV Shows, there's a new listing, "Live Recording". It just showed up today; it was never there before. In my computer, there is no "Live Recording" under TV Shows. It appears that this is something Apple has

  • How to call jsp from another jsp

    Hi, All, I have several jsp files in my pagelet. I need to put a link in one jsp file. When client click the link, it will show another jsp file. Could anybody tell me how to do that?  i have tried to use following code in page1.jsp, IPortalComponent

  • IPhone viewing PDF forms

    Hi guys, I have a PDF form that was filled out and saved with Acrobat Premium and then e-mailed. I can view the form attachment normally on a PC, but the iPhone merely shows the PDF without any of the form data filled in. Am I missing something or is

  • Wi-fi icon greyed out and showing "No Network selected"

    I have an iMac (20 inch; early 2009) running Lion and use an Airport Extreme as my router. The Airport Extreme is connected to my computer and all others in the home connect through it wirelessly. Lately, if the Mac has been off or in sleep mode, whe