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

Asynchronous Method Call:

Former Member
0 Likes
1,455

I have a program that calls a class method to update a table for history purposes. Is it possible to make the class method call be asynchronous (fire and forget). I don't not want it to hinge on whether or not the history record posted. Its not a mission critical process, its more for recording purposes.

Is it possible for asynch calls, and if so, how would you handle that?

Thanks everyone for your input.

Steve

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
828

Hi

You should create own remote enabled function module.

And insert method calling into source code of module .

2 REPLIES 2
Read only

Former Member
0 Likes
829

Hi

You should create own remote enabled function module.

And insert method calling into source code of module .

Read only

Former Member
0 Likes
828

That sounds like the best idea. Thanks for your help.