STMS: Return Code 8: The program is not Unicode-compatible

Dear SAP Friends,
I am currently importing some TRs on our DEV system. However, I am getting some error messages. The log says "The program (name of program) is not Unicode-compatible, according to its attributes."
Is there a fix for this?
Your prompt response is highly appreciated. Thank you very much in advance.
Best Regards,
Albert

Dear,
Use the transaction 'UCCHECK' to set the unicode flag.
Please check the below link as mentioned.
http://www.sap-img.com/abap/how-to-delete-an-editor-lock.htm
Re: The program "Z...." is not Unicode-compatible, according to its program att
Regards,
R.Brahmankar

Similar Messages

  • I just purchased an IMac with lion and I tryed to install an old math program that is for winmac running systems. When I try to boot the cd it comes up with a notepad window with a bunch of weird symbols and codes but the program will not start up.

    I just purchase my first IMac with lion and I was trying to install a math program I bought 6 years ago. When I went to boot it off the disk while following the program instructions a window popped up with a note pad format with symbols and codes but the program would not download or open. How do I get this program to work? It is a mac compatible program by the way.

    Your Mac probably does not know with which application to open the file and is opening a file with a text editor that really needs to be opened by the application itself.  Try starting the application first, then use the File > open command to open the file.
    As varjak paw comments, there isn't a "winmac" so that's not telling us anything.
    Note that it is possible that software purchased 6 years ago may no longer run on your computer.  Once we know what it is we can help more.

  • I have a code, but the program does not accept it,,, what do I do now?

    I need help installing the program, have a code but it is not accepded.
    What now?

    Error "The serial number is not valid for this product" | Creative Suite

  • How can we know the return code of BDC Program ?

    Hi All,
    Please tell me : How can we know the return code of BDC Program when being exceuted in Session or in Transaction mode.
    In my program, we are uploading data from Excel sheet to SAP via BDC
    The records that are not updated we want to create a log file.
    Now to know whether a record is updated ot not, wat syst field shloud be used?
    Its urgent....
    <b>Reward Point will be there ....</b>
    Thanks,
    Harish

    Hi harish,
    try the logic in this code ...
    i had attached input file in the end.
    TYPES: begin of errmess,
            msgnr type t100-msgnr,
            text type t100-text,
           end of errmess.
    TABLES : t100.
    DATA: BEGIN OF DD_VA01,
           AUART TYPE VBAK-AUART,
           KUNNR TYPE RV45A-KUNNR,
           BSTKD TYPE VBKD-BSTKD,
           MABNR TYPE RV45A-MABNR,
           KWMENG(2) type C,
           KBETR(2) type C,
          END OF DD_VA01.
    DATA:IT_VA01     Like TABLE OF DD_VA01,
         WA_VA01     Like LINE  OF IT_VA01,
         WA_VA01_F   Like LINE  OF IT_VA01,
         IT_BDCDATA  TYPE TABLE OF BDCDATA,
         WA_BDCDATA  Like Line  OF IT_BDCDATA,
         W_FNAME     TYPE STRING,
         messtab like bdcmsgcoll occurs 0 with header line,
         it_errmess type table of errmess,
         wa_errmess like line of it_errmess,
         err_message type string.
    data: zf1 type i,
          zc1 type c value '2',
          fn(20) type c.
    Main Code ************************************************************
    PERFORM get_input using 'C:\Documents and Settings\ic881592\Desktop\Daran_bdc_VA01-e.txt'.
    SORT IT_VA01 BY AUART KUNNR BSTKD.
    LOOP AT IT_VA01 INTO WA_VA01.
      if WA_VA01_F-AUART <> WA_VA01-AUART OR
         WA_VA01_F-KUNNR <> WA_VA01-KUNNR OR
         WA_VA01_F-BSTKD <> WA_VA01-BSTKD.
           PERFORM set_header_flag.
           PERFORM create_bdc_header_data.
      endif.
      PERFORM create_bdc_item_data.
    ENDLOOP.
    PERFORM call_transaction.
    PERFORM errorlog.
    Procedures ***********************************************************
    form get_input using w_fname.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME            = W_FNAME
          HAS_FIELD_SEPARATOR = '#'
        TABLES
          DATA_TAB            = IT_VA01.
    endform.
    form call_transaction.
        PERFORM bdc_field       using 'BDC_OKCODE' '/11'.
        CALL TRANSACTION 'VA01' USING IT_BDCDATA MODE 'A' messages into messtab.
        refresh it_bdcdata.
    endform.
    FORM set_header_flag.
           WA_VA01_F-AUART = WA_VA01-AUART.
           WA_VA01_F-KUNNR = WA_VA01-KUNNR.
           WA_VA01_F-BSTKD = WA_VA01-BSTKD.
           if zf1 = 1.
               PERFORM call_transaction.
           endif.
           zf1 = 1.
    endform.   "set_header_flag.
    form create_bdc_header_data.
         perform bdc_dynpro      using 'SAPMV45A' '0101'.
         perform bdc_field       using 'VBAK-AUART' WA_VA01-AUART.
         perform bdc_field       using 'BDC_OKCODE' '/00'.
         perform bdc_dynpro      using 'SAPMV45A' '4001'.
         perform bdc_field       using 'KUAGV-KUNNR' WA_VA01-KUNNR.
         perform bdc_field       using 'VBKD-BSTKD' WA_VA01-BSTKD.
         perform bdc_field       using 'BDC_OKCODE' '/00'.
         perform bdc_dynpro      using 'SAPMSSY0' '0120'.
         perform bdc_field       using 'BDC_CURSOR' '04/06'.
         perform bdc_field       using 'BDC_OKCODE' '=CHOO'.
         perform bdc_dynpro      using 'SAPMV45A' '4001'.
         PERFORM bdc_field       USING 'BDC_OKCODE' '=POAN'.
    endform. "create_bdcdata
    FORM create_bdc_item_data.
         CONCATENATE 'RV45A-KWMENG(' zc1 ')' INTO FN.
         perform bdc_field       using 'BDC_CURSOR' FN.
         perform bdc_field       using FN WA_VA01-KWMENG.
         CONCATENATE 'KOMV-KBETR(' zc1 ')' INTO FN.
         perform bdc_field       using FN WA_VA01-KBETR.
         CONCATENATE 'RV45A-MABNR(' zc1 ')' INTO FN.
         perform bdc_field       using FN WA_VA01-MABNR.
         perform bdc_dynpro      using 'SAPMV45A' '4001'.
         PERFORM bdc_field       USING 'BDC_OKCODE' '=POAN'.
    ENDFORM.
    form errorlog.
      LOOP AT MESSTAB .
        if MESSTAB-MSGNR = '311' or MESSTAB-MSGTYP = 'E'.
            SELECT SINGLE msgnr text FROM T100
                            into wa_errmess
                            WHERE SPRSL = MESSTAB-MSGSPRA
                              AND ARBGB = MESSTAB-MSGID
                              AND MSGNR = MESSTAB-MSGNR.
            IF SY-SUBRC = 0.
              err_message = wa_errmess-TEXT.
              IF err_message CS '&1'.
                REPLACE '&1' WITH MESSTAB-MSGV1 INTO err_message.
                REPLACE '&2' WITH MESSTAB-MSGV2 INTO err_message.
                REPLACE '&3' WITH MESSTAB-MSGV3 INTO err_message.
                REPLACE '&4' WITH MESSTAB-MSGV4 INTO err_message.
              ELSE.
                REPLACE '&' WITH MESSTAB-MSGV1 INTO err_message.
                REPLACE '&' WITH MESSTAB-MSGV2 INTO err_message.
                REPLACE '&' WITH MESSTAB-MSGV3 INTO err_message.
                REPLACE '&' WITH MESSTAB-MSGV4 INTO err_message.
              ENDIF.
              CONDENSE err_message.
              WRITE: / MESSTAB-MSGTYP, err_message .
            ELSE.
              WRITE: / MESSTAB.
            ENDIF.
        endif.
      ENDLOOP.
    endform. "errorlog
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
      WA_BDCDATA-PROGRAM  = PROGRAM.
      WA_BDCDATA-DYNPRO   = DYNPRO.
      WA_BDCDATA-DYNBEGIN = 'X'.
      APPEND WA_BDCDATA TO IT_BDCDATA.
      CLEAR  WA_BDCDATA.
    ENDFORM.
    FORM BDC_FIELD USING FNAM FVAL.
      WA_BDCDATA-FNAM = FNAM.
      WA_BDCDATA-FVAL = FVAL.
      APPEND WA_BDCDATA TO IT_BDCDATA.
      CLEAR  WA_BDCDATA.
    ENDFORM.
    input file :
    OR     2148     0001235     R-1162     8     17
    OR     2148     0001235     R-1161     2     30
    OR     2148     0001235     100-400     6     25
    OR     2148     0001235     R-1162     4     12
    OR     2148     0001236     R-1162     3     12
    OR     2148     0001236     R-1161     2     30
    OR     2148     0001236     100-400     1     25
    OR     2148     0001236     R-1162     7     12
    OR     2148     0001236     R-1161     8     30
    OR     2148     0001236     100-400     10     25
    OR     2148     0001235     R-1161     5     30
    OR     2148     0001235     100-400     2     25
    OR     2148     0001235     R-11621     3     12
    OR     2148     0001235     R-1161     2     30
    OR     2148     0001235     100-400     1     25
    OR     2148     0001235     R-1162     7     12
    OR     2148     0001235     R-1161     8     30
    OR     2148     0001235     100-400     10     25
    OR     2148     0001236     R-1162     8     17
    OR     2148     0001236     R-1161     2     30
    OR     2148     0001236     100-400     6     25
    OR     2148     0001236     R-1162     4     12
    OR     2148     0001236     R-1161     5     30
    OR     2148     0001236     100-400     2     25

  • I purchased Photoshop Lightroom 5 at Office Depo two days ago. i am following the directions join the card that I purchased. The program will not accept my redemption code.

    I purchased Photoshop Lightroom 5 two days ago at Office Depot. I have a redemption code on a card. the program will not take the code. What do I do?

    You need to convert your redemption code to a serial number via the Adobe web site.
    http://helpx.adobe.com/x-productkb/global/redemption-code-help.html

  • Return Code of the Tag applet /applet

    Does someone has deal with return code in the applet tag
    <applet codebase="http://10.15.1.26/printcndconjunta/"
         code="AppletHTMLPrint.class" width=710 height=500 id=Applet1 VIEWASTEXT>
    <param name="ConectionLink" value=<%=ConnectionString%>>
    </applet>
    Example : AppletHTMLPrint.class return 1 with someone used exit options.
    In resume , I want to close my HTML page (ASP one) after finished using my Applet, the way is going now it does not close the page
    where the applet was running after applet exit.

    If you Google for "applet javascript communications" you will be able to find out how to make the applet call a Javascript function which could in turn close the window.

  • I live in Mexico, buy the product in Mexico "creative cloud" $ 599.88 per year, I need to contact a representative of Mexico, the program can not be installed, they double charged me urgently.  Thank you.

    I live in Mexico, buy the product in Mexico "creative cloud" $ 599.88 per year, I need to contact a representative of Mexico, the program can not be installed, they double charged me urgently.
    Thank you.

    http://helpx.adobe.com/adobe-connect/adobe-connect-phone-numbers.html
    -orders, returns http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Adobe bridge cc is not working on my mac snow leopard version 10.6.8. In other words the program will not open all other programs work fine

    Adobe bridge cc is not working on my mac snow leopard version 10.6.8. In other words the program will not open, but all other programs i have been able to open just fine

    Moving this discussion to the Bridge General Discussion forum.

  • I just upgraded my iMac to Lion, and a few seconds ago, I upgraded the iWork package and now I'm having some problems with the new version of Pages (4.1) When I try to change something in a document, a message says "the program is not responding"

    I just upgraded my iMac to Lion, and a few seconds ago, I upgraded the iWork package and now I'm having some problems with the new version of Pages (4.1) When I try to change something in a document, a message says "the program is not responding", so I have to force it to close. By the way, the SAVE botton stays the same even I change erverything in my document. Please, a have a work to finish, **** me. What I can do abou it?

    I just upgraded my iMac to Lion, and a few seconds ago, I upgraded the iWork package and now I'm having some problems with the new version of Pages (4.1) When I try to change something in a document, a message says "the program is not responding", so I have to force it to close. By the way, the SAVE botton stays the same even I change erverything in my document. Please, a have a work to finish, **** me. What I can do abou it?

  • I've tried to update my i-Tunes version after the site suggested I should following my i-Pad being plugged into it for the first time. The update seemed successful but the program would not open at all despite switching off the PC and re-starting several

    I’ve tried to update my i-Tunes version after the site suggested I should following my i-Pad Air being plugged into it for the first time. The update seemed successful but the program would not open at all despite switching off the PC and re-starting several times. I then tried wiping the original software from the computer and re-downloading from scratch. Each time I tried the download failed with a message saying “Service “Apple Mobile Device” failed to start. Verify that you have sufficient privileges to start system services” At this stage, the only way forward was to “abort” the download. This I have done now four times and the same thing happens. When I did finally manage to get an i-Tunes shortcut on my desktop, the program wouldn’t open saying: “i-Tunes was not installed correctly. Please re-install i-Tunes. Error 7 (Windows error 193)” Any ideas to resolve this?

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • I have a Mac running OS 10.5.8. I downloaded Firefox 4 and not the program will not open at all. I am also unable to download the previous version that was running fine. I'm using Safari to contact you.

    I have a Mac G5 running OS 10.5.8. I downloaded Firefox 4 and now the program will not open at all. I get an error message that reads --
    "You cannot open the application 'Firefox" because it is not supported on this architecture."
    I am also unable to find a link to download the previous version (3.6) that was running fine. (I'm using Safari to contact you.)

    Same proble here, although the Firefox system requirements says it is OK to have PowerPC G3 G4 or G5 ( I have G5 2GHZ)
    My solution; very simply use timemachine to restore the previous Frefox 3.x
    worked great in 3 mns

  • My firefox installation is complete on my PC with Win XP, the icons are up, but the program will not start... no process or anything in task manager... any idea what is going on?

    bought a second hand laptop running Windows xp. When I go to download firefox, the installation goes seemingly smooth, but the program will not open. There are no firefox processes showing in task manager when I do this. I just downloaded chrome instead, but it sucks and I want firefox but my computer rejects it. This computer runs every other program I use without a hitch
    == This happened ==
    Every time Firefox opened
    == after installation ==
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4

    thanks chris for the reply back,i have solved the massive problem i have had with MF 3.6.3 it ws COMODO FREE FIREWALL i had a sneaking suspicion all a long it could have been that but was not sure?,my pc had slowed down since installing comodo i am pretty sure of that,there were lags and pauses ect ect on general usage of the pc even though cpu usage was ok?,so maybe if many pc users that have comodo firewall installed they might like to try a change to another firewall and see if it helps,i went back to OUTPOST FREE FIREWALL which i had for ages without ANY problems whatsoever.
    regards
    john
    mozilla firefox build 3.6.3

  • I have Photoshop Elements 9 on an iMac with OS 10.6.8. I bought a new printer/scanner and the program will not import the new scanner to replace the old one. How do I do this?

    I have Photoshop Elements 9 on an iMac with OS 10.6.8. I bought a new printer/scanner and the program will not import the new scanner to replace the old one. How do I do this?

    Thank you for your suggestions. I downloaded a more recent version of Twain, but this didn't help. I also tried closing and opening Photo Shop and restarting my computer without success. Reinstalling Photo Shop sounds like a very promising solution, but I'm  not sure I will do it. In the meantime I can scan items using a printer program. These scans open in Photo Shop. It is an extra step.

  • Build exe is working but the program is not

    i have build an exe, everything went fine. I opened the exe and want to start the program via "Übernehmen". Then I get the attached error message. It's an old Labview Version (2009) which I converted in 2014. Do I miss sth I should add to get a successfull program via exe?
    Solved!
    Go to Solution.
    Attachments:
    items.png ‏28 KB
    items.png ‏28 KB
    buildexe.png ‏74 KB

    Sam_Sharp wrote:
    Does the application run fine in the development environment?
    Does the old version of the application work on the same PC?
    What happens when you run the .exe - does anything come up on the screen? Do you get any error messages?
    I don't speak german so I don't understand the message that appears - but it seems to be saying something related to the 'program not installed'? Was there previously an installer that did custom actions (e.g. running other installers or putting files/registry keys in certain locations)?
    1. yes, it is running fine in the development environment. There are no errors when I start the main.vi. I can open the program and work with it etc.
    2. yes, the old version is working. It's 2009, I installed 2009 Runtime and I can open the .exe and work with it.
    3. concerning 2009 .exe see my answer at 2. When I start .exe which is converted AND build in 2014, the first screen is working. Then I press the "Übernehmen" Button and I got the attached error. Yes, it says "the program is not working".
    I don't know if there were custom actions. I got this project from a former colleague... :/

  • I have been using a free trial of photoshop cc and my computer crashed. Now it says up to date, but the program is not installed anymore. How can I re install it? I already uninstalled creative cloud and re installed it, but the same issue occurs.

    I have been using a free trial of Photoshop cc and my computer crashed. Now it says up to date, but the program is not installed anymore. How can I re install it? I already uninstalled creative cloud and re installed it, but the same issue occurs.

    Hi dmomoney24  ,
    Kindly refer : CC desktop lists applications as "Up to Date" when not installed.
    Please revert if the problem persists.
    Thanks,
    Atul Saini

Maybe you are looking for

  • Use of FindLstn in Labview

    I'm struggling with the Findlstn function in Labview.  It's returning "Labview: Configuration Token not found", and "NI-488: Table Error".  I'm guessing the format of my address list input isn't correct - I'm using a 1-D array of word - but can't fin

  • Unable to do expdp on NFS mount point in solaris Oracle db 10g

    Dear folks, I am facing a wierd issue while doing expdp with NFS mount point. Kindly help me on this. =============== expdp system/manager directory=exp_dumps dumpfile=u2dw.dmp schemas=u2dwExport: Release 10.2.0.4.0 - 64bit Production on Wednesday, 3

  • Dynamic Routing Gateway and ASA

    Greetings, We have a requirement to configure a multisite gateway and have run into an issue. According to http://msdn.microsoft.com/en-us/library/azure/dn133793.aspx, dynamic routing gateways are not supported on the ASA platform. Does this simply m

  • Question about legibility of PDF in Acrobat reader

    the resolution is fuzzy in Acrobat and very clear in Nitro Reader, why is free Nitro Reader clearer than my paid-for Acrobat Reader?

  • Installed photoshop elements tried to convert catalog from version 10 i lost all albums from version

    i installed version 11 of photoshop elements i attempted to restore catalog from version 10 when i did this i lost all my albums from version 10 i only have one album in version 11