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 Dump Error : DP_ERROR_GET_DATA

srinivasa_maruvada
Active Contributor
4,091

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

4 REPLIES 4
Read only

jaideepsharma
Active Contributor
0 Likes
2,512

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,

Read only

0 Likes
2,512

Hi

My SAP version is 4.5.

Note 909387 is applicable for 5 and 6 versions.

Any further idea and/or suggestion

Srinivas

Read only

rainer_hbenthal
Active Contributor
0 Likes
2,512

If it is a standard SAP program, search oss note, if you cant find any, open a service call.

Read only

santosh_07390
Discoverer
0 Likes
2,512

srinivasa.maruvada What is the solution to this exception.