|
|
各位大神,新建公司代码时,出现错误,帮忙看看
Category ABAP programming error
Runtime Errors OBJECTS_OBJREF_NOT_ASSIGNED
Except. CX_SY_REF_IS_INITIAL
ABAP Program CL_EIM_IMHANA_SQL_CALLS=======CP
Application Component BC-EIM-DQM
Error analysis
An exception has occurred which is explained in more detail below. Th
exception is assigned to class 'CX_SY_REF_IS_INITIAL' and was not cau
procedure
"CREATE_TEMP_TABLE" "(METHOD)", nor was it propagated by a RAISING cl
Since the caller of the procedure could not have anticipated this
exception, the current program was terminated.
The reason for the exception is:
You are trying to access a component with a 'ZERO' object reference
(points to 'nothing'). Variable: "IM_CON".
An object reference must point to an object (an instance of a class)
before it can be used to access a component. The reference has either
never been set, or it was set to 'ZERO' with a CLEAR statement. |
|