cancel
Showing results for 
Search instead for 
Did you mean: 

Error : UNICODE_TYPES_NOT_CONVERTIBLE.

0 Kudos

Dear Friends,

DTP for DSO got failed.

This is the error snapshot:

I welcome your valuable suggestions to proceed.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello Rajesh,

Please implement note if relevant for you:

1965151  - DSO 0PM_DS02 UNICODE_TYPES_NOT_CONVERTIBLE

Best regards,

Andras

Answers (3)

Answers (3)

0 Kudos

Thanks Andras!.

Raj

Loed
Active Contributor
0 Kudos

Hi Rajesh,

You may close this thread if this is already solved..

Just click the CORRECT ANSWER and/or HELPFUL ANSWER..

Regards,

Loed

Former Member
0 Kudos

Hello Rajesh,

Note has solved your issue? If yes, please indicate with correct answer for the future.

Thank you and best regards, András

rajdeep_singh
Participant
0 Kudos

Hi Rajesh,

Please try looking for Sap note to resolve this issue with in SAP Support Page. Are you trying to run this for first time or recently you are getting this error.

Kindly revert with the details.

Thanks & Regards,

RDS

0 Kudos

Hi RDS,

I am getting this error recently but being used for long time.

Raj

Loed
Active Contributor
0 Kudos

Hi RDS,

If this is already working before, please ask your teammates if they changed something on the code..If they didn't change anything, please ask your BASIS team for help..

Regards,

Loed

Loed
Active Contributor
0 Kudos

Hi Rajesh,

Where did you encounter this? Please share the code which causes the error..

Regards,

Loed

0 Kudos

Hi Loed,

Thanks.

PFG details.

SELECT * FROM (lv_lkp)
INTO TABLE IT_TEMP1
FOR ALL ENTRIES IN IT_TEMP
*** introduction of LOGSYS BR8142
WHERE LOGSYS = IT_TEMP-LOGSYS AND
/B05/S_B2LGHUIN
= IT_TEMP-/B05/S_B2LGHULL .

IF SY-SUBRC = 0.
SORT IT_TEMP1 BY  /B05/S_B2LGHUIN.
ENDIF.

LOOP AT IT_TEMP INTO WA_TEMP.
WA_TEMP
-/B05/S_B2LGHUAF = 'X'.
APPEND WA_TEMP TO SOURCE_PACKAGE.
READ TABLE IT_TEMP1 INTO WA_TEMP1 WITH KEY
*** introduction of LOGSYS BR8142
LOGSYS
= WA_TEMP-LOGSYS
/B05/S_B2LGHUIN
= WA_TEMP-/B05/S_B2LGHULL.
IF SY-SUBRC = 0.

WA_TEMP1
-/B05/S_B2LGHUZH = WA_TEMP-/B05/S_B2LGHUHL.
*          MOVE-CORRESPONDING  WA_TEMP1 TO <SOURCE_FIELDS1>.
ASSIGN WA_TEMP1 to  <SOURCE_FIELDS1>.
APPEND <SOURCE_FIELDS1> TO SOURCE_PACKAGE.
CLEAR: WA_TEMP1,WA_TEMP,<SOURCE_FIELDS1>.

ENDIF.

ENDLOOP.
ENDIF.


Regards,

Raj