Unicode is not in Touchpad?

Hello,
    I am trying to access some Vietnamese webiste and I can view those webiste fine with IE9, Ipad2, Iphone but I can't view those websites with Touchpad.  All the font are mess up.  I look around on the web for answer and look like touchpad does not have unicode font support.  Is there anyway that I can install unicode font to my touchpad?
Post relates to: HP TouchPad (WiFi)

 What we really need are the actual web sites that are not supported for Vietnamese, and Hebrew provided so this information can be passed to engineering. Can you please post the URL for the problem sites here?

Similar Messages

  • Unicode type not convertible

    Hi,
    Need some help in modifying the code ... I am working on a mass download of data into a texr file from the tables. Few of these tables have fields in decimal or currency and I  need to read them into character string. I know the structure of the internal table I read the data into has to exactly match the table structure in Unicode environment. How to add that in the code when I am pulling the tables dynamically and reading their data in a sequential  manner. Hence I am getting the above error.
    Data: begin of i_list occurs 0,
          i_tabledata(2550) type c,
         end of i_list.
    select * from (v_tabname) into i_list.   -
    > Unicode  type not convertible error...
            append i_list.
            clear i_list.
          endselect.
    The value of 'v_tabname' comes from the table DD02l dynamically.
    Any thoughts?
    Thanks,
    VG

    As per your requirement, i developed this code snippet.
    I download the data from ZTESTVBAK & upload the data to YTESTVBAK. Not sure why you're transferring the data to string & trying to read the string ?
    Check this code snippet:
    PARAMETERS: p_tab TYPE tabname OBLIGATORY DEFAULT 'ZTESTVBAK',
                p_dwld RADIOBUTTON GROUP grp1 DEFAULT 'X',
                p_upld RADIOBUTTON GROUP grp1.
    DATA: dref TYPE REF TO data,
          v_tab TYPE tabname,
          lcx_sql_err TYPE REF TO cx_sy_sql_error,
          v_errtxt TYPE string.
    FIELD-SYMBOLS: <itab> TYPE STANDARD TABLE,
                   <wa> TYPE ANY.
    CREATE DATA dref TYPE STANDARD TABLE OF (p_tab).
    ASSIGN dref->* TO <itab>.
    IF p_dwld = 'X'.
      SELECT * FROM (p_tab) INTO TABLE <itab> UP TO 100 ROWS.
      IF sy-subrc = 0.
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            filename                = 'C:\dyntab.txt'
            write_field_separator   = 'X'
            confirm_overwrite       = 'X'
          TABLES
            data_tab                = <itab>
          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.
          WRITE: / 'File download successful.'.
        ENDIF.
      ENDIF.
    ELSEIF p_upld = 'X'.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                = 'C:\dyntab.txt'
          has_field_separator     = 'X'
        TABLES
          data_tab                = <itab>
        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.
        v_tab = p_tab.
    *   Lock the table records
        CALL FUNCTION 'ENQUEUE_E_TABLEE'
          EXPORTING
            tabname        = v_tab
          EXCEPTIONS
            foreign_lock   = 1
            system_failure = 2
            OTHERS         = 3.
        IF sy-subrc = 0.
          TRY .
              MODIFY (p_tab) FROM TABLE <itab>.
            CATCH cx_sy_sql_error INTO lcx_sql_err.
              v_errtxt = lcx_sql_err->get_text( ).
          ENDTRY.
        ENDIF.
    *   Unlock the table records
        CALL FUNCTION 'DEQUEUE_E_TABLE'
          EXPORTING
            tabname = v_tab.
        COMMIT WORK.
      ENDIF.
    ENDIF.
    Hope this helps.
    BR,
    Suhas

  • The following error occurred while performing a repository action. Error - [PCSF_10007] Cannot connect to repository [dev_repo] because \n[[REP_61082] AdminConsole's code page (UTF-8 encoding of Unicode) is not one-way compatible to repository dev_repo's

    Can some one help me out here ?

    Hello Experts, Am facing the below error in console page.Can someone help out here ? The following error occurred while performing a repository action. Error - [PCSF_10007] Cannot connect to repository [dev_repo] because \n[[REP_61082] AdminConsole's code page (UTF-8 encoding of Unicode) is not one-way compatible to repository dev_repo's code page (MS Windows Latin 1 (ANSI), superset of Latin1). Failed to connect to repository service [dev_repo].].  Below my environment variables in .bash_profile LANG=en_US.utf8; export LANGLC_ALL=en_US.utf8; export LC_ALLINFA_CODEPAGENAME=UTF-8; export INFA_CODEPAGENAME Thanks,Ahmed.

  • [solved] new xorg not autodetecting touchpad

    After I upgraded to to xorg server 1.6, my touchpad doesn't work.  Not sure what is going on.  There doesn't seem to be any errors in the log. The mouse that is detected is a usb one I found in a corner trying to figure this out.
    Any ideas?
    Thanks
    My xorg.conf is:
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/local/share/fonts"
    EndSection
    Section "Module"
    Load "bitmap"
    Load "int10"
    Load "vbe"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "intel"
    Option "DRI" "true"
    VendorName "Intel Corporation"
    BoardName "Mobile Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    Option "FramebufferCompression" "true"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    Option "MIT-SHM" "Yes"
    EndSection
    Xorg.0.log:
    X.Org X Server 1.6.1
    Release Date: 2009-4-14
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.29-ARCH i686
    Current Operating System: Linux awalterslaptop 2.6.29-ARCH #1 SMP PREEMPT Wed Apr 8 12:47:56 UTC 2009 i686
    Build Date: 15 April 2009 11:09:10AM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Thu Apr 16 11:59:03 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) No Layout section. Using the first Screen section.
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/local/share/fonts" does not exist.
    Entry deleted from font path.
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/75dpi,
    /usr/share/fonts/100dpi,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (**) Extension "Composite" is enabled
    (**) Extension "MIT-SHM" is enabled
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (II) Loader magic: 0x1a40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (++) using VT number 7
    (--) PCI:*(0@0:2:0) Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0xeff00000/524288, 0xd0000000/268435456, 0xefec0000/262144, I/O @ 0x0000eff8/8
    (--) PCI: (0@0:2:1) Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0xeff80000/524288
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded by default.
    (II) "dbe" will be loaded by default.
    (II) "glx" will be loaded by default.
    (II) "record" will be loaded by default.
    (II) "dri" will be loaded by default.
    (II) "dri2" will be loaded by default.
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
    (II) LoadModule: "vbe"
    (II) Loading /usr/lib/xorg/modules//libvbe.so
    (II) Module vbe: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.1.0
    ABI class: X.Org Video Driver, version 5.0
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.3.2
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ,
    965GM, 965GME/GLE, G33, Q35, Q33, Intel Integrated Graphics Device
    (II) Primary Device is: PCI 00@00:02:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Reloading /usr/lib/xorg/modules//libint10.so
    (II) Loading sub module "vbe"
    (II) LoadModule: "vbe"
    (II) Reloading /usr/lib/xorg/modules//libvbe.so
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 0.1.0
    ABI class: X.Org Video Driver, version 5.0
    (II) intel(0): Creating default Display subsection in Screen section
    "Screen0" for depth/fbbpp 24/32
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (**) intel(0): Option "DRI" "true"
    (**) intel(0): Option "FramebufferCompression" "true"
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GM
    (--) intel(0): Chipset: "945GM"
    (--) intel(0): Linear framebuffer at 0xD0000000
    (--) intel(0): IO registers at addr 0xEFF00000
    (II) intel(0): 2 display pipes available.
    (==) intel(0): Using EXA for acceleration
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) intel(0): Output VGA using monitor section Monitor0
    (II) intel(0): I2C bus "CRTDDC_A" initialized.
    (II) intel(0): Output LVDS has no monitor section
    (II) intel(0): I2C bus "LVDSDDC_C" initialized.
    (II) intel(0): Attempting to determine panel fixed mode.
    (II) intel(0): I2C device "LVDSDDC_C:E-EDID segment register" registered at address 0x60.
    (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
    (II) intel(0): EDID vendor "SEC", prod id 0
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Reloading /usr/lib/xorg/modules//libint10.so
    (II) intel(0): initializing int10
    (II) intel(0): Bad V_BIOS checksum
    (II) intel(0): Primary V_BIOS segment is: 0xc000
    (II) intel(0): VESA BIOS detected
    (II) intel(0): VESA VBE Version 3.0
    (II) intel(0): VESA VBE Total Mem: 7872 kB
    (II) intel(0): VESA VBE OEM: Intel(r) 82945GM Chipset Family Graphics Chip Accelerated VGA BIOS
    (II) intel(0): VESA VBE OEM Software Rev: 1.0
    (II) intel(0): VESA VBE OEM Vendor: Intel Corporation
    (II) intel(0): VESA VBE OEM Product: Intel(r) 82945GM Chipset Family Graphics Controller
    (II) intel(0): VESA VBE OEM Product Rev: Hardware Version 0.0
    (II) intel(0): found backlight control method /sys/class/backlight/acpi_video0
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" registered at address 0x70.
    (II) intel(0): No SDVO device found on SDVOB
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" registered at address 0x72.
    (II) intel(0): No SDVO device found on SDVOC
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" removed.
    (II) intel(0): Output TV has no monitor section
    (II) intel(0): EDID vendor "SEC", prod id 0
    (II) intel(0): Output VGA disconnected
    (II) intel(0): Output LVDS connected
    (II) intel(0): Output TV disconnected
    (II) intel(0): Using exact sizes for initial modes
    (II) intel(0): Output LVDS using initial mode 1280x800
    (II) intel(0): Monitoring connected displays enabled
    (II) intel(0): detected 256 kB GTT.
    (II) intel(0): detected 7932 kB stolen memory.
    (==) intel(0): video overlay key set to 0x101fe
    (==) intel(0): Will not try to enable page flipping
    (==) intel(0): Triple buffering disabled
    (==) intel(0): Intel XvMC decoder disabled
    (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
    (==) intel(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "exa"
    (II) LoadModule: "exa"
    (II) Loading /usr/lib/xorg/modules//libexa.so
    (II) Module exa: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 2.4.0
    ABI class: X.Org Video Driver, version 5.0
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) intel(0): Comparing regs from server start up to After PreInit
    (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd000000a
    (WW) intel(0): PP_STATUS before: on, ready, sequencing idle
    (WW) intel(0): PP_STATUS after: on, ready, sequencing on
    (WW) intel(0): Register 0x70024 (PIPEASTAT) changed from 0x00000000 to 0x80000203
    (WW) intel(0): PIPEASTAT before: status:
    (WW) intel(0): PIPEASTAT after: status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS
    (WW) intel(0): Register 0x71024 (PIPEBSTAT) changed from 0x00000202 to 0x80000242
    (WW) intel(0): PIPEBSTAT before: status: VSYNC_INT_STATUS VBLANK_INT_STATUS
    (WW) intel(0): PIPEBSTAT after: status: FIFO_UNDERRUN VSYNC_INT_STATUS LBLC_EVENT_STATUS VBLANK_INT_STATUS
    (WW) intel(0): Register 0x68060 (TV_SC_CTL_1) changed from 0xc1710087 to 0xc1710088
    (WW) intel(0): Register 0x68064 (TV_SC_CTL_2) changed from 0x6b405140 to 0x4e2d1dc8
    (II) Loading sub module "dri"
    (II) LoadModule: "dri"
    (II) Reloading /usr/lib/xorg/modules/extensions//libdri.so
    (==) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) intel(0): Kernel reported 810752 total, 1 used
    (II) intel(0): I830CheckAvailableMemory: 3243004 kB available
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: drmOpenMinor returns 10
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) [drm] DRM interface version 1.3
    (II) [drm] DRM open master succeeded.
    (II) intel(0): [drm] Using the DRM lock SAREA also for drawables.
    (II) intel(0): [drm] framebuffer mapped by ddx driver
    (II) intel(0): [drm] added 1 reserved context for kernel
    (II) intel(0): X context handle = 0x1
    (II) intel(0): [drm] installed DRM signal handler
    (**) intel(0): Framebuffer compression enabled
    (**) intel(0): Tiling enabled
    (==) intel(0): VideoRam: 262144 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    (II) intel(0): Tiled allocation successful.
    (II) intel(0): [drm] Registers = 0xeff00000
    (II) intel(0): [drm] ring buffer = 0xd0000000
    (II) intel(0): [drm] mapped front buffer at 0xd1000000, handle = 0xd1000000
    (II) intel(0): [drm] mapped back buffer at 0xd4000000, handle = 0xd4000000
    (II) intel(0): [drm] mapped depth buffer at 0xd5000000, handle = 0xd5000000
    (II) intel(0): [drm] mapped classic textures at 0xd6000000, handle = 0xd6000000
    (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432
    (II) intel(0): [dri] visual configs initialized
    (II) intel(0): Page Flipping disabled
    (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (II) EXA(0): Offscreen pixmap area of 31457280 bytes
    (II) EXA(0): Driver registered support for the following operations:
    (II) Solid
    (II) Copy
    (II) Composite (RENDER acceleration)
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): [DRI] installation complete
    (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x01000000 (pgoffset 4096)
    (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x02000000 (pgoffset 8192)
    (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x04000000 (pgoffset 16384)
    (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x05000000 (pgoffset 20480)
    (II) intel(0): xf86BindGARTMemory: bind key 4 at 0x06000000 (pgoffset 24576)
    (II) intel(0): Fixed memory allocation layout:
    (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB)
    (II) intel(0): 0x00020000-0x0061ffff: compressed frame buffer (6144 kB, 0x00000000cf820000 physical
    (II) intel(0): 0x00620000-0x00620fff: compressed ll buffer (4 kB, 0x00000000cfe20000 physical
    (II) intel(0): 0x00621000-0x0062afff: HW cursors (40 kB, 0x00000000cfe21000 physical
    (II) intel(0): 0x0062b000-0x00632fff: logical 3D context (32 kB)
    (II) intel(0): 0x00633000-0x00633fff: overlay registers (4 kB, 0x00000000cfe33000 physical
    (II) intel(0): 0x007bf000: end of stolen memory
    (II) intel(0): 0x01000000-0x01ffffff: front buffer (10240 kB) X tiled
    (II) intel(0): 0x02000000-0x03dfffff: exa offscreen (30720 kB)
    (II) intel(0): 0x04000000-0x04ffffff: back buffer (10240 kB) X tiled
    (II) intel(0): 0x05000000-0x05ffffff: depth buffer (10240 kB) X tiled
    (II) intel(0): 0x06000000-0x07ffffff: classic textures (32768 kB)
    (II) intel(0): 0x10000000: end of aperture
    (WW) intel(0): ESR is 0x00000001, instruction error
    (WW) intel(0): PRB0_CTL (0x0001f001) indicates ring buffer enabled
    (WW) intel(0): Existing errors found in hardware state.
    (II) intel(0): Selecting standard 18 bit TMDS pixel format.
    (II) intel(0): Output configuration:
    (II) intel(0): Pipe A is off
    (II) intel(0): Display plane A is now disabled and connected to pipe A.
    (II) intel(0): Pipe B is on
    (II) intel(0): Display plane B is now enabled and connected to pipe B.
    (II) intel(0): Output VGA is connected to pipe none
    (II) intel(0): Output LVDS is connected to pipe B
    (II) intel(0): Output TV is connected to pipe none
    (II) intel(0): [drm] dma control initialized, using IRQ 16
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (II) intel(0): Selecting standard 18 bit TMDS pixel format.
    (**) Option "dpms" "true"
    (**) intel(0): DPMS enabled
    (II) intel(0): Set up textured video
    (II) intel(0): Set up overlay video
    (II) intel(0): direct rendering: Enabled
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: Screen 0 is not DRI2 capable
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) AIGLX: enabled GLX_SGI_make_current_read
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: enabled GLX_texture_from_pixmap with driver support
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i915_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (II) intel(0): Setting screen physical size to 331 x 207
    (II) config/hal: Adding input device HID 062a:0000
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.2.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) HID 062a:0000: always reports core events
    (**) HID 062a:0000: Device: "/dev/input/event11"
    (II) HID 062a:0000: Found 3 mouse buttons
    (II) HID 062a:0000: Found x and y relative axes
    (II) HID 062a:0000: Found scroll wheel(s)
    (II) HID 062a:0000: Configuring as mouse
    (**) HID 062a:0000: YAxisMapping: buttons 4 and 5
    (**) HID 062a:0000: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "HID 062a:0000" (type: MOUSE)
    (**) HID 062a:0000: (accel) keeping acceleration scheme 1
    (**) HID 062a:0000: (accel) filter chain progression: 2.00
    (**) HID 062a:0000: (accel) filter stage 0: 20.00 ms
    (**) HID 062a:0000: (accel) set acceleration profile 0
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event8"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event7"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) intel(0): EDID vendor "SEC", prod id 0
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 71.11 1280 1328 1360 1440 800 802 808 823 -hsync -vsync (49.4 kHz)
    (II) intel(0): EDID vendor "SEC", prod id 0
    (II) intel(0): xf86BindGARTMemory: bind key 5 at 0x007bf000 (pgoffset 1983)
    (II) intel(0): xf86UnbindGARTMemory: unbind key 5
    (II) intel(0): EDID vendor "SEC", prod id 0
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 71.11 1280 1328 1360 1440 800 802 808 823 -hsync -vsync (49.4 kHz)
    (II) intel(0): EDID vendor "SEC", prod id 0
    (II) intel(0): xf86BindGARTMemory: bind key 5 at 0x007bf000 (pgoffset 1983)
    (II) intel(0): xf86UnbindGARTMemory: unbind key 5
    exaCopyDirty: Pending damage region empty!
    Last edited by amw2320 (2009-05-03 04:45:17)

    I hope i won't say anything stupid here, but AFAIUnderstand Xorg has now an autodetect "feature" that fails more often than not, or configures mice with weird defaults.
    Try to add this to your /etc/X11/xorg.conf:
    Section "ServerFlags"
    Option "AutoAddDevices" "false"
    Option "DontZap" "false"
    EndSection
    Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "CorePointer"
    Option "Device" "/dev/misc/psaux"
    Option "Protocol" "auto-dev"
    # Option "LeftEdge" "1000"
    # Option "RightEdge" "5400"
    # Option "TopEdge" "1000"
    # Option "BottomEdge" "4900"
    # Option "PalmDetect" "0"
    # Option "SHMConfig" "true"
    # Option "RBCornerButton" "0"
    # Option "RTCornerButton" "0"
    Option "MinSpeed" "0.9"
    Option "MaxSpeed" "1.4"
    Option "TapButton1" "1"
    Option "TapButton2" "2"
    Option "TapButton3" "3"
    Option "VertTwoFingerScroll" "1"
    Option "HorizTwoFingerScroll" "1"
    # Option "VertEdgeScroll" "1"
    # Option "HorizEdgeScroll" "1"
    # Option "MaxTapTime" "180"
    # Option "MaxTapMove" "2000"
    # Option "MaxDoubleTapTime" "360"
    # Option "SingleTapTimeout" "360"
    # Option "EmulateMidButtonTime" "75"
    # Option "HorizScrollDelta" "0"
    EndSection
    Section "InputDevice"
    Identifier "Mouse"
    Driver "mouse"
    Option "SendCoreEvents" "true"
    EndSection
    (the "DontZap" option is unrelated to your problem, it allows to kill X with ctrl-alt-backspace)
    These touchpad settings are the ones I'm using on my EeePC900, you may want to tweak them. I left some commented options for reference.

  • IN BW UCCHECK transaction for Unicode does not list Transfer/Update rules

    Hi All,
    We are going to update our BW system to install Enhancement Package 1 SP 7 on our BW 7.0 and we are going also to convert our data base to Unicode.
    We used the UCCKECK Transaction to have a list of the abap programs to be modified before the u201Cconversionu201D procedure.
    But the transaction does not list the abap code included into transfer rules, update rules and start routines.
    Have you an idea to recover them?
    And do you think the conversion procedure will abort if these kinds of routines are not adjusted or they will go in error at runtime?
    Do you have experienced this problem?
    Thanks a lot.
    Antonella

    Hi Nils, sorry for delay in replyu2026
    Unfortunately we started to develop our routines in BW2.0 and checking some of them we receive the error u201CIn Unicode programs, the "-" character cannot appear in names, as it does here in the name "W-DATE" u201Du2026
    And further more in subsequent BW releases the same error is only a u201Cwarningu201D into a NON Unicode system. 
    So I think we should check and correct all our routines before the Unicode conversion.
    My best regards, Antonella

  • [HELP!] perl and unicode are not working

    I have a database that I know supports Unicode, I'm trying to read/write data using perl and I'm pulling my hair out! I have a table populated with some Unicode characters that I inserted using TOAD and this sql statement:
    insert into jay_test values (-101, 'Τη γλώσσα μου έδωσ');
    When I look at the data in TOAD everything looks great, when I read the data out using .NET it works great, when I read it out using PERL the result if a bunch of question marks.
    Here is the code:
    #!/usr/bin/perl -w
    <%
    use utf8;
    use DBD::Oracle;
    $Response->AddHeader("Content-Type","text/html; charset=utf-8;");
    my $dbh2 = DBI->connect($db, $user, $password, {AutoCommit => 1});
    my $x = $dbh2->ora_can_unicode();
    my $sth = $dbh2->prepare("SELECT i, j from jay_test order by i desc");
    $sth->execute();
    while (my ($i, $j) = $sth->fetchrow_array()) {
         debug("i = $i, j = $j");
         $html .= qq{
              <tr>
                   <td>$i</td>
                   <td>$j</td>
              </tr>
    The result is this:
    -101      ?? ?????? ??? ????
    As a note: the line "$dbh2->ora_can_unicode();" returns a value of 3, which means that Unicode should be fully supported.
    Anyone who can point me in the right direction will be my savior! Thanks in advance

    The OS is Red Hat Enterprise Linux Server release 5.4 (Tikanga)
    The Kernel is 2.6.18
    Database is 10g
    Toad is 10.1.1.8
    Here are the parameters that PERL is seeing:
    my $params = $dbh2->ora_nls_parameters();
    print_r($params); return;
    [Hash] {
         NLS_CALENDAR => GREGORIAN
         NLS_CHARACTERSET => AL32UTF8
         NLS_COMP => BINARY
         NLS_CURRENCY => $
         NLS_DATE_FORMAT => DD-MON-RR
         NLS_DATE_LANGUAGE => AMERICAN
         NLS_DUAL_CURRENCY => $
         NLS_ISO_CURRENCY => AMERICA
         NLS_LANGUAGE => AMERICAN
         NLS_LENGTH_SEMANTICS => BYTE
         NLS_NCHAR_CHARACTERSET => AL16UTF16
         NLS_NCHAR_CONV_EXCP => FALSE
         NLS_NUMERIC_CHARACTERS => .,
         NLS_SORT => BINARY
         NLS_TERRITORY => AMERICA
         NLS_TIMESTAMP_FORMAT => DD-MON-RR HH.MI.SSXFF AM
         NLS_TIMESTAMP_TZ_FORMAT => DD-MON-RR HH.MI.SSXFF AM TZR
         NLS_TIME_FORMAT => HH.MI.SSXFF AM
         NLS_TIME_TZ_FORMAT => HH.MI.SSXFF AM TZR
    Do i need to issue a PERL command to change one of these NLS params?
    I appreciate the help everyone, this issue is killing me!

  • Unicode character not displaying when PDF is created using PDFMaker

    Using Adobe Acrobat Pro 9
    Our company letterhead contains a special character (Unicode 25AA "Black Small Square"). When a PDF is created of a Microsoft Word document (2003 or 2007) using the PDFMaker, that character is not displayed in Acrobat (shows as whitespace). Strangely enough, if I search for the character in that PDF file using the Acrobat search function (query "u/25AA"), the search finds the character, but again, it is displayed as whitespace.
    However, if I create a PDF from that same Word document by printing to Adobe PDF, the character displays correctly in Acrobat. Additionally, if I do a SaveAs to PDF (Using the Microsoft plugin), the character displays correctly in Acrobat. This leads me to believe that muy issue is related to the PDFMaker (as opposed to the PDF printing function) and how the character is embedded into the PDF file. I have tried opening the PDF in other versions of Acrobat, but I get the same result.
    Any suggestions? We would like to utilize the convenience of the PDFMaker for our letters and reports, and not have to use the print function. I can email a sample of all the PDF's I spoke of upon request, but the issue should be reproducable using the following steps:
    1. Open MS Word and type (or copy from the Character Map) unicode character 25AA in Arial font.
    2. Save Word file.
    3. Use PDFMaker to create PDF file.
    4. Open PDF file and view results.
    Any guidance or help is appreciated.
    Phil Hinton

    First, check the fonts in the PDF to be sure that they are not embedded (you are likely correct that there is a problem). What job settings are you using. Try the press or print. Also check the job settings to be sure that ALL fonts are to be embedded.
    Also, check the log file of Distiller (set it to not be deleted in the settings). If there is an issue with the license of the font then the font will not be embedded. In that case you need to find a licensed version of the font or change to a different font.

  • Unicode character not displaying correctly

    when i am stroring Unicode Character in Oracle 8 DB .The Stored Character are not displayed correctly . Through sql client seen as '�' .Altough through JSp it displays correct value &#38598; (in japanese)
    My client wants to see through sql also same value . Pls help wat is wrong. More info :
    Oracle is set up in UTF-8 Format.
    Using code as below before inserting in DB
    String temp =product.getDescription();
    String newResult = new String(temp.getBytes("UTF-8"), "UTF-8");

    TryString newResult = new String(temp.getBytes(default),>
    "UTF-8");// "default" is a String of the name of
    default encoding on the part of client
    Sorry there was a slip. Try the following.
    String newResult = new String(temp.getBytes(default));

  • Some Unicode does not display despite proper font support

    I am having trouble figuring out why certain pages do not display Unicode blocks I know I have fonts for. For example, I have fonts for Imperial Aramaic (Quivira and 2 others), and two for Linear B Ideograms (Aegean, Code2001). I have verified this via the excellent BabelMap application, which will show you which fonts installed support which Unicode blocks. If I go into the preferences and make the default font Quivira, the Imperial Aramaic characters get displayed, but not the Linear B ones. And vice versa if I pick Aegean as the font. I would expect FFox to figure it out and work out any font that could support the Unicode block. Here are 2 test pages:
    http://www.alanwood.net/unicode/imperial-aramaic.html
    http://www.alanwood.net/unicode/linear_b_ideograms.html

    Did you try to select a common font like Verdana or Arial as the default font?
    That should make Firefox automatically use the right font if the currently selected font don't have the glyphs.
    You may also have to enable fonts for web pages.
    *Tools > Options > Content Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"

  • How does sapinst know if a system is unicode or not

    While installing a new dialog server the sapinst is failing.
    One of the messages I found in the log indicates sapinst can not find kernels in a non-unicode directory structure.  
    The system in question is unicode and we have no Non-Unicode directories to copy from.  If sapinst would look in the proper location it would find the files in question.

    sapinst.log has the following entry: ****
    INFO 2010-07-26 15:53:39.793
    An error occured and the user decided to retry the current step: "|NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|doCopyMssJarsFromCI".
    WARNING[E] 2010-07-26 15:53:40.043
    CJS-30041  Unable to find a primary application server instance for SAP system PRD.
    ERROR 2010-07-26 15:53:40.43
    FCO-00011  The step doCopyMssJarsFromCI with step key |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|doCopyMssJarsFromCI was executed with status ERROR .
    sapinst_dev.log  has the following entry ****
    WARNING[E] 2010-07-26 15:53:40.043
               CJSlibModule::writeError_impl()
    CJS-30041  Unable to find a primary application server instance for SAP system PRD.
    TRACE      2010-07-26 15:53:40.43 [iaxxejsbas.hpp:483]
               EJS_Base::dispatchFunctionCall()
    JS Callback has thrown unknown exception. Rethrowing.
    ERROR      2010-07-26 15:53:40.43 [sixxcstepexecute.cpp:951]
    FCO-00011  The step doCopyMssJarsFromCI with step key |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|doCopyMssJarsFromCI was executed with status ERROR .
    TRACE      2010-07-26 15:53:40.75 [iaxxgenimp.cpp:752]
                CGuiEngineImp::showMessageBox
    <html> <head> </head> <body> <p> An error occurred while processing service SAP ERP 6.0 Support Release 3 > Software Life-Cycle Options > Application Server > MS SQL Server > Dialog Instance. You may now </p> <ul> <li> choose <i>Retry</i> to repeat the current step. </li> <li> choose <i>View Log</i> to get more information about the error. </li> <li> stop the task and continue with it later. </li> </ul> <p> Log files are written to C:\Program Files/sapinst_instdir/ERP/LM/AS/MSS/DI. </p> </body></html>
    TRACE      2010-07-26 15:53:40.75 [iaxxgenimp.cpp:1255]
               CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    sapcpe_sapinst.log has the following entry ****
    INFO:    open now the right log file sapcpe.log
    ================ >>> main =======================
    INFO:    sapcpe version: @(#) $Id: //bas/701_REL/src/ccm/sapstart/sapxxcpe.c#3 $ SAP
    =================================================
    INFO:    Try to find file table sapcpeft (default:sapcpeft)
    INFO:    Try to find file table in the central directory
    eccvrtp2\sapmnt\PRD\SYS\exe\nuc\NTAMD64\sapcpeft
    INFO:    not found any file table.
    =================================================
    Update Local Programs (dir-sync + file-path + ln)
    =================================================
    Starting at 2010/07/26 14:50:49
    ERROR:   can't change to central Executable-Dir
    eccvrtp2\sapmnt\PRD\SYS\exe\nuc\NTAMD64 (No such file or directory) 2
    Bill Says - Thanks for the help ****

  • DUMP ERROR UNICODE  PROG NOT CONVERTABLE

    Hi,
       I am doing upload data from excel sheet and i have a dump in the function module AA_FILE_UPLOAD_EXCEL. and the dump error is showing as below :
    Data objects in a Unicode program are not convertible.
    and the error in the  FM line show below
    000870 ?     CONCATENATE ls_result <lfs_excel
    000880 ?       IN CHARACTER MODE.
    000890 ?     CONDENSE ls_result.
    000900 ?
    000910 ?     AT END OF row.
         > ?       et_filecontent = ls_result.
    000930 ?       APPEND et_filecontent.
    000940 ?       CLEAR et_filecontent.
    000950 ? *     Set previouse column to zero
    000960 ?       ld_prev_col = 0.
    000970 ?     ENDAT.
    Pls help me to solve the issue and thanks ful to you.
    Thanks,
    RAJ

    Hi Rajendra
    To avoid the dump, please proceed as below:
    1. If you system is <b>Unicode enabled</b>, please make sure that you transfer contents of one structure to other individually especially when there are other than CHAR fields.
    Eg: struc2-fld1 = struc1-fld1...
    2. If you are in <b>Non-Unicode System</b>: SE38-> Goto -> Attributes. Uncheck the option: "<b>Unicode Checks Active</b>".
    Kind Regards
    Eswar

  • Unicode fonts not displaying

    I pruned my fonts back last week, but removing them from my System Folder, but now the Unicode fonts are not displaying in my web browser (maybe same in other apps, but haven't noticed). What specific font is used for Unicode display?
    Thanks.

    Tom-I appreciate the response. I'm trying to get the 3-line list menu "hamburger" icon to appear with character \2630. Since I removed the bulk of my fonts, this appears as a missing link in my web browsers. Not sure which of the various fonts may include this character.

  • System is unicode or not?

    Hello
    For some reason, i need to find out that executing system is unicode enabled or not? i should know it with in my prog. I need it to put a validation in mu prog. I checked SYST structure at runtime, no use!
    Thank you

    Hi,
    I am not understanding what are you trying to say.
    If I am correct then you want to check whether your SAP system is UNICODE enabled or not.
    If this is your query, then you can find this thing by:
    Login to SAP -> GoTo system -> Click on Status.
    In the middle, you will see "Unicode System", if value is "Yes", then your system is Unicode enabled.
    If you want to put check points in program, to know whether executing system is Unicode enabled or not, then this link will definately help you.[ABAP Development Under Unicode|http://help.sap.com/saphelp_nw04/helpdata/en/79/c55458b3dc11d5993800508b6b8b11/content.htm]
    For your referrence:
    [Unicode related issue|Unicode Check Active;
    [Unicode related issue|Isn't unicode check defaulted in ECC 6.0 ?;
    May it helps you.
    Regards,
    <DS>

  • Unicode font not render in TextBox in CRXI R2

    Post Author: saroeurn
    CA Forum: Deployment
    I use VS2005 and CRXI R2. When I create new report in CRXI R2 with a textbox and change font to  "Khmer Kep" (Khmer font Unicode). When the coursor in the textbox the rendering font work. But when lost focus the rendering is not work.

    I can see the unicode symbols properly both in X and in the tty:
    ┌───┤karol@black:5├─────────────┤├──
    └─┤12:07 AM|$├─> locale
    LANG=en_US.UTF-8
    LC_CTYPE="en_US.UTF-8"
    LC_NUMERIC="en_US.UTF-8"
    LC_TIME="en_US.UTF-8"
    LC_COLLATE=C
    LC_MONETARY="en_US.UTF-8"
    LC_MESSAGES=C
    LC_PAPER="en_US.UTF-8"
    LC_NAME="en_US.UTF-8"
    LC_ADDRESS="en_US.UTF-8"
    LC_TELEPHONE="en_US.UTF-8"
    LC_MEASUREMENT="en_US.UTF-8"
    LC_IDENTIFICATION="en_US.UTF-8"
    LC_ALL=
    ┌───┤karol@black:5├─────────────┤├──
    └─┤12:07 AM|$├─> localectl
    System Locale: LANG=en_US.UTF-8
    LC_COLLATE=C
    LC_MESSAGES=C
    VC Keymap: pl
    X11 Layout: n/a
    ┌───┤karol@black:5├─────────────┤├──
    └─┤12:07 AM|$├─> cat /etc/vconsole.conf
    KEYMAP=pl
    #FONT=lat2-16
    FONT=Lat2-Terminus16
    FONT_MAP=8859-2
    I use Terminus font in X too.
    What's the output of
    echo $TERM

  • Conversion to unicode-- Vocabulary not filled

    Hello,
    I have a problem in migration to unicode.
    My sistem is SAP R/4 4.7
    Below is the steps that I executed:
    In tranzaction SPUMG
    -reset all scans
    -initialized the language list
    -initialized the worklist
    -ran consistency check
    -ran tables without Language info
    -ran tables with ambiguous language info
    and after ran tables without Language info I expected to have something in Vocabulary, but this is not anything.
    I mention, the worklist was only one initiliazed (when I ran the consistency check).
    Must be initiliazed at every check, for example when run tables with ambiguos info? Must be this problem which leads to not filling in Vocabulary?
    Please guide me,
    Thank you.
    Florin

    Hi  Nils Buerckel,
    My conversion is MDMP. In table TCPDB I have two codes page --1100 and 1401.
    The Basis Suport Pachage is on the level 62. I installed Suport Pachages at this level to follow the conversion guide.
    I have checked SPUMG Button Monitor and it status is Initialization Completed.
    The all other statuses is completed. (Consistency check, tables without language information, tables with language information, tables with ambiguous information, reprocess)
    But in Tables without information and in Tables with ambiguous information I have tables with status "warning" and message type 9 (tables is marked for reprocess). I marked all and started reprocess again, but after jos is finish these is back again with the same status (WARNING).
    May this a problem that can conduce in not filing vocabulary?
    Thank you,
    Regards
    Florin

Maybe you are looking for

  • Sync/update problems

    My ipod touch, 32GB will no longer sync, and the updates always time out. Both say unknown error. What do I do?

  • Add combo box into table pagination

    I want to add combo box into JavaFX table with pagination. Something like that: import javafx.application.Application; import javafx.beans.property.SimpleStringProperty; import javafx.collections.FXCollections; import javafx.collections.ObservableLis

  • Import Settings, Use error correction

    I just read that the "Use error correction when reading Audio CDs" box in iTunes Import Settings should really be on, (even though it's slower). on this page http://www.kenrockwell.com/apple/itunes.htm It's copyright 2006 Is this really the case?

  • Newly deployed apex application - very slow response time reported.

    Hi, we just deployed an APEX application on January 4th. It is used up and down the east coast to track commercially caught fish. There are currently about 375 users. Most are accessing via cable or dsl. Many are complaining of speed issues. Is there

  • Missing OS problem

    I have installed Windows 7 and upgraded to Bootcamp 3.1. I booted back into Mac OS and then I attempted to boot back into Windows where I got the dreaded "Missing OS". Before anyone tells me to hit "option" or "shift" or "command" key to select an OS