Question
2
Replies
542
Views
Posted: February 20, 2019
Last activity: March 6, 2019
Closed
Solved
Refreshing Data Pages at a repeating fixed time
I'm on 7.3.1. I have node-level data pages to hold information about organizational reporting structures. These are maintained in an external system, and updated nightly at midnight. How can I configure my node-level data page to refresh daily at 12:01 AM?
Hello,
I don't think you can control the refresh strategy of the Node level data page if you observe in the Load Management tab of the Node level data page.
Probably you can try to write an agent and try to flush the node level data page in the activity java code using below java code,
pega.getDeclarativePageUtils().deleteAllInstancesOfDeclarativePage("yourdatapagename");
Then try to reload the node level data page in the activity if you want it to gets loaded at the same time and schedule this agent to run every day at your specific time.
May be this kind of approach might help you to achieve your requirement.
Regards,
Mahesh M