Skip to Content
0
Former Member
Jul 17, 2011 at 05:39 AM

ABAP Dump when calling Function Module Starting New Task

2829 Views

Hi all. I have a tricky situation now, I am doing a POC on parallel processing.

I am getting an ABAP dump on the following Call Function line which is in class lcl_steer_114numc (See below for full program):

METHOD start.
    CALL FUNCTION 'Z_ZZCLS_STEER_114NUMC'
      STARTING NEW TASK me->id
      CALLING me->finish ON END OF TASK.
  ENDMETHOD.                    "start

However I get the following ABAP dump:

Short text

Statement "CALL FUNCTION .. DESTINATION/STARTING NEW TASK/IN BACKGROUND TASK"

The function module only contains a wait statement to simulate parallel processing. It is strange that it dumps here, because when I change the FM call to another call that has been triggered successfully from other classes, it still produces the same ABAP dump.

The background of the Proof Of Concept is to see if I can get an event to trigger the next process that depends on the outcome of the previous process. Parallel processes are run in the start methods by calling RFC.

<Garbled code removed>

Moderator Message: Please post relevant portions of the code only.

Edited by: Suhas Saha on Jul 17, 2011 1:17 PM