DME file download unicode upgrade

we are working on an upgrade.
When we try to download DME files form F110. there is a space before each char in the output file,  
eg:   K P 9 0 2 7 1.  expected result "KP90271"
additional information
a)user parameter is set DCP is set to NONE. b) REGUT-CODEPAGE = 4102, RUGUT-SAPRL = 620.
Any suggestion??
Edited by: sarath sirip on Jan 26, 2011 4:56 PM

Hi,
Same issue we faced in 46C NC to ECC UC upgrade.
I guess the program used to generate the DME file is Z program, which might be copied from the SAP standard program in older release.  For the same SAP standard program there might be some of the changes related to unicode. Adjust your Z program reference to the SAP standard progam.
Regards
Rahul

Similar Messages

  • RFUMSV00 (Tax report) wrong generation of DME file in Unicode system

    Hello gurus,
    I've a problem running the program RFUMSV00 (Advance Return for Tax on Sales/Purchases) transaction S_ALR_87012357 when "Create DME file" check box is selected and a format tree and a file name are specified.
    On 4.7 it was working properly but now on ECC6.0, that is unicode compliant, does not work correctly because each char of each field on the downloaded table into Unix directory has preceeded by an hash (#).
    So 1234 becomes #1#2#3#4...
    The problem seems to be related to codepages and I found in debug that the RFUMSV00 program calls from the include I_RFUMS_DME_FORMS the following routine at line 119:  PERFORM write_file_to_system USING lt_dme_file.
    This form contains a call to the following function:
        CALL FUNCTION 'FI_PAYM_FILE_OPEN'      
                  EXPORTING
                  i_temse_name = par_tems
                  i_file_name  = l_file_name.
    without specifying the codepage as further parameter so the function open the dataset for output in binary mode (and here the problem) because i_codepage is initial
    Pls see below.
        IF i_codepage IS INITIAL.
          OPEN DATASET i_file_name FOR OUTPUT   "Open File to write
                                   IN BINARY MODE.
        ELSEIF i_codepage = '4110' AND
               cl_abap_char_utilities=>charsize > 1. " UTF-8 and Unicode
          OPEN DATASET i_file_name IN TEXT MODE FOR OUTPUT
                                           ENCODING DEFAULT.
        ELSEIF i_codepage = '4102' OR i_codepage = '4103' OR i_codepage = '4110'.
          OPEN DATASET i_file_name FOR OUTPUT
                                   IN BINARY MODE.
        ELSE.
          OPEN DATASET i_file_name FOR OUTPUT   "Open File to write
                                   IN LEGACY BINARY MODE
                                   CODE PAGE i_codepage
                                   IGNORING CONVERSION ERRORS.
    Putting '4110' on i_codepage all is working magically perfect.
    Does anybody know where set the code page (4110) or how to solve this problem ?
    Thanks a lot in advance & best regards
    Tony

    Hello Rob,
    thanks for your reply.
    Yes I did a check of the OSS notes and I found that OSS 1365764  (Pls see below) describes exactly the problem I have but it is relevant only for payments and DME files created with this purpose.
    Also the DCP parameter (that has to be specified at user level) is only relevant for RFFO* programs.
    Note 1365764 - Codepage of DME file
    https://service.sap.com/sap/support/notes/1365764
    Also the two following notes
    Note 911190 - PMW: Entering the code page when writing and downloading
    https://service.sap.com/sap/support/notes/911190
    Note 899205 - RFUMSV00: DMEE format tree with additional parameters
    https://service.sap.com/sap/support/notes/899205
    So to be honest I do not really know how to look at to solve the issue.
    Thanks again for your reply & best regards
    Tony
    Edited by: Antonio Lanza on Nov 9, 2010 9:33 AM

  • DME file after unicode conversion

    Hi gurus!
    we have a problem with DME visualization after we passed to unicode system.
    if we want to create new DME with a ZF110 (copy of F110 ) the DME have incorrect character if we try to see it in transaction FDTA or in ZF110.
    i tryed with parameter 'DCP' but is the same.
    any suggest?
    best regards

    Hi,
    You need to compare the programs called by ZF110 and F110.
    I think Z110 is calling Z program which are copy of SAP standard program.
    In this case compare the Z program with the respective original program.
    You will find some difference here and you need to modify Z program with respect to original program.
    We had a same issue and solved by adjusting Z payment run program with SAP standard program.
    Regards
    Rahul

  • DME File returning junk characters when download to PC

    Hi Experts,
    I am facing problem while downloading the DME file. My file contains russian characters but downloaded file showing junk characters.
    I have already set codepage for russia in my profile as 1500. I have also installed russian language in my system. Also i am logged in SAP in RU language and set the codepage as CYRILIC(ISO) and language as russian.
    Please help me on this. I have also searched in forum but could not get proper answer.
    Regards,
    A. Trivedi

    Hi Ashish,
    please try setting codepage to 4120 (Unicode) in OBPM3.
    It worked out fine with a Kyrillic invoice reference I just tested in our dev system. Be sure to use a proper text editor for displaying the downloaded file, e.g. Notepad++
    Regards,
    Christoph

  • I keep trying to upgrade my version of Firefox but everytime I download the upgrade I get a message stating that the file is corrupted. Firefox keeps telling me I need to upgrade but I can't seem to make it happen. Can someone help me?

    For several months I have been trying to upgrade my Firefox version, which is no longer supported by several software platforms I need as a songwriter, such as Flashplayer, etc. After I download the upgrade all I get is a message that the file is corrupted. I am not very tech-savvy so I need to talk with someone who can explain what to do in layman's terms.

    Which version of Mac OSX do you have?
    Firefox 2.0.0.20 is the last ever release for Mac OSX 10.3.9 and earlier versions.

  • Adding a new layout for DME for file download

    Hi All,
    How do i add a new layout for file download in DME?
    Thanks
    William Wilstroth

    This problem is solved.
    Need to enhanced the T042O table.

  • Minus Sign in the Downloaded DME file using F110 Transaction

    Hi All,
    From the F110 Transaction I navigate to the DME Administration from the menu bar in order to download the DME file into my system. I could open the txt file that is downloaded. Now my requirement is to add a minus sign to the invoice amount of the txt file.
    I tried debugging the program to find out where the data is populated but was unable to. I can see the FM GUI_DOWNLOAD that downloads the file but the internal table contains hexadecimal data.I don't understand how this is converted to the text data.
    I'm unsure of what to do.... Any body has any suggestions.
    Regards,
    Shipin Paul

    Hi Anmol,
    Your answer helped me a lot. I am really thankful. But my issue is not solved.
    I went to the DMEE Transaction and gave the correct format and the tree type as input.
    Inside the format i went into the amount element as you have mentioned and included an exit module with the respective coding.
    Then i execute the transaction F110 with the Run date and Identification.
    I then navigate to the menubar Enviroment->Payment Medium->DME Administration so as to download it into my system as notepad.
    I select one of the entries and press the download button. But it does not stop at the exit which i included in the DMEE Transaction
    even though i have created a breakpoint there..
    Do you have any idea about this.
    Regards,
    Shipin Paul

  • Automatic Payment Run - Problem with downloading DME file

    Hi,
    My client recently went live with the Automatic Payment run. But when trying to download ( or export) the DME file he is unable to do so. The message says like "There is no source data for this data record".
    Please help.
    Regards,
    Raj/

    Hello,
    You have to give the destination path where the file needs to be saved in transaction code OBPM4.
    Hope you must have maintained proper variant for your Payment Medium Format.
    Unless, you maintain these values, the file will not be generated at the destination.
    Thanks,
    Ravi

  • Just upgraded to Lion, can't open any pdf file downloaded from internet that was fine with Leopard. How can I overcome this obstacle ?

    Just upgraded to Lion, can't open any pdf file downloaded from the internet that was fine with Leopard before. I just got a black screen when I clicked on a pdf icon on a given internet site, and same happened with several sites that I visited. How can I overcome this obstacle ?

    Try two things with Safari not running:
    1) Launch Adobe Reader, open its preferences, select the Internet category, and check the values under "Display PDF in browser using".  If it's checked, try unchecking it.
    2) Look in /Library/Internet Plug-Ins (at the top-level of your boot volume) for something names AdobePDFViewer.plugin.  If you see such a file, try moving it to a folder named "Disabled Plug-Ins" (if such a folder exists) or onto the Desktop.
    Then see how things work.

  • Trying to download free upgrade get this message: "The product distribution file could not be verified. It may be damaged or was not signed." Please pelp

    I tried to download the upgrade and it started, but I think my connection was spotty because then it stopped and when I tried to redownload that is the message that keeps popping up.  Also I bought the computer in America in July, but am now living in Japan.  Not sure if that makes any difference whatsoever, but I figured as much info as I could give would help.  I appreciate any advice.

    Try this...
    Quit the App Store if it's open.
    Open the Finder. From the Finder menu bar top of your screen click Go > Go to Folder
    Type this exactly as you see it here:
    /Library/Preferences/SystemConfiguration
    Click Go
    Move the NetworkInterfaces.plist file from the SystemConfiguration folder to the Trash.
    Relaunch the App Store and try downloaing Mountain Lion.
    Might also need to disable anti virus software and turn off the Firewall in System Preferences > Security & Privacy > Firewall.

  • Download to Excel after Unicode Upgrade not working

    Hi
    Before the unicode upgrade we downloaded a spreadsheet, specifying the columns and table. Since the upgrade the spreasheet opens and start to create the columns, but as soon as it tries to write the table we get an error at teh following code.
    class  C_OI_CONTAINER_CONTROL_CREATOR method  i_oi_spreadsheet~insert_one_table
    Error as follows
    \INTERFACE=I_OI_ERROR                                                                               
    I_OI_ERROR~ERROR_CODE           CALL_NOT_FLUSHED
      I_OI_ERROR~IS_FLUSHED                                                                               
    I_OI_ERROR~HAS_FAILED           X
      I_OI_ERROR~HAS_SUCCEEDED                                                                               
    ERROR_NR                                                   999999-
    ERROR_STRING                               50                                                                               
    Does anyone know why this is occuring and what the solution please?
    Thanks.

    Can you let us know your support package levels? Also you right click and then export it to Excel?
    Something to do with packages and xcel levels as well.

  • I need a programme that will be able to download my upgrade for my Parrot MKi9100-7.plf file

    I need a programme that will be able to download my upgrade for my Parrot MKi9100-7.plf file can anyone help?

    According to the Parrot Support site:
    "The Parrot Software Update Tool is only available for Windows."
    So you would need to install Windows on your iMac, first, in order to download the file.  Your Mac's OS X cannot read Windows based files.

  • I downloaded the upgrades to itunes and then i was told i needed to load a file msvcr80.dll i downloaded that and now i have a runtime problem i need to fix R6034.  How do i fix this and not loose all my songs?

    I downloaded the upgrades for itunes and it then said i had to download MSVCR80.dll i think i downloaded that but now i have a runtime issue of R6034.  How do i get my itunes to work again without loosing anything?

    Check out the user tip below.
    https://discussions.apple.com/docs/DOC-6562

  • GUI_DOWNLOAD PDF File in Unicode System

    Hi Team.
    We are Upgrade to ECC 6.0 with Unicode.
    We are reading a PDF File from Unix directory and use the GUI_DOWNLOAD function to the user can download the file.
    Original we have a  WS_DOWLOAD function and all right.
    But with this function the file is incorrect.
    This is the right File
    %PDF-1.3%âãÏÓ1 0 obj<</Producer(htmldoc 1.8.18 Copyright 1997-2002 Easy Software Products, All Rights Reserved.)/CreationDate(D:20080814090000-0600)>>endobj 2 0 Obj<</Type/Encoding/Differences[ .......
    And in SAP the File Down with this format:
    % P D F - 1 . 3
    % â ã Ï Ó
    1   0   o b j < < / P r o d u c e r ( h t m l d o c   1 . 8 . 1 8   C o p y r i g h t   1 9 9 7 - 2 0 0 2   E a s y   S o f t w a r e   P r o d u c t s ,   A l l   R i g h t s   R e s e r v e d . ) / C r e a t i o n D a t e ( D : 2 0 0 8 0 8 1 4 0 9 0 0 0 0 - 0 6 0 0 ) > > e n d o b j
    2   0   o b j < < / T y p e / E n c o d i n g / D i f f e r e n c e s [   3 2 / s p a c e / e x c l a m / q u o t e d b l / n u m b e r s i g n / d o l l a r / p e r c e n t / a m p e r s a n d / q u o t e s i n g l e / p a r e n l e f t / p a r e n r i g h t / a s t e r i s k / p l u s / c o m m a / m i n u s / p e r i o d / s l a s h / z e r o / o n e / t w o / t h r e e / f o u r / f i v e / s i x / s e v e n / e i g h t / n i n e / c
    Any body have a Idea of this problem.
    Thanks
    We try change the table to Binary Mode, and the problem continue

    The problem continue. Our system is SAP ECC 6.0 with UNICODE.
    Ath the moment I'm test with character table and HEX table and the File download to the local PC with errors
    % P D F - 1 . 3
    % â ã Ï Ó
    1   0   o b j < < / P r o d u c e r ( h t m l d o c   1 . 8 . 1 8   C o p y r i g h t   1 9 9 7 - 2 0 0 2   E a s y   S o f t w a r e   P r o d u c t s ,   A l l   R i g h t s   R e s e r v e d . ) / C r e a t i o n D a t e ( D : 2 0 0 8 0 8 1 4 0 9 0 0 0 0 - 0 6 0 0 ) > > e n d o b j
    2   0   o b j < < / T y p e / E n c o d i n g / D i f f e r e n c e s [   3 2 / s p a c e / e x c l a m / q u o t e d b l / n u m b e r s i g n / d o l l a r / p e r c e n t / a m p e r s a n d / q u o t e s i n g l e / p a r e n l e f t / p a r e n r i g h t / a s t e r i s k / p l u s / c o m m a / m i n u s / p e r i o d / s l a s h / z e r o / o n e / t w o / t h r e e / f o u r / f i v e / s i x / s e v e n / e i g h t / n i n e / c o l o n / s e m i c o l o n / l e s s / e q u a l / g r
    The file download  in Binary mode. But continue add a blank character before each character.
    Thanks team

  • DME file in Format 1100-in ECC 6.0

    we are upgrading to ECC6.0,as per ECC6.0 the DME file generates in Unicode format,but our client needs it in standard format (code page format1100)ECC6.0 gives in 4103 format by default
      prob with the unicode file is the output is coming only in one line without any line breaks,but standard format displays the output with line breaks.format1100 only client has to sent it to Banker
    in ECC6.0 we are tried changing the code page to 1100 in Transaction: OBPM3 but not worked out.also tried assignment of FDTA parameters.
    Pls provide a solution to get the FORMAT in 1100 and where it needs to be done.

    Hello,
    We have the same problem now. Could you please help us?
    Many thanks in advance

Maybe you are looking for

  • Every time I have tried to install firefox 6.0, it has blue screen crashed my system - can you help?

    I am using an old computer but it has dual processors and 4 gb of ram. I am using Windows XP home edition, sp2 atm. I have a Galaxy 200 vid card, sound-blaster X-Fi, Gigabyte mother board. Atm, all I have is IE 6. After the blue screen crash, I had t

  • Can't Import Scanned Photos

    I have scanned about 100 snap shots from the original photo prints. All are saved in .JPG format. When I try to drag these photos to my iPhoto library, a message appears advising that the files are unreadable (may be unrecognized file type or may not

  • Issue with Java and VB 6

    I have a VB 6 application accessing java component through Active X Bridge. When i try to set -Xmx for JRE more than 160MB on machine with 2GB of memory "The Java runtime environment cannot be loaded" error message occurs, Java component is not loade

  • STO and Multiple Schedule Line

    Hi, we create STO and we trigger ATP in SCM. We are currently getting multilple schedule lines. Then if you create a sales order and trigger ATP check it does not see all the schedule lines on the STO. It only sees the requested date and requested QT

  • USB thumb drive shows up twice

    Dear all, I have a 1GB USB thumb drive which always mounts in the finder twice: i.e. I am talking about the finder window and the desktop: once I have plugged in the usb stick it then shows two connections to the stick: one is called: USBDISKPRO the