2009 Feb 05 4:31 AM
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
2009 Feb 05 6:38 AM
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.
*--
-
-
*
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
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.
*--
-
-
*
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
2009 Feb 05 4:38 AM
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!
2009 Feb 05 6:38 AM
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.
*--
-
-
*
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
2009 Feb 11 5:23 AM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |