‎2009 Aug 18 12:44 PM
Hi All,
One of my user is trying to enter data in a transaction and searched for possible values on one field, then he gets following dump.
ABAP run time error :
"Exception condition "DP_ERROR_GET_DATA" raised."
What happened?
The current ABAP/4 program encountered an unexpected
situation.
Error analysis:
A RAISE statement in the program "SAPLCNDP " raised the exception
condition "DP_ERROR_GET_DATA".
Since the exception was not intercepted by a superior program
in the hierarchy, processing was terminated.
Short description of exception condition:
For detailed documentation of the exception condition, use
Transaction SE37 (Function Library). You can take the called
function module from the display of active calls.
How to correct the error:
You may able to find an interim solution to the problem in the
SAP note system. If you have access to the SAP note system yourself,
please use the following search criteria:
"RAISE_EXCEPTION"
"SAPLCNDP " or "LCNDPU11 "
"DP_CONTROL_GET_TABLE"
or
"SAPLCNDP " "DP_ERROR_GET_DATA"
Source code :
ENDIF.
ENDIF.
*CleanUp
IF NOT SELFCREATED IS INITIAL.
CALL FUNCTION 'DP_DESTROY'
CHANGING
H_DP = H_DPLOKAL
EXCEPTIONS
OTHERS = 1.
IF SY-SUBRC NE 0.
ERRORLEVEL = 1.
ENDIF.
ENDIF.
CASE ERRORLEVEL.
WHEN 1.
RAISE DP_ERROR_CREATE.
WHEN 2.
RAISE DP_ERROR_GET_PROPERTY.
WHEN 3.
RAISE DP_ERROR_GET_DATA.
ENDCASE.
ENDFUNCTION.
Please advise to me resolve the issue
Srinivas
‎2009 Aug 18 12:51 PM
Hi,
Try implement note 909387 in your system.
[909387|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=909387]
KR Jaideep,
‎2009 Aug 18 1:11 PM
Hi
My SAP version is 4.5.
Note 909387 is applicable for 5 and 6 versions.
Any further idea and/or suggestion
Srinivas
‎2009 Aug 18 12:52 PM
If it is a standard SAP program, search oss note, if you cant find any, open a service call.
‎2023 Jun 07 9:45 AM