Application Development and Automation 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: 
Read only

dump when running report in background

ifat_bar
Participant
0 Likes
2,281

Hi'

I wrote report. when running it online there is no problem.

If I try to run it in background i get DUMP " Exception condition "CNTL_ERROR" raised."

"A RAISE statement in the program "CL_GUI_CUSTOM_CONTAINER=======CP" "

Please advise.

Regards

Yifat bar

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,340

Hi,

Check this thread for a work around for this type of dump.

[].

Regards,

Vik

8 REPLIES 8
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,340

its using screen controls ... cannot be executed in background

Edited by: Keshu Thekkillam on Aug 6, 2009 6:23 PM

Read only

Former Member
0 Likes
1,340

Hi,

By using a container for your ALV grid what I think you're written is a dialog transaction not a report. You will need to use ALV techniques that are part of list processing if you want to run in background as well as forground.

Regards,

Nick

Read only

Former Member
0 Likes
1,340

Hi,

You are making use of objects such as the ALV container.

It cannot be shown in background.

You are bound to get this dump.

Put a check that incase you run in background then do not create the object.

Regards,

Ankur Parab

Read only

Former Member
0 Likes
1,340

Hi,

Any program which contains download and upload frm server or any interaction with GUI Fails in Background.

Regards,

Lakshman.

Read only

Former Member
0 Likes
1,340

Hi ,

Have you created the Custom conatiner object and check if that variable is INITIAL only ..u need to display data.

Thank you.

Regards,

Padmasri.

Read only

Former Member
0 Likes
1,341

Hi,

Check this thread for a work around for this type of dump.

[].

Regards,

Vik

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,340

You report try to create a container in batch, mode, that will not perform. You should check if you are in batch mode (or in batch-input mode) and not create container in this case. The ALV Grid should perform correctly.

Regards,

Raymond

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,340

check the value of sy-batch.

if sy-batch = 4 "then in background.

endif.