‎2006 Mar 20 4:54 AM
We have a program to upload data to the presentation server in the xml file format.
It is working fine in foreground.But whenever we are trying to execute it in the background it gives error:
'Error in control framework'.
‎2006 Mar 20 4:59 AM
Prem,
What exactly are you trying to do in the program?
If the program is being executed in the background, you will not be able to do upload the data to presentation server?
regards,
Ravi
‎2006 Mar 20 5:10 AM
Prem,
Looking at the error that you have shown, looks like its a different error. Is there a control/GRID that is being used in the program.
If you are using a CUSTOM CONTAINER and a GRID to display the data, whenever you executing the program, you should not create the container. Something like this ..
if cl_gui_alv_grid=>offline( ) is initial.
create object CUSTOM_CONTAINER
exporting container_name = CUSTOM_CONTROL
endif.
Regards,
Ravi
note : Please reward the helpful posts.
‎2006 Mar 20 5:33 AM