cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP class in workflow Task

Former Member
0 Kudos

Hi Experts ,

Iam creating a custom Workflow, I want to ABAP class instead of BOR .

Created a custom class also and implemented Interface 'IF_WORKFLOW' , activated all methods inside this interface, when trying to create task in workflow with my custom class thorws error like

'Interface implementation IF_WORKFLOW does not exist'

Please help on this .

regards

goudham

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Just implementing the interface is not enough. You need to actually create the methods. The least you need to do is to double-click each method name so an actual implementation of the method is created (not just the definition). I believe you also need to implement the LPOR method passing back the instance ID (could be any value), type ID (which could be the class name), and cat ID (which is CL).

Former Member
0 Kudos

Thanks to Abdullah and lakka,

Issue is resolved.

We need to implement methods : find_by_lpor

                                                 lpor methods.

find by lpor conatins reference object for class

regards

goudham

Answers (1)

Answers (1)

Former Member