Application Development and Automation 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: 
Read only

DUMP in program SAPMSSY1 -

Former Member
0 Likes
1,640

Hi Friends ,

I am getting following dump .

CALL_FUNCTION_NOT_FOUND

"Check the last transports to the SAP System.

Is the program "SAPMSSY1" currently being changed?

If an enqueue/dequeue module is involved, is the activation

of the lock object missing in the ABAP/4 Dictionary?"

call 'RfcImport' id 'Type' field type.

if sy-xprog = 'JAVA'.

system-call plugin

id 'JAVA' value 'FORW_JAVA'

id 'RC' value rc.

i m working on this.But didnot get any clue.

please let me know if you can help on this.

regards,

kani

Hi Friends ,

I am getting following dump .

CALL_FUNCTION_NOT_FOUND

"Check the last transports to the SAP System.

Is the program "SAPMSSY1" currently being changed?

If an enqueue/dequeue module is involved, is the activation

of the lock object missing in the ABAP/4 Dictionary?"

call 'RfcImport' id 'Type' field type.

if sy-xprog = 'JAVA'.

system-call plugin

id 'JAVA' value 'FORW_JAVA'

id 'RC' value rc.

i m working on this.But didnot get any clue.

please let me know if you can help on this.

regards,

kani

2 REPLIES 2
Read only

former_member226519
Active Contributor
0 Likes
958

I would try to set a break-point to find more information


form remote_function_call using value(type).
  data rc type i value 0.
  do.
    call 'RfcImport' id 'Type' field type.
    if sy-xprog = 'JAVA'.
      system-call plugin
                  id 'JAVA' value 'FORW_JAVA'
                  id 'RC'   value rc.
*   if there is no rollout on the JAVA side which
*   rolls both, JAVA and ABAP, we return to the
*   C-Stack and reach this point

*   in case there was an rollout, the ABAP-C stack is lost
*   and we jump direkt to this point

*   here we trigger the rollout on this Abap side with
*   the following statement
      system-call plugin
                  id 'JAVA' value 'ROLL_OUT'
                  id 'RC'   value rc.
    else.
      perform (sy-xform) in program (sy-xprog).
      rsyn >scont sysc 00011111 0.
    endif.
  enddo.
endform.

Read only

matt
Active Contributor
0 Likes
958

This looks like a problem with standard SAP code, so your first port of call should be service.sap.com