cancel
Showing results for 
Search instead for 
Did you mean: 

Developing Custom Actions for MII 12.0.4

Former Member
0 Kudos

Hi,

I read about the possibility of developing custom actions for the MII Workbench.

There are some articles that deal with this topic, they all describe a reference class called "ActionReflectionBase" that implements the Interfaces that have to be implemented (IConfigurable, IAction, IMappable and IInvoke).

I develop whit Eclipse and I have already imported the needed JAR Files in my project (LHCommon.rar and Lighthammer.jar). But I am not able to find the ActionReflectionBase class in the package com.sap.xmii.xacute.actions where it should be!

I'm using MII version 12.0.4, please tell me where I can find this class?

As a workaround I implement the interfaces directly:

public class Calculator implements IConfigurable, IAction, IMappable, IInvoke {

...

}

,but it would be more confortable to extend the reference class.

Please help me.

Best Regards,

Robert

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

I have found my problem. I imported the jar files directly into the project and not into the jar library. So Eclipse was not able to find the ActionReflectionBase class. Now everything works!