Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP Programm non-unicode value help issue

0 Likes
2,144

Hi,

we have an bw4hana system, and there's a small programm with the following select-options:

SELECT-OPTIONS: so_buser  FOR USR02-BNAME,
                so_class FOR USR02-CLASS,

When the programm is executed, the select-option for so_buser is workin fine - I can open the value help and select some users.

But when I open the value help for so_class, an dump occurs:

Syntax error in program "/1BCF41/USGRP

 Error in the ABAP application program.

 The current ABAP program "SAPLSDSD" had to be terminated because it found a
 statement that could not be executed.
 In include "/1BCF41/USGRP                           ", in line 0 of program
  "/1BCF41/USGRP                           ", the following syntax errors
 have occurred:
 The program "/1BCF41/USGRP" is not Unicode-compatible, according to it
 s program attributes.



 Author and last person to change the include are:
 Author         SAP
 Last changed by "SAP         "


Any proposals how to fix this?

Many thanks!
ben

1 ACCEPTED SOLUTION
Read only

MateuszAdamus
Active Contributor
1,601

Hello bwf

There is a SAP Note #2426121 which addresses this issue: https://launchpad.support.sap.com/#/notes/2426121

From the note:

Cause

The program "/1BCF41/USGRP" is a generated report, which uses the F4-help to select values from the database.
If a unicode conversion is performed, this generated report needs to be deleted. It will be regenerated upon the first access to the related search help again.

If this deletion has been missed, it can be performed after the conversion.

Resolution

The report UMG_F4_CLEANUP can be used for this deletion. On the selection screen of that report please check "delete" and "generated reports". Then execute the report. In case personal values of the F4-help have also not been deleted select also the "personal values".

Please refer to SAP Note 1275149 for more information regarding that report.

Kind regards,
Mateusz

3 REPLIES 3
Read only

FredericGirod
Active Contributor
0 Likes
1,601

Do you have the UCCHECK program in your system ?

https://wiki.scn.sap.com/wiki/pages/viewpage.action?pageId=436340646

Read only

MateuszAdamus
Active Contributor
1,602

Hello bwf

There is a SAP Note #2426121 which addresses this issue: https://launchpad.support.sap.com/#/notes/2426121

From the note:

Cause

The program "/1BCF41/USGRP" is a generated report, which uses the F4-help to select values from the database.
If a unicode conversion is performed, this generated report needs to be deleted. It will be regenerated upon the first access to the related search help again.

If this deletion has been missed, it can be performed after the conversion.

Resolution

The report UMG_F4_CLEANUP can be used for this deletion. On the selection screen of that report please check "delete" and "generated reports". Then execute the report. In case personal values of the F4-help have also not been deleted select also the "personal values".

Please refer to SAP Note 1275149 for more information regarding that report.

Kind regards,
Mateusz

Read only

0 Likes
1,601

Solved, perfect!

Thanks a lot!