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

How to Debug During Event Linkage( Reciever Function Module )

nishanthbhandar
Contributor
0 Likes
3,839

Hi all,

If anybody knows how to debug a reciever function module in event linkage method then please respond.The scenario is that whenever service order is changed the change event will fire the custom business object which has a supertype BUS2088.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,774

Hi Nishanth,

You can debug event linkage using the transaction SWUE.

Here you can raise an event and specify an object key (using an already created service order).

Just flag the trigger receiver FM synchr. checkbox and your break point will be hit.

Hope that helps.

Cheers,

Brad

4 REPLIES 4
Read only

ramki_maley
Active Contributor
0 Likes
1,774

Hi Nishanth,

Assuming your Changed event is getting fired:

Set a break point in your Reciever Function Module.

Start the change Service Order transaction.

Start the debugger before saving the order, activate Update Debugging and hit F8.

You may have to hit F8 again when the Update Proceesing opens up in the debug tool.

Let me know if it worked.

Cheers,

Ramki Maley.

Read only

0 Likes
1,774

Hi Ramki,

I already tried the procedure that you have advised.But the problem is that the event gets fired after the commit work.So putting a breakpoint and activating the update debugging mode isnt working.Thanks anyway.

Read only

Former Member
0 Likes
1,775

Hi Nishanth,

You can debug event linkage using the transaction SWUE.

Here you can raise an event and specify an object key (using an already created service order).

Just flag the trigger receiver FM synchr. checkbox and your break point will be hit.

Hope that helps.

Cheers,

Brad

Read only

0 Likes
1,774

Thanks Brad...It's working..