Use of apex.server.process in async mode

How to use apex.server.process in async mode? I saw this first time in Vincent’s blog. This is References from Vincent Morneau Blog apex.server.process namespace works in async mode, meaning whenever you hit the process it never waits to complete. Let’s take below example.... Read more

How to Use Server Process in async Mode?

 apex.server.process namespace works in async mode, meaning whenever you hit the process it never waits to complete. Let’s take below example. AJAX process name : GET_EMP_DATADescription: This process bring data from ORDS REST API. function get_data(p_url, p_pegination) { return apex.server.process('GET_EMP_DATA', {... Read more