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

short dump

Former Member
0 Likes
979

While calling an rfc in the export parameter i have defined a parameter WORKLIST type UWLITEMLIST (table type) which is having line type UWLITEM (underline structure) which is having around 20 fields. When i run this Function module for a alrge data set it gives me short dump CX_SY_EXPORT_BUFFER_NO_MEMORY. any idea how can i rectify this short dump.

I think the internal table worklist which is being created has exceeded its size limit (i don't know if my assumtion is correct or not). please suggest what needs to be doen

Use meaningful subject and Give the error details

Edited by: Vijay Babu Dudla on Feb 4, 2009 11:45 PM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
667

Hi Vishal,

The runtime error message which you get leading your program to short-dump can be caught.

CX_SY_EXPORT_BUFFER_NO_MEMORY

Cause: During export to the application buffer, data cluster is larger than the entire buffer.

Runtime Error: EXPORT_BUFFER_NO_MEMORY (catchable) .

For this issue, see Basis Consultant.

Or to avoid your program getting into short-dump.

TRY.

*--


YOUR ABAP-CODE-----

-


-


*

CATCH CX_SY_EXPORT_BUFFER_NO_MEMORY.

MESSAGE 'Data cluster is larger than the entire buffer' type 'E'.

ENDTRY.

Hope, this would help resolve your problem.

Thanks,

Zahack

While calling an rfc in the export parameter i have defined a parameter WORKLIST type UWLITEMLIST (table type) which is having line type UWLITEM (underline structure) which is having around 20 fields. When i run this Function module for a alrge data set it gives me short dump CX_SY_EXPORT_BUFFER_NO_MEMORY. any idea how can i rectify this short dump.

I think the internal table worklist which is being created has exceeded its size limit (i don't know if my assumtion is correct or not). please suggest what needs to be doen

Use meaningful subject and Give the error details

Edited by: Vijay Babu Dudla on Feb 4, 2009 11:45 PM

3 REPLIES 3
Read only

Former Member
0 Likes
667

Hi Vishal,

we have the options like

1) you can ask the BASIS people to increse the space.(enlarge buffer for example)

2) check for the SAP notes on that

3) Might you have to create the SAP notes , coz this is the standard error message, which was not cought correctly.

hope it helps you.

Regards!

Read only

Former Member
0 Likes
668

Hi Vishal,

The runtime error message which you get leading your program to short-dump can be caught.

CX_SY_EXPORT_BUFFER_NO_MEMORY

Cause: During export to the application buffer, data cluster is larger than the entire buffer.

Runtime Error: EXPORT_BUFFER_NO_MEMORY (catchable) .

For this issue, see Basis Consultant.

Or to avoid your program getting into short-dump.

TRY.

*--


YOUR ABAP-CODE-----

-


-


*

CATCH CX_SY_EXPORT_BUFFER_NO_MEMORY.

MESSAGE 'Data cluster is larger than the entire buffer' type 'E'.

ENDTRY.

Hope, this would help resolve your problem.

Thanks,

Zahack

Read only

Former Member
0 Likes
667

thanks