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

ale

Former Member
0 Likes
473

hai,

is it possible to debugg ale? is possible how?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
454

Yes Possible ,Use RSNAST00 Program to debug ur function module..

Reward Points if it is useful

Thanks

Seshu

3 REPLIES 3
Read only

Former Member
0 Likes
455

Yes Possible ,Use RSNAST00 Program to debug ur function module..

Reward Points if it is useful

Thanks

Seshu

Read only

Former Member
0 Likes
454

Hi

Any application which uses transactions for ALE/EDI/IDOC/WF etc have a background program written which extecutes on the excution of tcode.

So debugging is always possible for these programs depending on the step or Tcode.

Reward points if useful

Regards

Anji

Read only

Clemenss
Active Contributor
0 Likes
454

Hi sheik,

like any other background processes: A little tricky, but possible:

If any customer object (Z or Y) is involved, add this to code:

data: x type flag value 'X'.
while x is not initial.
endwhile.

Then star the process and go to sm50 process overview. You can see your process. From here, switch to debugger. After clearing the X field, you can step through and see what's going on.

If no customer objects are involved, in most cases it's not necessary to debug, but you may find a user exit where to place the above code.

Regards, Clemens