I am creating my first new flow that will automate our users into S3 and Landmark, but having troubles with getting data back for the initial Landmark query. I'm expecting 2 records; when I pull by one specific member number, I correctly get 1 of the 2 records. However, when I use adjusted hire date (either hard coded or using a variable), I get every record in the system;30 records at a time.
I confirmed the records existed in the database:
1 select employee, adjustedstartdate
2 from employee
3 where trunc(adjustedstartdate) = to_date('15-JUN-2017','DD-MON-YYYY')
EMPLOYEE ADJUSTEDS
---------- ---------
260 15-JUN-17
13950 15-JUN-17
_dataArea="ltmtest" & _module="hr" & _objectName="Employee" & _actionName="Find" & _actionOperator="NONE" & _actionType="MultipleRecordQuery" & _runAsUser="" & _authenticatedUser="" & _pageSize="30" & _relationName="EmpRequestedTimeOffByPlanRel" & _setName="" & _asOfDate="" & _effectiveDate="" & HROrganization="1" & Employee="" & AdjustedStartDate="<!SystemDate>"
The variable <!SystemDate> is initialized to pfDate(todayAGS(),'yyyymmdd') and is correctly being returned in the log as 20170615.
Any advice would be greatly appreciated.
Thanks,
Mindy Stevens