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

RFC function call

Former Member
0 Likes
394
*---  Calling the T-RFC to transfer data to Webmethods.
  CALL FUNCTION 'ZIFO_IPCHECK_REQ' "IN BACKGROUND TASK
    DESTINATION 'WEBMETHODS_INT' "AS SEPARATE UNIT
    TABLES
      output = i_zipchckreq.

  COMMIT WORK.

In debug mode I am not able to go step by step in to the function. When I clicked F5 I am directly going to next statement which is COMMIT WORK. What should I do?

Thanks,

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
341

Hi Somen,

I am not sure whether it is the correct solution.

I had a guess that we need to put a BREAK POINT in the destination system for that function module, then it will have a chance at the point and you can debug.

Thanks,

Vinay

2 REPLIES 2
Read only

Former Member
0 Likes
342

Hi Somen,

I am not sure whether it is the correct solution.

I had a guess that we need to put a BREAK POINT in the destination system for that function module, then it will have a chance at the point and you can debug.

Thanks,

Vinay

Read only

Former Member
0 Likes
341

Hi,

Debugging Remote Function Modules

When testing ABAP-to-ABAP RFC calls, you can use the ABAP debugger to monitor the

execution of the RFC function in the remote system. Static breakpoints, single-stepping, variablewatching

and source display are possible.

With remote calls, the ABAP debugger (including the debugging interface) runs on the local

system. Data values and other run information for the remote function are passed in from the

remote system.

Go through the link for documentation,

http://help.sap.com/saphelp_nw2004s/helpdata/en/22/043093488911d189490000e829fbbd/content.htm

Regards,

Azaz.