Problem with cyrillic

Hello. Please help me.
I need to be transferred parameter in SAP function.
Symbols - cyrillics. What coding to choose?
For example.
SomeFunction.getImportParameterList () .setValue (new String (value.getBytes ("ISO-8859-1")), "TTT") does not work.
SomeFunction.getImportParameterList () .setValue (new String (value.getBytes ("?")), "TTT")

Nick,
First, if value is String then, try just
SomeFunction.getImportParameterList()
  .setValue(value, "TTT");
If above does not work (or value is something like ByteArrayOutputStream) then
SomeFunction.getImportParameterList()
  .setValue (new String (value.getBytes("UTF-8")), "TTT");
Also check that SAP R/3 server is unicode enabled.
VS

Similar Messages

  • Problem with Cyrillic fonts in Mail

    I have a problem with Mail mangling Cyrillic fonts. It happens like this:
    1. I create a new mail. I set my input locale to Bulgarian - Phonetic.
    2. I type out the email and send it to someone (afraid I don't know their config).
    3. The other person replies - doesn't seem to matter whether it's in English or Cyrillic. Their reply appears perfectly, and also my quoted original text from 1 is fine in their reply when looking at it in my Inbox.
    4. I then reply to their reply in Cyrillic as per step 1 above, except by pressing reply, rather than New Mail.
    What happens then is as follows:
    a - the recipient receives my email and reads the Cyrillic content just fine
    b - the email that appears in my Sent folder has all Cyrillic content in the message from steps 1-4 above mangled. The mangling moves Cyrillic letters about - i.e. all characters are in cyrillic and the same original characters always map to the same character, they're just wrong. e.g. Дени gets mapped to дЕОЙ. Стефан maps to уФЕЖБО.
    This is a bit annoying - as I have no record of the sent mail, and you're never quite sure whether the mangling is just in the sent folder or whether the recipient is also getting the mangled text.
    Any thoughts? I haven't been able to find anyone with a similar problem on these forums.
    Thanks in advance,
    Stephan
    *My configuration*
    I'm running Leopard 10.5.6 on a PowerBook.
    My Mail version is Version 3.5 (930.3)
    Mail is configured to use:
    Lucida Grande 11 for Mailbox Font
    Lucide Grande 12 for Message List Font
    Helvetica 12 for Message Font
    My mac has the following input locales installed:
    British
    Bulgarian (phonetic)

    It might be helpful to add that in Mail->Preferences->Composing the setting is Plain Text.
    And also that if I reply to myself all day long, this problem doesn't occur - its only when replying to someone else.

  • Adobe Form - Problem with Cyrillic texts on zebra printers (ZPL)

    Hello,
    we have problems with an adobe form. We try to print this adobe form on a zebra printer with the device type "AZPL203". In this adobe form we have to print the material description in german and russian language.
    When we print out the adobe form on a normal printer (e.g. HP) everything is fine. But when we print the form on a zebra printer, the russian textwill not be printed on the label. In the print preview of the form, we will see the correct russian text.
    So can anybody help me?
    Did anybody print cyrillic text on a zebra printer?
    Thanks in advance.
    Marc.

    Good afternoon,
    First.. I apologize because I know this is the wrong thread.  But the folks in this thread apparently have the missing piece of info that I/we desperately need..  Could you please help me to understand what I'm missing, or at least point me to a forum with the answer? 
    We have a few tags that print to a Zebra Z105SL printer via Smartforms.  But due to recent design changes in the tags, and a desire to stay up with current technology, we/I would like to design the new tags in Adobe PDF-forms.  The design is not a problem, but we cannot get SAP and the Zebra printer to make nice and print anything.  For now, I've created a simple tag with a text field and a couple of bar codes on it, just to test and prove that the Zebra will print a PDF.  We are using PDF-forms for several of our business forms, so everything works, but the Zebra just won't print a PDF.  I don't know what I'm missing..  I know it's possible, but I can't figure out the "how" part.  Could you please let me know how you did it?
    Many thanks!
    Bill

  • Please help...problems with Cyrillic in Safari

    I am sure this is a simple font problem, however I haven't been able to figure it out. Certain interactive web pages in Safari that are supposed to have both English and Cyrillic characters but will only show the Cyrillic as boxes or ? marks. Particularly with an online English-Bulgarian dictionary site I have this problem. Any relevant suggestions would be appreciated.

    Problem solved. I found an article regarding resetting PRAM to handle peripherals and noticed that resetting PRAM had an effect on application fonts. I decided to wing it and see if resetting PRAM did anything and...BAM...I have Cyrillic in Safari.

  • Problem with cyrillic symbols when using 'GUI_DOWNLOAD'

    Hi,
    I have to download internal table to a excel file. I'm using FM 'GUI_DOWNLOAD'. Everything is OK, the file is downloaded, but when I open it I see some characters, where I should see cyrillic symbols. Below is the code, which I use. How can I solve the problem ?
    CALL FUNCTION 'GUI_DOWNLOAD'
       EXPORTING
            filename         = ld_fullpath
            filetype         = 'DBF'
            codepage         = '1504'
    *       APPEND           = 'X'
            write_field_separator = 'X'
    *       CONFIRM_OVERWRITE = 'X'
       TABLES
            data_tab         = itab    
            FIELDNAMES       = itab_fields
       EXCEPTIONS
            file_open_error  = 1
            file_write_error = 2
            OTHERS           = 3.
    Code Formatted by: Alvaro Tejada Galindo on Jan 8, 2009 3:56 PM

    Hi Stefan,
      Check this sample code
    REPORT  z_file_download.
    DATA: w_name(90) TYPE c.
    DATA:
      BEGIN OF fs_flight,
        carrid   LIKE sflight-carrid,
        connid   LIKE sflight-connid,
        fldate   LIKE sflight-fldate,
        price    LIKE sflight-price,
        currency LIKE sflight-currency,
      END OF fs_flight.
    DATA:
      BEGIN OF fs_head,
        carrid(10) TYPE c,
        connid(10) TYPE c,
        fldate(10) TYPE c,
        price(10) TYPE c,
        curr(10) TYPE c,
      END OF fs_head.
    DATA:
      t_head LIKE
       TABLE OF
             fs_head.
    DATA:
      t_flight LIKE
         TABLE OF
               fs_flight.
    fs_head-carrid = 'CARRID'.
    fs_head-connid = 'CONNID'.
    fs_head-fldate = 'FLDATE'.
    fs_head-price  = 'PRICE'.
    fs_head-curr   = 'CURRENCY'.
    APPEND fs_head TO t_head.
    SELECT-OPTIONS:
      s_carrid FOR fs_flight-carrid.
    START-OF-SELECTION.
      SELECT carrid
             connid
             fldate
             price
             currency
        FROM sflight
        INTO TABLE t_flight
       WHERE carrid IN s_carrid.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = 'D:\flight2.xls'
          filetype                = 'ASC'
          write_field_separator   = 'X'
        TABLES
          data_tab                = t_head
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6
          header_not_allowed      = 7
          separator_not_allowed   = 8
          filesize_not_allowed    = 9
          header_too_long         = 10
          dp_error_create         = 11
          dp_error_send           = 12
          dp_error_write          = 13
          unknown_dp_error        = 14
          access_denied           = 15
          dp_out_of_memory        = 16
          disk_full               = 17
          dp_timeout              = 18
          file_not_found          = 19
          dataprovider_exception  = 20
          control_flush_error     = 21
          OTHERS                  = 22.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = 'D:\flight2.xls'
          filetype                = 'ASC'
          append                  = 'X'
          write_field_separator   = 'X'
        TABLES
          data_tab                = t_flight
        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 EQ 0.
        MESSAGE 'Download successful' TYPE 'I'.
      ENDIF.
      IF sy-subrc <> 0.
    *  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Regards
    Abhijeet

  • Adobe Acrobat 8 Language problem with Cyrillic text

    I scanned a Russian-language document--however, when I copy the text to a machine translation text box it fails to come up in Cyrillic (Russian). To rectify the situation, I went to Help and Uploaded the Language Update (the doc does not have an embedded font). THis did not help. Any ideas?

    You need program for scanner to encode texts, not adobe
    h
    e
    l
    l
    o

  • 0CUSTOMER_TEXT - problem with the cyrillic (ukrainian) characters

    Hello,
    Within the framework of Ukrain deployment, I try to extract customer texts (0CUSTOMER_TEXT) and I meet a problem with the cyrillic (ukrainian) characters. All of them are replaced by a '#' (into the table /BI0/TCUSTOMER & into the PSA too).
    From SAP marketplace source, customer text comes from KNA1-NAME1.
    The funniest thing is that the cyrillic (ukrainian) characters extracted by 0CUSTOMER_ATTR are accurately uploaded and specially 0NAME attribute filled by the same r/3 field KNA1-NAME1.
    FYI: I checked the configuration of RFC connections and for all of ABAP connections have the radiobutton UNICODE selected.
    Could someone help me?
    Thanks in advance,
    Samuel

    Hi
    What texts will you get by using T-code: RSA3 in your source system?
    Yaniv

  • Problems with Java cyrillic fonts in Web enabled Forms

    I have a big problem with the deployed forms on the web. The
    problem is that when a form is run on the web in a Java Applet it
    uses some strange fonts. I want to make it use only specified
    fonts but I don't know how. Please help me.
    I am using Developer /2000 v2.1 and Forms5.0. The DB characterset
    is CL8MSWIN1251. The OWS is v3.0.1. All these are running on NT.
    null

    Hi
    QueryXInModel model = new QueryXInModel();
    wdContext.nodeRequest_FindXByElements().bind(wdContext.createRequest_FindXByElementsElement(new Request_FindXByElements(model)));
    wdContext.currentRequest_FindXByElementsElement().modelObject().setXByElementsQuery(new XByElementsQuery_Sync(model));
    //Processing structure
    wdContext.currentXByElementsQueryElement().modelObject().setProcessingConditions(new WITHOUT_LASTRETURNED_QueryProcessingConditions(model));
    //Selection structure
    wdContext.currentXByElementsQueryElement().modelObject().setXSelectionByElements(new XSelectionByElements(model));
    XByElementsQuery
    ProcessingConditions
    QueryHitsMaximumNumberValue
    QueryHitsUnlimitedIndicator
    XSelectionByElements
    ID
    Year
    as
              QueryXInModel model = new QueryXInModel();
               Request_FindXByElement  request = new Requst_FindXByElement();
                ProcessCondition   processCond  = new  ProcessCondition(model);
                QueryHitsMaximumNumberValue  qhMaxNumValues = QueryHitsMaximumNumberValue(model);
          QueryHitsUnlimitedIndicator  qhUnLimind = new QueryHitsUnlimitedIndicator(model);
            XSelectionByElements  selecByEle = new XSelectionByElements(model);
                     processCond.set....();                         
                     qhMaxNumValues .set...();
               and so on
                    request.set....();
    wdcontext.nodeReqestFindX..bind(request);
      in the above during the values you will automatically get the set values .

  • Problem with the Non-English Characters

    Hello,
    I have been using Adobe Illustrator  but I have a huge problem with the non-english characters with Standart Fonts. With the Professional font's I have no problem with them. But when I'm using any standart font in font folio library I cannot type any "ğ-İ-ş". I can add those letters in fontlab with the glyphs (scedilla, idotaccent, gbreve). Most of the fonts have those letters already prepeared so I dont even have to redraw. But I can't add those glyph to every single font because I dont have that kind of time and patience. Is there any better solution for this? Or is there any font folio pack that all fonts are PRO.
    I'm looking forward for your answers
    Thanks.

    Joel wrote: I'm told that this is the exact difference between Adobe's Standard and Pro fonts — the Pro fonts have additional glyphs, including those necessary for extended Latin script.
    Exactly. The Pro fonts have at a minimum the Adobe Western 3 character set, which is essentially western European + Adobe CE.
    > Standard fonts just have the basic English character set, with maybe a bit of help for Spanish and French.
    A lot more than that!
    > You're doing Turkish, right? Adobe's coverage for Turkish in its fonts is not great - some of the Pro fonts have Turkish coverage, many do not.
    This is false. Every single Adobe Pro font supports Turkish.
    To be clear:
    All Adobe Standard fonts support the following languages: Afrikaans, Basque, Breton, Catalan, Danish, Dutch, English, Finnish, French, Gaelic, German, Icelandic, Indonesian, Irish, Italian, Norwegian, Portuguese, Sami, Spanish, Swahili and Swedish.
    Adobe Pro fonts support those languages, plus AT LEAST: Croatian, Czech, Estonian, Hungarian, Latvian, Lithuanian, Polish, Romanian, Serbian (Latin), Slovak, Slovenian and Turkish. Some Pro fonts have more language support than this, such as Greek and/or Cyrillic, and additional extended Latin.
    See: http://www.adobe.com/type/browser/info/charsets.html
    Cheers,
    T

  • Problem with clientgen task in weblogic 9.0

    hi,
    While developing webservices for our project, we used the clientgen ant task for generating the artifacts on the client side. I'm getting trouble in returning a collection of objects (list, vector) from the server to the client. When i try to do so, the clientgen task tries to create a java.util package on the client side in which it creates a List class which basically contains an object array with getter-setter. What i want is for the sun java collections classes to be used instead. The above problem applies to both user-defined as well as built-in objects i.e. say a list of objects of type T or a list of Strings. If someone, has any pointers regarding the same plz help...
    tia,
    cyril

              Try limiting the length of the session id.
              This is in either the weblogic.xml/web.xml
              files. You can get the dtd in the 6.0 doc.
              "Thierry Cools" <[email protected]> wrote:
              >Hi I have a problem with the session id that is generated in tha address bar
              >of my brower
              >When I start my application the following link appears
              >
              >http://127.0.0.1:7001/ebpp_beans/enterLogonInformation.do;jsessionid=Olw9VMc
              >0I1Z52YMgycyD23c8L4Ch2FurHLwbV2WhZw731dR3mBtJ|8186718416288373359/-140823374
              >1/7001/7002
              >
              >It seems that Weblogic 6.0 generates '/' characters in the session id.
              >This has for consequences that the servlet engine is taking the session id
              >in its context path, so that none of my links are working anymore.
              >
              >Could someone give me a clue to solve this problem
              >Thanks,
              >Thierry
              >
              >--
              >
              >Thierry Cools
              >
              >Senior Java Developer
              >S1 Brussels
              >Kleine Kloosterstraat, 23
              >1932 st. Stevens-Woluwe
              >Belgium
              >Tel : +32 2 200 43 82
              >Email : [email protected]
              >
              >
              >
              

  • To Moderator:  Problem with "Logic" Apple Discussions Digest

    Hello
    I am getting mails from :[email protected] about Apple Discussions Digest for 08/10/06
    Saying :
    Dear Cyril Blanc,
    You have requested mail to be sent to you when messages are posted to certain areas in Apple Discussions.
    The following updates have been made since 07/10/06 12:20
    Topic "Benchmarking Logic on a MACPRO quad 3ghz" has been updated 4 times
    http://acdiscuss-stage01.corp.apple.com/thread.jspa?messageID=3276937#3276937
    http://acdiscuss-stage01.corp.apple.com/thread.jspa?messageID=3286104#3286104
    http://acdiscuss-stage01.corp.apple.com/thread.jspa?messageID=3286631#3286631
    http://acdiscuss-stage01.corp.apple.com/thread.jspa?messageID=3288597#3288597
    Forum "Logic Pro 7" has been updated 763 times
    "Re: Can´t open Logic document" was created on 03/10/06 20:34
    http://acdiscuss-stage01.corp.apple.com/thread.jspa?messageID=3264979#3264979
    "Re: Uh, What Do These Do?????" was created on 03/10/06 20:37
    http://acdiscuss-stage01.corp.apple.com/thread.jspa?messageID=3264984#3264984
    "Re: 96K 24 bit non-dithered bounce sounds great on a CD player?" was created on 03/10/06 20:41
    http://acdiscuss-stage01.corp.apple.com/thread.jspa?messageID=3265012#3265012
    Looks there is a problem, the links are not valid
    Best
    Cyril

    I am having the similar problems, receiving emails with discussion URLS pointing to servers I can't reach:
    The following updates have been made since 10/18/06 4:16 AM
    Topic "Podcasts wont autodelete" has been updated one time
    http://acdiscuss-stage01.corp.apple.com/thread.jspa?messageID=3321692#3321692
    Topic "Problems with sleep mode in 10.4.7" has been updated 2 times
    http://acdiscuss-stage01.corp.apple.com/thread.jspa?messageID=3356412#3356412
    http://acdiscuss-stage01.corp.apple.com/thread.jspa?messageID=3358095#3358095
    Topic "Aperature fails updating Vault..." has been updated one time
    http://acdiscuss-stage01.corp.apple.com/thread.jspa?messageID=3367212#3367212
    Whenever I get email messages like this they are accompanied by emails that are identical but with references to valid URLs.
    In addition, the "update" notifications are bogus. For example, you can see by checking the relative dates of the quoted message above and this post that there have in fact been no updates made to those discussion topics in the intervening time period.
    Since these bugs are effectively generating alot of spam, I'm surprised not to see a flood of posts complaining about this.
    I did find a reference to the 2nd issue of bogus update notifications previously posted in this archived thread Ghost new posts appear according to My Subscriptions at
    http://discussions.apple.com/thread.jspa?threadID=348043.
    Also, it has been mentioned more recently in Forum Bugs at
    http://discussions.apple.com/thread.jspa?messageID=3291248&#3291248
    and in 2 messages, 1 works, 1 doesn't at
    http://discussions.apple.com/thread.jspa?messageID=2809633&
    15" Alu PB 1.25GHZ G4 FW800, 1GB RAM, 100GB 7200RPM HDD, 80GB 5400RPM EXT FW HDD   Mac OS X (10.4.7)  

  • Working with Cyrillic Data

    Hi, We have a requirement where I have to work with Cyrillic data i.e. Russian data. I have to parse data based on specific fields.  I tried using match function but looks like it is having problem dealing with Cyrillic Russian data.  When I try to find an english word in a string then it works finebut when I try to find an Cyrillic character i.e. ул. or г. then I match function would not find this expression in the CYrillic string.
    i.e. match_pattern('Арбат ул.','Арбат ул\.') gives me 0
    Any idea how I can use BODS on function on Cyrillic data.
    Thanks,

    Should have not used escape character for dot. placing just dot works finein decode.

  • Missing ID Tags & Other Problems with Music Transfers

    Hello,
    I have been having some inconsistent problems with adding songs to my main iTunes Music Folder. Occasionally, songs will transfer without some of the ID tag information, despite the transfer (or consolidate) method used. Let me explain...
    My main 30000 song and 170 GB iTunes database is located on my PowerMac G5 1.8 GHz DP at home. I usually rip small portions of my CD’s on the road via my PowerBook G4 1.5 GHz (assuring that all of the tag information is correct). Once home, I transfer the iTunes Music Folder (usually only 1 GB big) from my PowerBook to the Desktop of my G5. From there, I drag the folder onto my iTunes window and allow it to duplicate directly into my large iTunes Music Folder. Once done, I delete the temporary iTunes Music Folder from both the PowerBook and the G5. I also delete the iTunes Library and iTunes Music Library.xml files from my PowerBook before starting up the process with another batch of CD’s. This is how I have built most of this database and only recently begun to have problems. The problem songs always retain the song name and, since I have always used the default ID tag setting, most songs show version 2.2 to 2.4.
    In my troubleshooting, I tried to make completely new iTunes Library and iTunes Music Library.xml files by using this same method with my entire main iTunes Music Folder (yes, it took a long time to finish and I had a clone for backup). Suprisingly, almost 10% of those songs suffered from the same problem! Reattempts with smaller transfers showed no change. In this process, I also noted that some song files transferred, but showed NO signs in the new iTunes Library!
    As I am a big fan of the iTunes AppleScripts by Doug Adams, I have ways to discover and correct these problems. However, I still would like to find out what is causing it. Does any of this sound familiar to anyone? Would converting every song to the ID tag version 2.4 make any difference? Obviously, this is my most prized database of information and I want to protect it, as well as administer any preventitive maintenance that it needs for good health.
    If we learn from our mistakes, then I obtained my PhD years ago,
    Dr. Z.

    It shouldn't matter what size your library is - if the information is in your files then it should get imported.
    1. Are you sure your problematic mp3 files are in fact valid mp3 files? If you open Terminal.app, and type this (substituting your mp3):
    hexdump -C -n 30 ~/Desktop/Sample.mp3
    You should see some hex & ASCII come back - for example:
    00000000 49 44 33 03 00 00 00 03 13 68 54 59 45 52 00 00 |ID3......hTYER..|
    00000010 00 15 00 00 01 fe ff ff ff 00 7f 00 7f 00 |..............|
    All id3v2 mp3's begin with "ID3" and the 4th byte represents the id3v2 tag version (2,2, 2.2.1, 2.3, 2.4); mp3's with an id3v1 headers are a little odd, but they generally begin with "FF FB" or "FF FA". I've seen moov files masquerading... all kinds of things. These won't hold tag data, and so would exhibit the behavior you describe. I myself got duped into making these abominations by using QuickTime to select a chunk of an mp3 and renaming to "file.mp3" - when it was a full blown quicktime movie that it really exported as.
    2. Are you sure the information exists within your file at all? All tags get written back into the file (except I think rating and certainly playcount). You can use any number of utilities to get at the data, some easy (python/perl utilities) or that require compiling (id3lib, taglib). You can get use the above method (with a longer number than 30) or a hex editor and look for the values manually as well.
    Using for example PyID3 (http://icepick.info/projects_old/pyid3/), download & extract; open a Terminal.app window and type:
    export PYTHONPATH=/Some/path/to/YOUR/PyID3_folder
    (or you can just type up the the = and drag-n-drop the folder onto the window & hit return. Then type:
    python -c 'import id3'
    Then in the examples folder, drag-n-drop the "listid3v2.py" script onto that same terminal window/session, and then an mp3 file (and hit return). If whatever information is missing from there, it isn't in your file. Note: PyID3 might have some issues with a v2.4 tag (specifically year is carried on the TDRC tag, and TYER is obsoleted). You can get an v2.4-enabled id3lib binary here:
    http://members.verizon.net/pucklock/id3Infiltr8/IDInfiltr8.htm
    Find "id3info" in the support folder, and drag-n-drop that binary onto a Terminal.app window, followed by your mp3 file. It should spit back all your info (except Grouping). The application itself should do much the same, just not the full breadth of tags available - just use it on copies.
    3. Converting to a different tag version wouldn't impact most tags (year being 1 major exception) - the other conversions (latin1, unicode, blahblah) woudn't change anything if you use mainly ASCII text. It could if you're big into Ukranian Progressive Polka - and used Cyrillic to tag everything.

  • Am I the only person who has problem with video playback ?

    I'm having problems with the latest nvidia driver and it seems that nobody wrote about it on the forums.. After installing the latest nvidia driver (169.07-1), the video playback with xv selected will be played in purple and blue colours.. Generally red will not be shown.. So human faces are colored with a combination of purple and blue.. Everything is normal on the other hand.. Sound works perfectly, the movie can be watched smoothly even on fullscreen.. With x11, all players can show the colors but...
    1) The movie quality in Totem is very bad then...like the image is gathered together by 3x3 pixels..
    2) mplayer shows everything fine but it can't get fullscreen..
    I created a nautilus script for a workaround that let's me watch the movies with fullscreen using the -fs -zoom options..
    But this problem is really annoying..

    1.0rc2, with some things disabled that are enabled in the Arch package (lirc, samba, and that live-media thing).
    $ pacman -Qs mplayer
    local/mplayer-custom 1.0rc2-1
    xvinfo:
    X-Video Extension version 2.2
    screen #0
    Adaptor #0: "NV17 Video Texture"
    number of ports: 32
    port base: 355
    operations supported: PutImage
    supported visuals:
    depth 24, visualID 0x21
    depth 24, visualID 0x24
    depth 24, visualID 0x25
    depth 24, visualID 0x26
    depth 24, visualID 0x27
    depth 24, visualID 0x28
    depth 24, visualID 0x29
    depth 24, visualID 0x2a
    depth 24, visualID 0x2b
    depth 24, visualID 0x2c
    depth 24, visualID 0x2d
    depth 24, visualID 0x2e
    depth 24, visualID 0x2f
    depth 24, visualID 0x30
    depth 24, visualID 0x31
    depth 24, visualID 0x32
    depth 24, visualID 0x33
    depth 24, visualID 0x34
    depth 24, visualID 0x35
    depth 24, visualID 0x36
    depth 24, visualID 0x37
    depth 24, visualID 0x38
    depth 24, visualID 0x39
    depth 24, visualID 0x3a
    depth 24, visualID 0x3b
    depth 24, visualID 0x3c
    depth 24, visualID 0x3d
    depth 24, visualID 0x3e
    depth 24, visualID 0x3f
    depth 24, visualID 0x40
    depth 24, visualID 0x41
    depth 24, visualID 0x42
    depth 24, visualID 0x43
    depth 24, visualID 0x44
    depth 24, visualID 0x45
    depth 24, visualID 0x46
    depth 24, visualID 0x47
    depth 24, visualID 0x48
    depth 24, visualID 0x49
    depth 24, visualID 0x4a
    depth 24, visualID 0x22
    depth 24, visualID 0x4b
    depth 24, visualID 0x4c
    depth 24, visualID 0x4d
    depth 24, visualID 0x4e
    depth 24, visualID 0x4f
    depth 24, visualID 0x50
    depth 24, visualID 0x51
    depth 24, visualID 0x52
    depth 24, visualID 0x53
    depth 24, visualID 0x54
    depth 24, visualID 0x55
    depth 24, visualID 0x56
    depth 24, visualID 0x57
    depth 24, visualID 0x58
    depth 24, visualID 0x59
    depth 24, visualID 0x5a
    depth 24, visualID 0x5b
    depth 24, visualID 0x5c
    depth 24, visualID 0x5d
    depth 24, visualID 0x5e
    depth 24, visualID 0x5f
    depth 24, visualID 0x60
    depth 24, visualID 0x61
    depth 24, visualID 0x62
    depth 24, visualID 0x63
    depth 24, visualID 0x64
    depth 24, visualID 0x65
    depth 24, visualID 0x66
    depth 24, visualID 0x67
    depth 24, visualID 0x68
    depth 24, visualID 0x69
    depth 24, visualID 0x6a
    depth 24, visualID 0x6b
    depth 24, visualID 0x6c
    depth 24, visualID 0x6d
    depth 24, visualID 0x6e
    depth 24, visualID 0x6f
    depth 24, visualID 0x70
    depth 24, visualID 0x71
    number of attributes: 3
    "XV_SET_DEFAULTS" (range 0 to 0)
    client settable attribute
    "XV_ITURBT_709" (range 0 to 1)
    client settable attribute
    client gettable attribute (current value is 0)
    "XV_SYNC_TO_VBLANK" (range 0 to 1)
    client settable attribute
    client gettable attribute (current value is 1)
    maximum XvImage size: 2046 x 2046
    Number of image formats: 4
    id: 0x32595559 (YUY2)
    guid: 59555932-0000-0010-8000-00aa00389b71
    bits per pixel: 16
    number of planes: 1
    type: YUV (packed)
    id: 0x32315659 (YV12)
    guid: 59563132-0000-0010-8000-00aa00389b71
    bits per pixel: 12
    number of planes: 3
    type: YUV (planar)
    id: 0x59565955 (UYVY)
    guid: 55595659-0000-0010-8000-00aa00389b71
    bits per pixel: 16
    number of planes: 1
    type: YUV (packed)
    id: 0x30323449 (I420)
    guid: 49343230-0000-0010-8000-00aa00389b71
    bits per pixel: 12
    number of planes: 3
    type: YUV (planar)
    Adaptor #1: "NV05 Video Blitter"
    number of ports: 32
    port base: 387
    operations supported: PutImage
    supported visuals:
    depth 24, visualID 0x21
    depth 24, visualID 0x24
    depth 24, visualID 0x25
    depth 24, visualID 0x26
    depth 24, visualID 0x27
    depth 24, visualID 0x28
    depth 24, visualID 0x29
    depth 24, visualID 0x2a
    depth 24, visualID 0x2b
    depth 24, visualID 0x2c
    depth 24, visualID 0x2d
    depth 24, visualID 0x2e
    depth 24, visualID 0x2f
    depth 24, visualID 0x30
    depth 24, visualID 0x31
    depth 24, visualID 0x32
    depth 24, visualID 0x33
    depth 24, visualID 0x34
    depth 24, visualID 0x35
    depth 24, visualID 0x36
    depth 24, visualID 0x37
    depth 24, visualID 0x38
    depth 24, visualID 0x39
    depth 24, visualID 0x3a
    depth 24, visualID 0x3b
    depth 24, visualID 0x3c
    depth 24, visualID 0x3d
    depth 24, visualID 0x3e
    depth 24, visualID 0x3f
    depth 24, visualID 0x40
    depth 24, visualID 0x41
    depth 24, visualID 0x42
    depth 24, visualID 0x43
    depth 24, visualID 0x44
    depth 24, visualID 0x45
    depth 24, visualID 0x46
    depth 24, visualID 0x47
    depth 24, visualID 0x48
    depth 24, visualID 0x49
    depth 24, visualID 0x4a
    depth 24, visualID 0x22
    depth 24, visualID 0x4b
    depth 24, visualID 0x4c
    depth 24, visualID 0x4d
    depth 24, visualID 0x4e
    depth 24, visualID 0x4f
    depth 24, visualID 0x50
    depth 24, visualID 0x51
    depth 24, visualID 0x52
    depth 24, visualID 0x53
    depth 24, visualID 0x54
    depth 24, visualID 0x55
    depth 24, visualID 0x56
    depth 24, visualID 0x57
    depth 24, visualID 0x58
    depth 24, visualID 0x59
    depth 24, visualID 0x5a
    depth 24, visualID 0x5b
    depth 24, visualID 0x5c
    depth 24, visualID 0x5d
    depth 24, visualID 0x5e
    depth 24, visualID 0x5f
    depth 24, visualID 0x60
    depth 24, visualID 0x61
    depth 24, visualID 0x62
    depth 24, visualID 0x63
    depth 24, visualID 0x64
    depth 24, visualID 0x65
    depth 24, visualID 0x66
    depth 24, visualID 0x67
    depth 24, visualID 0x68
    depth 24, visualID 0x69
    depth 24, visualID 0x6a
    depth 24, visualID 0x6b
    depth 24, visualID 0x6c
    depth 24, visualID 0x6d
    depth 24, visualID 0x6e
    depth 24, visualID 0x6f
    depth 24, visualID 0x70
    depth 24, visualID 0x71
    number of attributes: 2
    "XV_SET_DEFAULTS" (range 0 to 0)
    client settable attribute
    "XV_SYNC_TO_VBLANK" (range 0 to 1)
    client settable attribute
    client gettable attribute (current value is 0)
    maximum XvImage size: 2046 x 2046
    Number of image formats: 5
    id: 0x32595559 (YUY2)
    guid: 59555932-0000-0010-8000-00aa00389b71
    bits per pixel: 16
    number of planes: 1
    type: YUV (packed)
    id: 0x32315659 (YV12)
    guid: 59563132-0000-0010-8000-00aa00389b71
    bits per pixel: 12
    number of planes: 3
    type: YUV (planar)
    id: 0x59565955 (UYVY)
    guid: 55595659-0000-0010-8000-00aa00389b71
    bits per pixel: 16
    number of planes: 1
    type: YUV (packed)
    id: 0x30323449 (I420)
    guid: 49343230-0000-0010-8000-00aa00389b71
    bits per pixel: 12
    number of planes: 3
    type: YUV (planar)
    id: 0x3
    guid: 03000000-0000-0010-8000-00aa00389b71
    bits per pixel: 32
    number of planes: 1
    type: RGB (packed)
    depth: 24
    red, green, blue masks: 0xff0000, 0xff00, 0xff
    xorg.conf:
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # /etc/X11/xorg.conf (xorg X Window System server configuration file)
    # Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
    # (Type "man /etc/X11/xorg.conf" at the shell prompt.)
    #Section "ServerFlags"
    # Option "XkbDisable" "true"
    #EndSection
    Section "ServerLayout"
    Identifier "Default Layout"
    Screen "Default Screen" 0 0
    InputDevice "Generic Keyboard"
    InputDevice "Configured Mouse"
    EndSection
    Section "ServerLayout"
    Identifier "TV Layout"
    Screen 0 "Screen_TV" 0 0
    InputDevice "Generic Keyboard"
    InputDevice "Configured Mouse
    EndSection
    Section "Files"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/cyrillic"
    FontPath "/usr/share/fonts/100dpi/:unscaled"
    FontPath "/usr/share/fonts/75dpi/:unscaled"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/artwiz-fonts"
    FontPath "/usr/share/fonts/TTF"
    EndSection
    Section "Module"
    Load "bitmap"
    Load "dbe"
    Load "ddc"
    #Load "dri"
    #Load "evdev"
    Load "extmod"
    Load "freetype"
    Load "glx"
    Load "int10"
    Load "record"
    Load "type1"
    Load "vbe"
    EndSection
    Section "InputDevice"
    Identifier "Generic Keyboard"
    Driver "kbd"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "logiitc"
    Option "XkbLayout" "se"
    EndSection
    Section "InputDevice"
    Identifier "Configured Mouse"
    Driver "mouse"
    Option "CorePointer"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "ExplorerPS/2"
    EndSection
    Section "Monitor"
    Identifier "Acer AL1923"
    #HorizSync 30.0-69.0
    #VertRefresh 60.0-75.0
    # calc: (x|y)pixels * 25.4 / dpi
    #DisplaySize 336 269 # 96 DPI @ 1280x1024
    Option "DPMS"
    EndSection
    Section "Monitor"
    Identifier "TV"
    HorizSync 30-50
    VertRefresh 60
    EndSection
    Section "Device"
    Driver "vesa"
    Identifier "VESA"
    EndSection
    Section "Device"
    Identifier "nv"
    Driver "nv"
    EndSection
    Section "Device"
    Identifier "NVIDIA GeForce 7600GS"
    Driver "nvidia"
    BusID "PCI:5:0:0"
    Option "NoLogo" "true"
    Option "RenderAccel" "true"
    Option "AddARGBGLXVisuals" "true"
    Option "backingstore" "true"
    EndSection
    Section "Device"
    Identifier "Card_TV"
    Driver "nvidia"
    Option "TVStandard" "PAL-B"
    Option "TVOutFormat" "SVIDEO"
    Option "ConnectedMonitor" "TV"
    EndSection
    Section "Screen"
    Identifier "Default Screen"
    Device "NVIDIA GeForce 7600GS"
    #Device "nv"
    #Device "vesa"
    Monitor "Acer AL1923"
    DefaultDepth 24
    SubSection "Display"
    Depth 1
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 4
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen_TV"
    Device "Card_TV"
    Monitor "TV"
    DefaultDepth 16
    SubSection "Display"
    Depth 16
    Modes "1024x768" "800x600"
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    I should probably also mention that I'm rolling my own kernel, and as such I'm not using the package from testing. Building it manually with the PKGBUILD from ABS though so it shouldn't be any difference though.
    Last edited by [vEX] (2008-01-15 17:15:36)

  • Encoding problem with Application adapter for OEBS

    Hello All!
    We going to pass value via app adapter from EBS Forms to Content Server page. Link to documentation Configuring the Managed Attachments Solution - 11g Release 1 (11.1.1)
    We have done all setting, and this function is working now .
    It is good working with English letters and numbers, but when we try to use Cyrillic we have a problem with Encoding in Content server page.
    Data on Oebs table use ''CL8ISO8859P5'', but service xml for adapter has allays a title with  charset=utf-8
    System are:
    OEBS 12.1.3
    Webcenter Content 11.1.1.6
    Adapter 11.1.1.6 + patch 16463891
    Could you help us?

    Hi Denis ,
    Try this solution :
    1) Log on to the APPS EBS schema and re-create the AXF_SOAPCall function using the following SQL:
    create or replace
    function AXF_SOAPCall (url varchar2, soapmsg varchar2, secure varchar2, walletid varchar2, walletpass varchar2) return varchar2 as
    http_req utl_http.req;
    http_resp utl_http.resp;
    response_env varchar2(32767);
    v_newcharset VARCHAR2(40 BYTE) :='UTF8';
    v_Dbcharset VARCHAR2(40 BYTE);
    v_Raw1 RAW(32767);
    v_Stmt1 VARCHAR2(6000 BYTE);
    begin
    v_newcharset := 'AMERICAN_AMERICA.'|| v_newcharset ;
    v_Dbcharset := 'AMERICAN_AMERICA.'||utl_i18n.map_charset(fnd_profile.value('ICX_CLIENT_IANA_ENCODING'),0,1);
    v_Raw1 := UTL_RAW.CAST_TO_RAW (soapmsg);
    v_Raw1 := UTL_RAW.CONVERT (v_Raw1,v_newcharset,v_Dbcharset);
    if ( secure = 'true' or secure = 'TRUE' ) then
    utl_http.set_wallet (walletid, walletpass);
    end if;
    http_req := utl_http.begin_request(url , 'POST', utl_http.HTTP_VERSION_1_1);
    utl_http.set_header(http_req, 'Content-Type', 'text/xml; charset=utf-8');
    utl_http.set_header(http_req, 'Content-Length', utl_raw.length(v_Raw1));
    utl_http.write_raw(http_req, v_Raw1);
    http_resp := utl_http.get_response(http_req);
    utl_http.read_text(http_resp, response_env);
    dbms_output.put_line('Response: ');
    dbms_output.put_line(response_env);
    utl_http.end_response(http_resp);
    return response_env;
    end;
    2) Log on to the EBS and confirm that you can now open the Managed Attachments window for all records & forms, regardless of the use (& length) of multibyte string values.
    This was caused by multibyte characters used with non UTF-8 language strings .
    I presumed that you are seeing that when "Managed Attachments" option through the ZOOM button from an E-Business Suite (EBS) forms, nothing happens.If you have a support id then check the following note : 1409703.1 from MyOracleSupport portal.
    Hope this helps.
    Thanks,
    Srinath

Maybe you are looking for

  • Get All Values From NewForm.aspx using Event Receiver Item Adding

    HI All,          I have conditions to check before the insertion of "Calendar Event".For this I am using Item Adding Event Receiver ,When Click on Save button I need to get all the values of Items filled in NewForm.aspx and check the condition,If con

  • Photoshop Elements 11 - Error when printing multiple times

    After printing a photograph cannot print another. Error message: "There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened any documents." have to close and reopen the program to

  • Checking the size of the image..

    Hi All, i have attached am image from using attachments functionality from Purchasing module. the image get stored in table fnd_lobs.. Now i want to know the size of the image.. whether it is 30kb or 1MB.. Is there any function in Oracle to calculate

  • E-recruitment Internal error

    Hello, I have configurated all the functional requirement, then i generated the URL for Employee, Ext cand recruiter, Administrator. but when i pasted the URL in IE and executed, it give me error " An internal error occurred. Please try again later."

  • HT4721 how do you make the thesaurus present for three finger tap?

    http://support.apple.com/kb/HT4721 makes reference to thesaurs, apple and wikipedia useage if presnt.  how do yo make presnt.  rightn now only dictionary comes up.