2010 Sep 23 8:09 AM
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
2010 Sep 23 8:49 AM
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.
2010 Sep 23 10:04 AM
This looks like a problem with standard SAP code, so your first port of call should be service.sap.com
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |