Application Development 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: 

dump when 'execute and print' in 4.6C environment

Former Member
0 Kudos

Hi

gettting dump when 'Execute and print' in the selection after givind input values.

I have used Reuse*GRID_display function module.I observed that all the programs giving dump using this function module.

any suggestions?

the dump:

>> Short dump has not been completely stored. It is too big.

Exception condition "ERROR" raised.

What happened?

The current ABAP/4 program encountered an unexpected

situation.

What can you do?

Note the actions and input that caused the error.

Inform your SAP system administrator.

You can print out this message by choosing "Print". Transaction ST22

allows you to display and manage termination messages, including keeping

them beyond their normal deletion date.

Error analysis

A RAISE statement in the program "CL_GUI_ALV_GRID_BASE==========CP " raised the

exception

condition "ERROR".

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

If the error occurred in a non-modified SAP program, you may be

able to find a solution in the SAP note system.

If you have access to the note system yourself, use the following

search criteria:

"RAISE_EXCEPTION"

"CL_GUI_ALV_GRID_BASE==========CP " or "CL_GUI_ALV_GRID_BASE==========CM00X "

"SET_AUTO_REDRAW"

or

"CL_GUI_ALV_GRID_BASE==========CP " "ERROR"

or

"ZMM_FORM " "ERROR"

If you cannot solve the problem yourself, please send the

following documents to SAP:

1. A hard copy print describing the problem.

To obtain this, select the "Print" function on the current screen.

-

2. A suitable hardcopy prinout of the system log.

To obtain this, call the system log with Transaction SM21

and select the "Print" function to print out the relevant

part.

3. If the programs are your own programs or modified SAP programs,

supply the source code.

To do this, you can either use the "PRINT" command in the editor or

print the programs using the report RSINCL00.

4. Details regarding the conditions under which the error occurred

or which actions and input led to the error.

1 REPLY 1

Former Member
0 Kudos

Hi,

I think you have to handle the exceptions returned by the REUSE function module.

After the function module, do this..

If sy-subrc <> 0.

<handle this by popping a message>

endif.

Hope this helps