‎2015 Dec 14 9:24 PM
Hi
I am not ABAP expert,
can someone give me example of CALL FUNCTION 'CLMO_CLASS_OBJECT_MAINTAIN'
I am trying to delete class ...
when call this FM it pops up window , wherein i need to enter shift f2 and confirm one more pop up
which I want to avoid...
Thanks and regards
‎2015 Dec 14 9:39 PM
Here is an example to display:
call function 'CLMO_CLASS_OBJECT_MAINTAIN'
exporting
activity = '2' " This is for display
classtype = '100'
classname = 'ZTEST'
skip = 'X'
exceptions
others = 3.
-Chandra
‎2015 Dec 14 9:41 PM
I was looking for activity Delete and skipping further popups...
‎2015 Dec 14 9:58 PM
I don't think it is possible to delete the class using this function module by skipping "Delete confirmation popup".
‎2015 Dec 14 10:06 PM
‎2015 Dec 14 11:05 PM