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 .
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.
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