2006 Jun 20 2:02 PM
To cancel images from se78, i can simply cancel the record from stxbitmaps or phisically the file is still in the system? I ask this because i must do also a program to cancel from se78.
2006 Jun 20 2:05 PM
Please use the following function module to delete images from SE78. This should remove all traces of the image.
call function 'SAPSCRIPT_DELETE_GRAPHIC_BDS'
exporting
i_object = object
i_name = name
i_id = id
dialog = ' '
exceptions
enqueue_failed = 1
delete_failed = 2
not_found = 3
canceled = 4
others = 5.
Regards,
Rich Heilman
2006 Jun 20 2:05 PM
2006 Jun 20 2:05 PM
Please use the following function module to delete images from SE78. This should remove all traces of the image.
call function 'SAPSCRIPT_DELETE_GRAPHIC_BDS'
exporting
i_object = object
i_name = name
i_id = id
dialog = ' '
exceptions
enqueue_failed = 1
delete_failed = 2
not_found = 3
canceled = 4
others = 5.
Regards,
Rich Heilman
2006 Jun 20 2:10 PM
Thanks, but the FM don`t do the cancel in background because appears a pop-up to confirm cancellation. I must do all in background.
2006 Jun 20 2:12 PM