can anyone help me export data from workday to sharepoint via ccds(custom cloud data source) using javascript)

Abhinav Khare 0 Reputation points
2024-03-22T06:05:04.6366667+00:00

In the workday adaptive tool i have to write export data function:

function exportdata(context){

var reader=context.createTableReader();

vsr row=null;

while((row=reader.readerRow())!=null){

ai.log.logInfo(JSON.stringify(row));

}

}

the above code is the predefined code from workday. my data contains two columns ID and value these two colums i want to export.

Microsoft 365 and Office | Development | Office JavaScript API
Microsoft 365 and Office | SharePoint | For business | Windows
0 comments No comments
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.