Skip to main content
Member
August 26, 2026
Solved

Rest API Drill Back option to Workday

  • August 26, 2026
  • 1 reply
  • 55 views

Hello All,

We have a workday connected to OS through REST API for data loads. 

Is it possible to setup a Connector rule for Drill Back using REST API? (I am only seeing examples of SQL and see if an example exists some where)

Thank you,

MP

Best answer by Stefano

Yes you can.

This is an extract from the design and reference guide with a SQL example
In line 173 a XFDataTable is created and assigned.


You can get data from anyhwere, convert it to a XFDataTable and assign it in line 173 e.g. 

drillBackInfo.DataTable = New XFDataTable(si,getDrillBackTransactionTable(....),Nothing,100000, args.PageNumber)

1 reply

StefanoAnswer
Member
August 27, 2026

Yes you can.

This is an extract from the design and reference guide with a SQL example
In line 173 a XFDataTable is created and assigned.


You can get data from anyhwere, convert it to a XFDataTable and assign it in line 173 e.g. 

drillBackInfo.DataTable = New XFDataTable(si,getDrillBackTransactionTable(....),Nothing,100000, args.PageNumber)