in activity data page can be used as “Load-DataPage” method or can be referred in step page or can be used in source of property-set method. what is the difference among above methods.
@LokeshPolanki Hi Lokesh,
The Load-DataPage method loads the datapage asynchronously in the background. It can be verified by enabling the “ADP Load” in the tracer settings. Until the datapage is referenced in the work flow, the data page will not be loaded in the clipboard. In Async mode each execution will happen in a separate child requestor. With the use of Connect-wait you can combine all the requestors getting triggered from the same activity and wait for its completion. Load-DataPage uses the PoolID property to group requestors loading data as part of the same activity. Connect-Wait lets processing wait for the stated timeout interval, or until all requestors with the same PoolID have finished loading data.
Whereas calling a data page in the step page is a synchronous call
@SrinidhiM Thank you