hi,
i had a unicode problem...............we r upgraded to ecc6.0 and facing a problem with RFC.........and the error message shown by other system was
The types of operands dbtab and itab cannot be converted into one another. Cannot read SAP table 'ZEBAN_VIEW'. Cannot execute query class 'SAP' with query name 'ViewQuotes'. Function 'QUERY_EXEC' did not execute.
and in SAP we got a dump as fallows...........
Short text
The types of operands "dbtab" and "itab" cannot be converted into one another.
What happened?
Error in the ABAP Application Program
The current ABAP program "SAPLBDCH" had to be terminated because it has
come across a statement that unfortunately cannot be executed.
Error analysis
In a Unicode system, the type of the operand "dbtab" must be convertible
into that of the operand "itab" for the statement "SELECT * FROM dbtab INTO
TABLE itab". Regardless of the
length of a Unicode character, both operands must have the same
structure layout.
In this case, this condition has not been met.
How to correct the error
Probably the only way to eliminate the error is to correct the program.
-
If the error occures in a non-modified SAP program, you may be able to
find an interim solution in an SAP Note.
If you have access to SAP Notes, carry out a search with the following
keywords:
"UNICODE_TYPES_NOT_CONVERTIBLE" " "
"SAPLBDCH" or "LBDCHU03"
"TABLE_ENTRIES_GET_VIA_RFC"
If you cannot solve the problem yourself and want to send an error
notification to SAP, include the following information:
1. The description of the current problem (short dump)
To save the description, choose "System->List->Save->Local File
(Unconverted)".
2. Corresponding system log
Information on where terminated
Termination occurred in the ABAP program "SAPLBDCH" - in
"TABLE_ENTRIES_GET_VIA_RFC".
The main program was "SAPMSSY1 ".
In the source code you have the termination point in line 80
of the (Include) program "LBDCHU03".
Source Code Extract
Line SourceCde
50
51 CALL FUNCTION 'NAMETAB_GET'
52 EXPORTING
53 LANGU = LANGU
54 * " ONLY = ' '
55 TABNAME = TABNAME
56 IMPORTING
57 RC = RC
58 TABLES
59 NAMETAB = T_NAMETAB
60 EXCEPTIONS
61 INTERNAL_ERROR = 01
62 TABLE_HAS_NO_FIELDS = 02
63 TABLE_NOT_ACTIV = 03.
64
65 CASE SY-SUBRC.
66 WHEN 01.
67 RAISE INTERNAL_ERROR.
so can u plzz help me out of this.........