cancel
Showing results for 
Search instead for 
Did you mean: 

How to debug Java functions in message

Former Member
0 Kudos

Hi,

I would like to know how I can debug java function code inside message mapping.

In side message mapping  --> Functions tab --> custom function 123.

Above shows place where I have this custom code and trying to find out way to debug or how to see the values coming in inside various parameters declared in this java code.

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

former_member184720
Active Contributor
0 Kudos

you can trace the values inside the UDF.. write below lines of code and display the values inside the fields..

AbstractTrace trace = container.getTrace();

trace.addInfo("input value."+ variable);

http://scn.sap.com/thread/924553

Former Member
0 Kudos

Thanks Hareesh.

Answers (0)