Skip to Content
0
May 28, 2018 at 11:45 AM

CNTL_ERROR exception when using 'submit report '

235 Views Last edit May 28, 2018 at 11:46 AM 2 rev

Hi,

I am trying to use Submit statement as follows..

SUBMIT rkkks1n0
USING SELECTION-SET 'ZSRINADH'
EXPORTING LIST TO MEMORY
AND RETURN.

When i use the submit statement without 'list to memory' it is working fine. But whn i add tht, it showing the following dump.

<b>" A RAISE statement in the program "CL_GUI_CONTROL================CP" raised the

exception

condition "CNTL_ERROR".

METHOD SET_VISIBLE .

  • (visible)

data: temp_visible(1).

temp_visible = cl_gui_control=>visible_true.

case visible.

when '1'.

when 'X'.

when 'x'.

when 'TRUE'.

when others.

temp_visible = cl_gui_control=>visible_false.

endcase.

  • check handle

IF ME->H_CONTROL IS INITIAL.

RAISE CNTL_ERROR.

ENDIF.

I checked this issue in SCN but did not get answer for this issue.

Can any one help me on this issue?

Thank you!!

Srinadh.N