Application Development 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: 

One question regarding debug RFC Function

Former Member
0 Kudos


Hello, Experts:

  I would like to debug a function module in SAP GTS system which is called by RFC in ECC. But this function has a lot of importing parameter to be maintained. I am wondering if there is any better way to maintain these parameter for debugging this function in GTS than manually maintain them?

thanks

1 ACCEPTED SOLUTION

Phillip_Morgan
Contributor
0 Kudos

Hi,

If the function module is called in existing program, it is certainly filled with all the necessary data.

The solution is to debug and, once inside the function, right-click in the variables section to reveal the following menu:

As you can see there is the possibility to save to test data in SE37.

After that you can test/debug from SE37.

If the only call is remote, maybe you can setup a breakpoint, then do the above. I vaguely remember this being possible.

2 REPLIES 2

Phillip_Morgan
Contributor
0 Kudos

Hi,

If the function module is called in existing program, it is certainly filled with all the necessary data.

The solution is to debug and, once inside the function, right-click in the variables section to reveal the following menu:

As you can see there is the possibility to save to test data in SE37.

After that you can test/debug from SE37.

If the only call is remote, maybe you can setup a breakpoint, then do the above. I vaguely remember this being possible.

0 Kudos

Thanks for your reply, Phillip