Skip to Content
0
Dec 03, 2014 at 10:44 AM

Dump Exception condition "CNTL_ERROR" raised after submit.

776 Views

Hi All,

I am call report program from another program using below statement.

submit XXX WITH SELECTION-TABLE rspar_tab EXPORTING LIST TO MEMORY and return.

Called program has 2 containers. 1 for ALV and another where container is filled using HTML data and shown

CALL METHOD ref_html->load_data

EXPORTING

type = 'text'

subtype = 'html'

IMPORTING

assigned_url = w_url

CHANGING

data_table = html

EXCEPTIONS

dp_invalid_parameter = 1

dp_error_general = 2

cntl_error = 3

OTHERS = 4.

IF sy-subrc EQ 0.

CALL METHOD ref_html->show_url

EXPORTING

url = w_url.

I am getting dump '

A RAISE statement in the program "CL_GUI_CONTROL================CP" raised the exception condition "CNTL_ERROR".

I can't change the called program.

Is there anyway to get data from program.

Thanks