Error: Could not specify the access range automatically. This means that you need a RANGE addition.

Cause: Loops with “VARY” or “VARYING” can cause problems in Unicode environ-ment because, on the one hand, you cannot be sure that you are accessing memory con-tents with the correct type and on the other hand, memory could be inadvertently over-written. DO … VARYING f FROM f1 NEXT f2 [RANGE f3]. WHILE … VARY f … Read more

Error : WG_CRLF must be a character-like data object (data type C, N, D, T,or STRING) String

Error : WG_CRLF must be a character-like data object (data type C, N, D, T,or STRING) STRING). Cause: Here WG_CRLF may be a variable or an internal table which contains variables which are of type X. Type X is used to represent hexadecimal values. Each Hexadeci-mal value can hold two characters (8 bits). These Hexadecimal … Read more

Some of the Common Errors in UCCHECK and their resolution

Case – 1: Error : Upload/Ws_Upload and Download/Ws_Download are obsolete, since they are not Unicode-enabled; use the class cl_gui_frontend_services Cause : From Version ECC6.0 (Unicode complaint environment), the Function Mod-ules UPLOAD / WS_UPLOAD / DOWNLOAD / WS_DOWNLOAD has become obso-lete. In replacement of these Function Modules, we have GUI_UPLOAD / GUI_DOWNLOAD. Solution: All the UPLOAD … Read more

Common Error During SAP Upgrade-Error3

Error: In the Unicode context, TRANSLATE… CODEPAGE/NUMBER FORMAT is not allowed. Cause: In the TRANSLATE statements, the additions FROM CODEPAGE and FROM NUMBER FORMAT are not allowed in a Unicode program. New conversion classes provided to replace these statements. Amongst other things, these classes are a (possible) replacement for the language elements TRANSLATE … CODEPAGE … Read more

Common Error During SAP Upgrade

Error : “SSFCOMPOP” must be a flat structure. You cannot use internal tables, strings, references, or structures as components. . Example : *PARAMETERS: PRINTER LIKE SSFCOMPOP-TDDEST. “DEFAULT ‘BX14’. Here SSFCOMPOP is a flat structure .So we have to declare variable PRINTER of type Data element of field TDDEST which is ‘RSPOPNAME’. PARAMETERS: PRINTER type RSPOPNAME. … Read more