아래와 같은 에러가 발생합니다!
도와주세요~
Runtime Errors OBJECTS_NOT_CHARLIKE
Date and Time 2007.12.12 16:11:54
The current ABAP program "SAPLKKBL" had to be terminated because one of the
statements could not be executed.
This is probably due to an error in the ABAP program.
대응책은 무엇입니까?
Print out the error message (using the "Print" function)
and make a note of the actions and input that caused the
error.
To resolve the problem, contact your SAP system administrator.
You can use transaction ST22 (ABAP Dump Analysis) to view and administer
termination messages, especially those beyond their normal deletion
date.
is especially useful if you want to keep a particular message.
오류분석
In statement
"STRLEN( obj )..."
the argument "obj" can only take a character-type data object.
In this case, the operand "obj" has the non-character type "P".
STRLEN( obj )에서 obj 가 문자 타입만 가능한데 type p가 들어왔다고 설명하고 있네요.