23-09-21 01:07 PM
Hi.
I am trying to get all deferred items into a report. I tried using "Get pending items", but this does not get the items that are pending due to being deferred, only the new items that have not yet run.
The closest I get is this:
Which gets me all deferred items that were loaded into the queue on todays date, but not the ones from yesterday.
The process checks if a customer has blocked his/her credit card, and if not the item is deferred to the next day to be checked again, then if still not blocked waits for three days before checking a final time. I get the deferred intems into the report the first day the card is checked, but not the next two times.
Any ideas how to solve this?
23-09-21 02:05 PM
AddDays(Today(), -3)
as the input value for Loaded Start Date and Now()
for Loaded End Date, as a way to say 'get items loaded during this period'?24-09-21 09:58 AM
24-09-21 10:25 AM
24-09-21 11:17 AM
24-09-21 02:51 PM
26-09-21 11:21 AM