2008 Apr 28 10:50 AM
for the following Source code
LOOP AT MTAB_PROGRAM_TEXTS.
MTAB_PROGRAM_FILE = MTAB_PROGRAM_TEXTS.
APPEND MTAB_PROGRAM_FILE.
ENDLOOP.
an error is coming like
"MTAB_PROGRAM_FILE" and "MTAB_PROGRAM_TEXTS" are not mutually
convertible. In Unicode programs, "MTAB_PROGRAM_FILE" must have the
same structure layout as "MTAB_PROGRAM_TEXTS", independent of the
length of a Unicode character.
Program ZGIRI_17
In "TEXT MODE" the "ENCODING" addition must be specified.
Program ZGIRI_17
In "TEXT MODE" the "ENCODING" addition must be specified.
Program ZGIRI_17
"FTAB_PROGRAM_TEXTS" and "FTAB_PROGRAM_FILE" are not mutually
convertible. In Unicode programs, "FTAB_PROGRAM_TEXTS" must have the
same structure layout as "FTAB_PROGRAM_FILE", independent of the length
of a Unicode character.
can u help me to trace out the error
2008 Apr 28 11:00 AM
hi,
Check if MTAB_PROGRAM_FILE & MTAB_PROGRAM_TEXTS are of same structure. else do this way ...
LOOP AT MTAB_PROGRAM_TEXTS.
move-corresponding MTAB_PROGRAM_TEXTS to MTAB_PROGRAM_FILE.
APPEND MTAB_PROGRAM_FILE.
ENDLOOP. Regards,
santosh
for the following Source code
LOOP AT MTAB_PROGRAM_TEXTS.
MTAB_PROGRAM_FILE = MTAB_PROGRAM_TEXTS.
APPEND MTAB_PROGRAM_FILE.
ENDLOOP.
an error is coming like
"MTAB_PROGRAM_FILE" and "MTAB_PROGRAM_TEXTS" are not mutually
convertible. In Unicode programs, "MTAB_PROGRAM_FILE" must have the
same structure layout as "MTAB_PROGRAM_TEXTS", independent of the
length of a Unicode character.
Program ZGIRI_17
In "TEXT MODE" the "ENCODING" addition must be specified.
Program ZGIRI_17
In "TEXT MODE" the "ENCODING" addition must be specified.
Program ZGIRI_17
"FTAB_PROGRAM_TEXTS" and "FTAB_PROGRAM_FILE" are not mutually
convertible. In Unicode programs, "FTAB_PROGRAM_TEXTS" must have the
same structure layout as "FTAB_PROGRAM_FILE", independent of the length
of a Unicode character.
can u help me to trace out the error
2008 Apr 28 11:00 AM
hi,
Check if MTAB_PROGRAM_FILE & MTAB_PROGRAM_TEXTS are of same structure. else do this way ...
LOOP AT MTAB_PROGRAM_TEXTS.
move-corresponding MTAB_PROGRAM_TEXTS to MTAB_PROGRAM_FILE.
APPEND MTAB_PROGRAM_FILE.
ENDLOOP. Regards,
santosh
2008 Apr 28 11:32 AM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |