Application Development 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: 

Deletion of Objects in ABAP Workbench

Former Member
0 Kudos

Hi,

I want do delete an self defined interface in the ABAP Workbench. But for some reason it is not possible to delete this interface, although its not used anywhere. I got the message

Object cannot be edited with Class Builder

Message no. OO612

But where else should I delete the interface if not in the class builder or in the workbench?

Any ideas how to solve this problem?

4 REPLIES 4

Former Member
0 Kudos

Hi,

just keep the cursor on the object and right click on the object and

click delete......

Regards,

V.Balaji

Reward if Usefull...

0 Kudos

That´s exactly what I did. But then the messages "Object can not be edited with Class Builder" is shown.

I can delete all other objects except of this interface.

0 Kudos

did you ever find a solution to this? I'm having the same problem.

Regards,

Dan

former_member207439
Discoverer
0 Kudos

Good day,

I also ran into this issue when trying to deploy some wd objects with SAPlink.

I managed to delete the objects by using the "OO_INTERFACE_DELETE" function module. There is also a function module called "OO_CLASS_DELETE" to delete classes.

In either case you just populate the parameters in the following way:

INTERFACE (or CLASS) = <your class\interface name>

COMMIT = 'X'

FORCE = 'X'

Hope this helps.

Regards,

Shaun