Conversion between AL32UTF8 and EE8ISO8859P2

Hi,
we have two databases: one with characterset AL32UTF8 and another one with EE8ISO8859P2. Is it possible to replicate data(online) from one DB to another and vice versa with data conversion but without data losing? Data-replication works through triggers and database links. Unfortunetly, I got wrong characters on both sides. For example instead of 'é'(in the UTF8 DB) I got '??'(in the EE8ISO8859P2 DB.) So I lost data. Could someone help me? Is there any solution or there is no solution at all?
Thanks,
Csaba Lenkey

EE8ISO8859P2 supports only central and Eastern European data. Any data going from EE8ISO8859P2 to AL32UTF8 should convert properly if you have set up parameter correctly like NLS_LANG, etc. However data going from AL32UTF8 to EE8ISO8859P2 may not convert properly as there are many code points in AL32UTF8 that do not have corresponding binary values in EE8ISO8859P2.

Similar Messages

  • Testing conversion between reference and local currency...

    Hi,
    I am working on exchange rate configuration. If we define exchange Ref currency in the table for defining exchange rate type, SAP says that if we are using multiple currencies then we need not feed translation rates between each and every
    currency but just between reference currency and foreign currencies.
    I am using 3 foreign currencies (X1,X2,X3) and one local or reference (BMD) currency.
    I have defined the translation rates between (X1 -> BMD, X2 -> BMD, X3 -> BMD). Now I want to test if translation between X1 and X2 takes place
    correctly or not. How can I test this ? How can I prototype this in afunction module ?
    Regards,
    Rajesh.

    Hi,
    Use the FM:
    <b>READ_EXCHANGE_RATE</b> Retrieve exchange rate on a particular date
    Hope this helps.
    Reward if helpful.
    Regards,
    Sipra

  • GUID Conversion between CHAR22 and CHAR32

    I am invoking RFC function through XI. GUID type is RAW16.
    Result value for GUID is CHAR22. For example: Q9dnXjzNAEoCAAAAChIaKA==.
    I want to get CHAR32 value. And I don't know how to convert.
    Could you help me with this conversion?
    I have used GUID_CONVERT that returns wrong CHAR32 value. CHAR22 for right GUID is GzTdNZpD04e200002X8QAC.

    Hi Ulf,
    The rawtohex function you found must be used on an expression inside a graph information models, or inside CE_CALC on scripts. It will probably solve your issue.
    Regards, Fernando Da Rós

  • RAW Conversion between CS2 and Aperture``

    Has any one done any sort of comparison of RAW conversation out put from CS vrs; Aperture? Recently I've been using CS2 for my port processing work and really have noticed that the CS2 processing seems to be much clearer, better tones, and detail. Lately I don't seem to be able to get a decent print out of Aperture, I've been using it since it first shipped and I know it fairly well, just feels like I'm in some sort of a slump with it.

    If you search this forum for deer.nef you will find a couple of recent threads on that topic.
    I have done my own tests, converting several images using both apps. My conclusion is that both deliver a good conversion. Some images may come out better from on or the other but you will probably get the best result from the one you have the most familiarity with.
    Note: the current RAW converson in Lightroom is not as up to date as the one in the Photoshop CS3 Public Beta. That will change next Monday. Try your own images in both. You may have a personal style that works better withh one or the other.

  • Data conversion for communication between Java and C/C++ program

    The real problem, i guess, is about data type conversion between Java and C programs. For instance, and int is supposed to be 4 bytes in Java, and also in C/C++. But, as far as I know, the size of and int in C depends on the processors architecture, so if it were a 64 bit arch., size of and int, double, etc. in C, would change. The real scenario would be a communication between a 32 bit machine (Java) and a 64 bit machine (C/C++).
    First of all, is this assumption correct?
    If so,
    how is it possible to deal with this problem in Java?
    Is there any way to know 'type length' automatically? or
    would it be necessary to modify the Java program to work with a C program in 32-bit or 64-bit arch?
    thx in advance

    cotton.m wrote:
    Yes you should develop the C part of the protocol first and then build from there.
    See http://forum.java.sun.com/thread.jspa?threadID=5243547 for a previous discussion of this topic.
    I understand what you mean, also the topic you referenced. I will explain the situation a bit more. The protocol is already defined: (16 bits message size, 16 message id, 32 bit time, etc.); it is also defined in C (structures and so on). So it would be easy to write my Java code using the specified protocol in bytes, and C types wouldn't be necessary to be considered. But, let's say that the C code can't be modified, and I thought (and don't know yet if its correct), that size of C types CAN changed depending on architecture. So if size changes for C types (code is specified in short, int, etc, and not in bit format), it all would be a mess, if I don't implement something in my Java code.
    cotton.m wrote:
    I don't believe that 32 or 64 bit enters the equation here at all.Maybe 32 o 64 doesn't mind, but sparc or PC could take a point here. Communication would be between a sun solaris sparc and windows x86 PC. But if type size in C/C++ does not change, I wouldn't really have any problem then...
    The situation is not ideal, I know, but is what I have; and I think I could have problems if I run the C program in other machines; so I would have to try to solve it whithin my Java Program.
    I hope it is clear now what I need.
    thx
    Edited by: MGasa on Jan 16, 2008 1:51 AM

  • Difference between procedure and function

    hi
    please give solution to below discussion:
    Interviewer: What is the difference between Procedure and Function ?
    Myself: Procedure may or may not return a value and can return multiple values and Function must return a value.
    Interviewer : Can function return multiple values ?
    myself: Yes, It can return multiple values.
    Interviewer: Then, there is no need to use procedures any more, according to your previous answer (function can return multiple values) "we can do all the things by using procedures by using functions". Then why there is differentiation between procedure and function ?
    myself : no reply (simply frustated at this question)
    The above is conversation between me and interviewer.
    Please suggest me what would be my reply to above topic.
    In one book i find that using functions we can return multiple values but it is poor programming practice.
    why this is a programming practice ?
    please suggest me solution
    thanks in advance
    prasanth as.

    Another difference is function must return something. There is no such restriction on procedure.In fact, a procedure CANNOT contain an expression in its RETURN statement.
    SQL> create or replace procedure test_return is
      2  begin
      3    return(10) ;
      4  end ;
      5  /
    Warning: Procedure created with compilation errors.
    SQL> show errors
    Errors for PROCEDURE TEST_RETURN:
    LINE/COL ERROR
    3/3      PLS-00372: In a procedure, RETURN statement cannot contain an
             expression
    3/3      PL/SQL: Statement ignored
    SQL>And, a procedure cannot be called as part of a expression (it must be a function).
    SQL> create or replace procedure test_return is
      2  begin
      3    return ;
      4  end ;
      5  /
    Procedure created.
    SQL> variable x number ;
    SQL> exec :x := test_return ;
    BEGIN :x := test_return ; END;
    ERROR at line 1:
    ORA-06550: line 1, column 13:
    PLS-00222: no function with name 'TEST_RETURN' exists in this scope
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    SQL>

  • Font sizes between  Photoshop and Edge - Any Accurate conversion table?

    I have been trying to make sense of the font sizes between  Photoshop and Edge. It seems that the conversion tables I have found do not actually give the right numbers and I am wondering if there is a table from Adobe that would make it easy to have the right size rather than an approximation.
    I prefer to use text in Edge rather than Photoshop for many different reasons one being dynamic text.
    For example a font in Photoshop in a 780 x 475 image is 8pt - In Edge, according to conversion tables it should be 11 px but it is totally wrong. It needs to be closer to 30 px to be about the same.
    So, Adobe Team, any documentation on that?

    By the way, I have to correct the numbers but they still do not make too much sense. The artist gave me a 300 dpi file so of course the px size what wrong. After converting the file to 72 dpi, the font size happens to be 33.33 pt or 40 px which is now way too big in Edge.  It looks like the size my just be the same 33.33 pt would be 33.33 px. Is this correct?

  • Precision loss - conversions between exact values and floating point values

    Hi!
    I read this in your SQL Reference manual, but I don't quite get it.
    Conversions between exact numeric values (TT_TINYINT, TT_SMALLINT, TT_INTEGER, TT_BIGINT, NUMBER) and floating-point values (BINARY_FLOAT, BINARY_DOUBLE) can be inexact because the exact numeric values use decimal precision whereas the floating-point numbers use binary precision.
    Could you please give two examples: one where a TT_TINYINT is converted to a BINARY_DOUBLE and one when a TT_BIGINT is converted into a DOUBLE, both cases give examples on lost precision? This would be very helpful.
    Thanks!
    Sune

    chokpa wrote:
    Public Example (float... values){}
    new Example (1, 1e2, 3.0, 4.754);It accepts it if I just use 1,2,3,4 as the values being passed in, but doesn't like it if I use actual float values.Those are double literals, try
    new Example (1f, 1e2f, 3.0f, 4.754f);

  • Does anyone know what triggers the switch between text and iMessage in the middle of a conversation? Are there any differences in billing between text and iMessage?

    In the middle of a text conversation between another iOS 5.0 iPhone user and myself, the conversation elements switched back and forth several times between Text and iMessage. The phone actually tracked it and put little lines indicating the switch, and my comments changed from green to blue and back again. I can't think of anything I changed in the middle of the conversation. I was outside WiFi range, using the Cell network at the time. Now I tried it again, while i'm on WiFI and the messages are Text (green) again.

    1. Windows 8.1 Enterprise w Update is the best. It allows you for sideloading in corporate environment without additional tools and licenses.
    http://technet.microsoft.com/en-us/windows/jj874388.aspx
    2. N series is for EU (without IE).
    3. Profesional is fine, but you will need some tools to achieve the same functionality that you have in "pack" Enterprise.
    4. VL is volume license, a type of license for multiple computers (to say it simply)
    5. MSDN forum is better alternative for problems like this.
    6. Attached to MSDN are licenses or at least references to web resources. Read license agreements carefully and let your installation and use follow the license.
    Rgds
    Milos

  • Conversion rate between AUD5 and USD not found

    Hi,
    In a classic scenario, I created a shopping card. And created P.O at the back end. And trying to do the Confirmation of goods. I am seeing this error.
    "Conversion rate between AUD5 and USD not found "
    I check the Organization unit Currency its USD only.
    User used under the Orginzation unit who inherited this attribute.
    Any Idea where things wrong.
    Thanks in advance.
    rao

    Hi All,
    I don't want to import or define the exchange rate. I am using US currency only. I use Xk02/xk03. I didn't found any option to check the vendor currency.
    Looks like somewhere I messed up the currency. Any idea
    Thanks!
    Rao

  • Fail to Convert between UTF8 and UCS2: fail UTF Conversion

    I'm using the JReport software, a product which generates java reports based on a jdbc datasource.
    during installation the JReport installation program located Microsoft java VM installed on my PC and I accepted this option to be working JVM for JReport.
    This worked very well. I have installed jdbc driver for Oracle 8.1.5 that worked fine as well on the design time (I have connected to Oracle, I have seen my tables and other information on my DB).
    But when I switched the run-time view (when real data is going to load) then the following exception message appeared :
    "Fail to Convert between UTF8 and UCS2: fail UTF Conversion" .
    if there is anybody who understood my problem any kind of help will be appreceated
    It will be helpfull to receive any suggestions made to this matter.
    Anything relative help will be welcome.
    thanks in advance.

    I had the same problem using Oracle 9i. The problem lied within the Oracle JDBC driver itself! --;
    If you're using JDBC driver from Oracle 9i, stop using it!
    You should download JDBC driver of Oracle 10g from Oracle site and use that driver instead.
    After I changed the driver, I now have no problem of getting Korean characters from the database.
    Hope this would solve your problem too.

  • When using the analog inputs and analog outputs of the PCI-7344, what is the conversion between the voltage entering the card to counts? Similarly, what is the conversion between counts to voltage at the output of the card?

    I am using the PCI-7344 to control my system. The analog inputs are connected to the output of my system while the analog outputs serve as feedback to the system. The system is a servo. I want to know what is the conversion between the voltage read at the input, to card counts, and finally to the voltage output to the system.

    Carole,
    If you are trying to do analog feedback with a servo motor, Chapter 14 of the manual talks about how to set up the torque feedback. Also linked below is a LabVIEW example of analog feedback.
    Chapter 14
    NI-Motion User Manual
    Automatic Analog Feedback with FlexMotion example
    A. Talley
    National Instruments

  • Difference between interface and conversion

    could you give me the difference between interface and conversion

    hi
    <b>Conversion,</b> converting legacy system data into SAP data. Meaning that it is mainly a one shot deal, for example bringing your customer master to SAP from the legacy system, converting the fields used in legacy to the fields and values used in SAP.
    <b>Interface,</b> a program or group of programs that handle the passing of data from one system to another. These programs work together to export the data from one system and import into a target system, maybe these programs run once a day, maybe twice, may every hour throughout the day. It is a good way to keep the data in two or more systems in sync with each other.
    Interface programs are also data extract program. Data is extracted from SAP into a flat file and transferred to other external systems like UNIX, mainframe.
    In data extracts, the file layout is designed and this layout should be in synch with other external systems.
    <b>reward poins for useful ans</b>
    Regards
    Aarti

  • What is the difference between Interface and Conversion?

    Hi friends,
       Can any one teel me What is the difference between Interface and Conversion in detail.
    Rewarded with points
    Thanks & Regards,
    Naren.

    Hi,
       interface can be outbound i.e writing data to
       application server using open dataset,transfer
      or downloading data (gui_download)
       inbound -> reading data from application server using
                  open dataset,read dataset,uploading data
                  using gui_upload.
       conversion:BAtch data communication method
                  where legavy data is uploaded in SAp.
    Regards
    Amole

  • What is the diffrence between ASCII and BIN mode

    Hello All,
    What is the diffrence between ASCII and BIN mode
    Regards,
    Lisa.

    'ASC' :
    ASCII format. The table is transferred as text. The conversion exits are
    carried out. The output format additionally depends on the parameters
    CODEPAGE, TRUNC_TRAILING_BLANKS, and TRUNC_TRAILING_BLANKS_EOL.
    'IBM' :
    ASCII format with IBM codepage conversion (DOS). This format correspond
    to the 'ASC' format when using target codepage 1103. This codepage is
    often used for data exchange by disc.
    'DAT' :
    Column-by-column transfer. With this format, the data is transferred as
    with ASC text. However, no conversion exists are carried out and the
    columns are separated by tab characters. This format creates files that
    can be uploaded again with gui_upload or ws_upload.
    'DBF' :
    The data is downloaded in dBase format. Because in this format the file
    types of the individual columns are included, import problems, for
    example, into Microsoft Excel can be avoided, especially when
    interpreting numeric values.
    'WK1' :
    The data is downloaded in Lotus 1-2-3 format.
    'BIN' :
    Binary format. The data is transferred in binary format. There is no
    formatting and no codepage conversion. The data is interpreted row by
    row and not formatted in columns. Specify the length of the data in
    parameter BIN_FILESIZE. The table should consist of a column of type X,
    because especially in Unicode systems the conversion of structured data
    into binary data leads to errors.

Maybe you are looking for

  • Report for customer open item exclude vat

    Dear Experts, Is there a report in SAP which can extract the customer open items with VAT amount excluded? Thank you

  • Pivot a table

    Hi All, I have this query: select columnA, columnB ,sum (Case when wType='FULL' then YEAR_1 else 0 end) as FULL_1 ,sum (Case when wType='FULL' then YEAR_2 else 0 end) as FULL_2 ,sum (Case when wType='PART' then YEAR_1 else 0 end) as PART_1 ,sum (Case

  • History is not shown

    When I click on show all history it open up in a new window but no history is shown at all it will show my book marks and recent closed windows or tabs history but no whole day or week history. I also have a problem deleting history through Firefox s

  • The yellow bar[others] in iTunes eats up almost 3-4GB of my device. any solution?

    the yellow bar[others] in iTunes eats up almost 3-4GB of my device. almost 30% of my storage is used up. what is the reason behind it?  is there any solution to it? do iMessage me at : [email protected]  . i will me gratefull to anyone who helps Than

  • Can't modify partition options in v10.8.5

    I am trying to update OS 10.8.5 to Mavericks and I'm getting the "this disk does not use the GUID partition scheme...".  Since I already have OS 10.8.5 installed, I assumed the root partition was already using the GUID partition scheme. While the rec