Is this UNICODE error?

I have this following (error mssg on the bottom) error issue then I try to make my project using Cygwin and I cannot seem to fix it.
I suspected that the error was because my computer's Java cannot read unicode, then I tried updating the Java, installing the JRE and JDK; however they don't make any difference.
I have: obj\battle\unit_symbols\01シュウ_face.acl
but NOT: obj\battle\unit_symbols\01繧キ繝・繧ヲ_face.acl
Is this a UNICODE issue that my Java cannot read specific Japanese characters and somehow converting it to something else?
Any help/clue would be appreciated. Thank you in Advance
java -Xmx256M -jar c:/cygwin/bdp_2/us/buildtree/tool/aikyo/FileArchiver/deploy/F
ileArchiver.jar -l obj/aikyo_files.list obj/aikyo_files.farc
java.io.FileNotFoundException: obj\battle\unit_symbols\01繧キ繝・繧ヲ_face.acl (The
system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(Unknown Source)
at java.io.FileInputStream.<init>(Unknown Source)
at binarymaker.tags.LoadFileTag.visit(LoadFileTag.java:44)
at binarymaker.tags.PrimitiveTagGroupVisitor.visit(PrimitiveTagGroupVisi
tor.java:98)
at binarymaker.tags.StructTag.visit(StructTag.java:37)
at binarymaker.tags.StructiveTagGroupVisitor.visit(StructiveTagGroupVisi
tor.java:33)
at binarymaker.tags.LocationTableTag.visit(LocationTableTag.java:48)
at binarymaker.tags.StructiveTagGroupVisitor.visit(StructiveTagGroupVisi
tor.java:38)
at binarymaker.tags.StructTag.visit(StructTag.java:40)
at binarymaker.tags.StructiveTagGroupVisitor.visit(StructiveTagGroupVisi
tor.java:33)
at binarymaker.tags.BinaryTag.visit(BinaryTag.java:57)
at binarymaker.BinaryMaker.make(BinaryMaker.java:45)
at filearchiver.FileArchiver.archive(FileArchiver.java:66)
at filearchiver.Main.main(Main.java:58)
make[1]: *** [obj/aikyo_files.farc] Error 255
make: *** [build] Error 2

My first guess would have been that your second name contained characters that are outside the BMP, but that doesn't seem to be the case.
All of these characters seem to have been present in Unicode 1.1, so that shouldn't be a problem either.
I'd suggest you first try to find out if there's any single character that prevents the file from being found.
Edit: Other information that might be useful includes:
1.) Where do you want to read those files from? Filesystem? Jar file?
2.) How did you get the file name? Searched the Filesystem? From another file?

Similar Messages

  • Unicode Error in DOWNLOAD function module

    Hi ABAPpers,
    I am getting the unicode error in using
    CALL FUNCTION 'DOWNLOAD'
           EXPORTING
             bin_filesize = v_bytecount
             filename     = v_download_filename
             filetype     = 'WK1'
           IMPORTING
             act_filename = v_download_filename
           TABLES
             data_tab     = i_download.
    If i try to use GUI_DOWNLOAD, it doesn't have importing parameter act_filename.
    What alternate function module should i use to rectify this unicode error?
    Regards,
    Rahul

    Hi,
    The answer is similar to the one for your previous post. You need to use both CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG and GUI_DOWNLOAD
    DATA: PRC_WINDOW_TITLE      TYPE STRING,
          PRC_DEFAULT_FILE_NAME TYPE STRING,
          PRC_INITIAL_DIRECTORY TYPE STRING,
          PRC_FILE_NAME         TYPE STRING,
          PRC_PATH              TYPE STRING,
          PRC_FULL_PATH         TYPE STRING,
          PRC_USER_ACTION       TYPE I.
    PRC_INITIAL_DIRECTORY = FILENAME.
    PRC_DEFAULT_FILE_NAME = FILENAME.
    PRC_WINDOW_TITLE      = 'Debitoren-Saldenliste'.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
      EXPORTING
        WINDOW_TITLE         = PRC_WINDOW_TITLE
        DEFAULT_FILE_NAME    = PRC_DEFAULT_FILE_NAME
        INITIAL_DIRECTORY    = PRC_INITIAL_DIRECTORY
      CHANGING
        FILENAME             = PRC_FILE_NAME
        PATH                 = PRC_PATH
        FULLPATH             = PRC_FULL_PATH
        USER_ACTION          = PRC_USER_ACTION
      EXCEPTIONS
        CNTL_ERROR           = 1
        ERROR_NO_GUI         = 2
        NOT_SUPPORTED_BY_GUI = 3
        OTHERS               = 4
    IF SY-SUBRC = 0 AND PRC_USER_ACTION NE
    CL_GUI_FRONTEND_SERVICES=>ACTION_CANCEL.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
         FILENAME                        = PRC_FILE_NAME
         FILETYPE                        = 'ASC'
         WRITE_FIELD_SEPARATOR           = '#'
        TABLES
          DATA_TAB                        = TAB_EXCEL
       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
    ENDIF.

  • Unicode error in statement Describe Field

    Hi,
    There is a statement in my program which is giving Unicode error.
    DESCRIBE FIELD t_mara-mfrpn LENGTH len.
    Here t_mara is internal table with header line. Unicode error which I am getting is 'In Unicode, Describe Length can only be used in Byte mode or IN....'.
    Kindly let me know how to remove this unicode error without affecting the functionality.
    Regards,
    Rajneesh

    syntax check always finds the error when the addition BYTE or CHARACTER MODE is missing in the statement DESCRIBE.
    And it will not cause any impact in functionality of your program

  • How to assign a character field to a strucure in ECC6.0 ( Unicode error)

    Hi all,
    This is regarding a Unicode error we are facing in upgrading a program from 4.6c to ECC6.0.
    The following pice of code gives error now in ECC6.0, stating Unicode incompatible structures.
            DATA: WA_MSEG TYPE MSEG,
                       WA_MKPF TYPE MKPF.
            DATA: LE_DATA(8192) TYPE C.
            CALL FUNCTION 'ARCHIVE_GET_NEXT_RECORD'
              EXPORTING
                ARCHIVE_HANDLE                = LE_HANDLE
              GET_REAL_STRUCTURE_NAME       = 'X'
              AUTOMATIC_CONVERSION          = 'X'
              IMPORTING
                RECORD                        = LE_DATA
              RECORD_CURSOR                 =
              RECORD_FLAGS                  =
                RECORD_STRUCTURE              = LE_STRUCTURE
              RECORD_LENGTH                 =
              EXCEPTIONS
                END_OF_OBJECT                 = 1
                INTERNAL_ERROR                = 2
                WRONG_ACCESS_TO_ARCHIVE       = 3
                OTHERS                        = 4
            IF SY-SUBRC <> 0.
              EXIT.
            ENDIF.
    move records
            CASE LE_STRUCTURE.
              WHEN 'MSEG'.
               <b> WA_MSEG = LE_DATA.</b>
                move-corresponding WA_MSEG to TBL_ARC_MSEG.
                APPEND TBL_ARC_MSEG.
                CLEAR: WA_MSEG, LE_DATA, TBL_ARC_MSEG.
              WHEN 'MKPF'.
              <b>  WA_MKPF = LE_DATA.</b>
                move-corresponding WA_MKPF to TBL_ARC_MKPF.
                APPEND TBL_ARC_MKPF.
                CLEAR: WA_MKPF, LE_DATA, TBL_ARC_MKPF.
            ENDCASE.
    Can you please suggest a way to overcome this error.
    Thanks in advance,
    Sreenivasa Reddy V.

    IV_OFFSET is the position from the C field will be started to be read (should be 0) and EV_OFFSET is the length to which the data is going to be fetched.  The Following code could be useful ---
    w_len = STRLEN( p_data ).
    CALL FUNCTION 'OIF_CONVERT_CHAR_TO_STRUCTURE'
      EXPORTING
        iv_string         = p_data
        iv_structure_name = 'VBAK'
    *    iv_offset         = w_len
      IMPORTING
        ev_structure      = wa_vbak
        ev_offset         = w_len
      EXCEPTIONS
        ddif_nametab_get  = 1
        OTHERS            = 2.
    Hope That Helps
    Anirban M.

  • UNICODE Error in ECC 6.0

    Hi Guys,
    I am working on upgrade project 4.5B to ECC 6.0, in 4.5B internal table refers the Ztable, but in ECC 6.0 it giving error.
    4.5B statement: GT_PLAN_SIO  TYPE STANDARD TABLE OF   ZSTR_PLAN_SIO WITH HEADER LINE.
    The above statement error in the ECC 6.0, Could you please correct the statement.
    Thanks
    Gourisankar.

    Hello Gourisankar
    First of all I would get rid of the "... WITH HEADER LINE". However, this is probably not the reason for the Unicode-error.
    Since you did not mention the most important detail to answer your question, namely the exact Unicode error, I can only give some tips and hits:
    - try to change the type of the table
    - try to add key options
    Examples:
    DATA: GT_PLAN_SIO TYPE STANDARD TABLE OF ZSTR_PLAN_SIO. " WITH HEADER LINE.
    DATA: GT_PLAN_SIO TYPE                    TABLE OF ZSTR_PLAN_SIO.
    DATA: GT_PLAN_SIO TYPE                    TABLE OF ZSTR_PLAN_SIO
                                                                  WITH DEFAULT KEY.
    Regards
      Uwe

  • How to avoid Unicode errors in SAP custom code queries.

    Currently we are going for a non Unicode technical upgrade from 4.6C to ECC 6.0.
    We have many query infosets with custom ABAP code. Unable to execute these queries (infosets) as ECC 6.0 system is throwing short dump and query infoset editor throwing Unicode syntax errors . Anyway to avoid these Unicode errors by changing query or infoset system setting.
    We will proceed with infosets ABAP code Unicode remediation if the above is not feasible.
    Thanks in advance.

    If the infosets are with custome abap code let the UCCHECK be happen on these programs in ecc6 ..
    In tcode UCCHECK the code which needs to be replaced for the custom programs  will be provided for the abap developers . All programs in ecc6 should be ucc compliant . I hope this will happen with the abap upgrade by enabling ecc6 .
    they will enable ecc check and do the code modification for moving out the obselete statements in ecc6 which were ok for 4.6c then .
    Dont worry about the dumps as this will not take much time on a single program once the UCC is over ..
    Br,
    vijay.

  • Unicode error free MODIFY statement

    HI All,
    I have midify statement in a loop like this.
    loop at itab into wa_itab.
    modify itab from wa_itab index tabx.
    endloop.
      I am working in ECC 6.0. It is showing unicode error at modify statement. Please suggest me the correct statemnt.ANy extension for modify statemnt..?
    Thanks,
    kishore

      LOOP AT IT_VBRK.
    <b>    CTAB = SY-TABIX.</b>
        LOOP AT IT_T001 WHERE BUKRS = IT_VBRK-BUKRS.
          IF SY-SUBRC  = 0.
            IT_VBRK-BUTXT = IT_T001-BUTXT.
    <b>        MODIFY IT_VBRK INDEX CTAB.</b>
            CLEAR CTAB.
          ENDIF.
        ENDLOOP.
      ENDLOOP.
    The problem may be with SY-TABIX, check the above code

  • How to track Unicode errors

    Hi All,
    Can any one give a briefing on the kind of unicode errors in SAP and how can we track the unicode errors <i>without</i> using the transaction UCCHECK .

    Chaitanya,
    Without UCCHECK that is going to be difficult tracking the Unicode errors. When the system is upgraded, we should run all the custom program through UCCHECK so that we know which programs have errors.
    And more over its easy to do and you can do this in one shot for all the programs using the selection criterial of the transaction.
    Other work around is to manually look at the code and see if there are any commands specified in the UNICODE COOKBOOK for ABAP used in the program.
    Regards,
    Ravi
    Note : Please mark all the helpful answers

  • Unicode error:a line of internal table and a data object are not mutually c

    Hi Friends,
        This is the issue in upgradation from 4.6c to ECC6.0
        I have an internal table itab which has include structure say 'xyz' . In xyz there is a field of type int4 as third field. I have a field as l_line which is a string.
    data : begin of itab occurs 0.
             include structure zxyz.
    data: end of itab.
    data: l_line type string.
    In the program I am getting the unicode error as:
    " A line of "itab" and "l_line" are not mutually convertible in unicode program." at he following line.
    loop at itab into l_line.
    endloop.
    Thanks,
    Ali.

    Hi Narendran,
    I did the same earlier, but the field l_line is again used in the another line as follows
    IF l_line CS w_group.----
    (1)
    where     w_group         LIKE zstr-cctr_group.
    here zstr-cctr_group is same as one of the fields of structure xyz.
    in line 1 it is giving warning as
    l_line is incompatible and it must be C,N,D,T or string.
    Thanks,
    Ali

  • /SMB40/RVADOR01 in runtime giving unicode error

    hi all
    i am using /SMB40/RVADOR01 program for printing the smartform but in runtime it is giving not unicode compatible
    when i performed syntax check in /SMB40/RVADOR01 program there it also giving unicode error
    and in the program attributes unicode check is not selected
    so i want to know can we change the standard /SMB40/RVADOR01 program to unicode compatible
    if yes than how to do for  a standard program
    or i will copy this program and make a custom program which is unicode compatible
    thanks in advance

    hi,
    I think you might have done UCCHECK transaction on this or other program by now. If you have not, please see if it helps.
    UCCHECK is for making programs Unicode comaptible.
    Pls post your findings.
    Regards,
    Vivek.

  • ECC 5.0 Unicode error

    Hi,
    During the upgrade from 4.6B to ECC 5.0, we are facing the following problem:
    In 4.6B, when we move the contents of one internal table to another ( itabA[] = itabB[] ), its happening properly, even though the structure of both the internal tables are not the same i:e itabB has more fields than itabA.
    But, this doesn't happen in the case of ECC 5.0. Its throwing some UNICODE error, saying that the structure isn't the same.
    If anyone has come across this problem, please revert with the solution.
    Thanks,
    Raj.

    hi,
    We are getting error because of unicode issues. We get this problem bcos of Alignment gaps.
    Hope the below explanation helps you..
    To check whether two structures can be converted at all, the Unicode fragment view of the structures is set up initially by combining character type groups, byte type groups, alignment gaps, and other components. If the type and length of the fragments of the source structure are identical in the length of the shorter structure, the structures can be converted. Assignment is allowed under the following conditions:
    The fragments of both structures up to the second-last fragment of the shorter structure are identical
    The last fragment of the shorter structure is a character or byte type group
    The corresponding fragment of the longer structure is a character or byte type group with a greater length
    If the target structure is longer than the source structure, the character type components of the remaining length are filled with blank characters. All other components of the remaining length are filled with the type-adequate initial value, and alignment gaps are filled with zero bytes. Since longer structures were previously filled with blanks by default, using initial values for non-character type component types is incompatible. This incompatible change is, however, rather an error correction. Character-type components are not filled with initial values, for the sake of compatibility.
    Example
    BEGIN OF struc1,                     BEGIN OF struc2,
      a(1) TYPE C,                         a(1) TYPE C,
      x(1) TYPE X,                         b(1) TYPE C,
    END OF struc1.                       END OF struc2.
    You cannot use the struc1 = struc2 assignment in Unicode, because struc1-x only occupies one byte, in contrast to struc2-b.
    BEGIN OF struc3,                     BEGIN OF struc4,
      a(2) TYPE C,                         a(8) TYPE C,
      n(6) TYPE N,                         i    TYPE I,
      i    TYPE I,                          f   TYPE F,
    END OF struc3.                       END OF struc4.
    The struc3 = struc4 assignment is valie because the fragment views of the character-type fields and the integer numbers match.
    BEGIN OF struc5,                     BEGIN OF struc6,
      a(1)  TYPE X,                        a(1) TYPE X,
      b(1)  TYPE X,                        BEGIN OF STRUC3,
      c(1)  TYPE C,                          b(1) TYPE X,
    END OF struc5.                           c(1) TYPE C,
                                           END OF struc3
                                         END OF struc6.
    However, struc5 = struc6 is not permitted - the fragment views of the two structure are different, because of the alignment gaps before struc3 and struc3-c.
    BEGIN OF struc7,                     BEGIN OF struc8,
      p(8)  TYPE P,                        p(8) TYPE P,
      c(1)  TYPE C,                        c(5) TYPE C,
    END OF struc7.                         o(8) TYPE P,
                                         END OF struc8.
    The struc7 = struc8 works because the fragment views in the length of the structure struc1 match.
    For deep structures, the operand types must be compatible as usual. We enhanced the concept by generalizing to some extent the convertibility of object references and table components.
    Regards,
    Sailaja.

  • Any solution of Unicode error

    Hi all,
    I got an assingment to find the solution of unicode error message
    MESSAGEG:Z
    MESSAGEG?U
    MESSAGEG!A
    MESSAGEG59
    MESSAGEG8C
    MESSAGEGI0
    MESSAGEGTY
    MESSAGEGXD
    PARAERS120
    READ   023
    SERR
    ABB
    OK
    VIEW
    I also find in google but i didnt find any suitable sol.
    can any one help me to find a solution.
    thanks
    Swashrayee
    Moderator Message: This is the third time you have posted the same assignment and getting it locked. Please the Rules of Engagement of these forums before further posting. This is your LAST warning. One more violation and your ID will be deleted.
    Edited by: kishan P on Jan 16, 2012 12:26 PM

    Hi
    Could you please share exaclty error message received ?
    Best regards

  • I am trying to install Elements, I get this constant error message. This installation is not supported by this processor type. Contact your product vendor.

    I am trying to install Elements, I get this constant error message. This installation is not supported by this processor type. Contact your product vendor.
    I am using Windows 8.

    Hi,
    Which version of Photoshop Elements are you trying to install?
    Are you installing from DVD or a download?
    If DVD, make sure you are using the Windows one, not the MAC one.
    What device are you trying to install on?
    Does your system meet the required spec?
    Are you on Windows 8 or Windows 8.1?
    Brian

  • HT5642 Unable to download app this time error while downloading app please help!!!

    when i download some app from apps store i get the following error
    "Unable to download app this time error while downloading app" please help!!!
    i ve tried these Things but
    didnt workout yet
    1) i tried hard reset
    2)i tried logout/login Itune & appstore
    3)Connected to pc and rest setting Network and Full Rest
    all of no use... i dont want to update my softwre from IOS 6.0
    Plx help!1

    Hey Prahaladvatsan,
    Thanks for the question. If I understand correctly, there is a blank app icon on the home screen. It looks like you have already done some troubleshooting. I would recommend that you read these articles, they may be helpful in troubleshooting your issue.
    Restart or reset your iPhone, iPad, or iPod touch - Apple Support
    Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support
    Thanks for using Apple Support Communities.
    Have a good one,
    Mario

  • Firefox will no longer load I have windows 7 start pack 2 I receive this message: Error code: ssl_error_protocol_version_alert

    I receive this message: Error code: ssl_error_protocol_version_alert
    firfox will not load

    My apologies for not supplying the rest of the information required. I will go through the information provided in the link. Thank you.
    I am using Windows 7 Home Premium.
    The previous version of Acrobat is showing 8 from CS3 Design Premium.
    I did not get a chance to try another DVD drive or load onto another machine to test the disk. I will also have to note all of the errors from the reinstall failure.
    I do see the original install folder created - C:\Program Files (x86)\Adobe\Acrobat 8.0
    Jeff

Maybe you are looking for

  • Using a Text Area for a Where In () Clause

    Hi Everyone! It has been awhile since I have done any Oracle ApEx development. This is because I work on the BI team and have been doing more ETL and Teradata development to support MicroStrategy reports. Having said that, I am attempting to upgrade

  • Age-wise Material Stock Report

    Dear Guru, Any SAP standard report will show age-wise Material stock. Ex: IF i hv a X material in Stock, i want to know the how many days it was in production and how many days in finished stock like that. <b>Any reports which are similar to Age-wise

  • How realize drag and drop of object

    Hi everybody, I have a matter, I want to realise a VI who makes drag and drop of indicator like a gauge for example. For this I used an event structure to manage the drag and drop. But the probleme is that with this solution i must put the indicator

  • My Ipod touch 4G withdraw some songs. It can see them but can't play.

    Does anybody help me? I sick of my Ipod. It regularly loses some songs (randomly without definite order). I have to delete them and transfer them to ipod again or restore ipod, otherwise it will lose more songs. Also it doesn't see some covers but th

  • Oracle report and spreasheet

    HI, I tried to run a report from o.a.s, if I run with parameter "delimiteddata" it works but if I use spreadsheet doesn't work. An export file "xls" with 6000 rows: - delimitedata around 500 Kb - spreasheet around 17 Mb I know that exists a bug with