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.

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
10,685 questions
JavaScript API
JavaScript API
An Office service that supports add-ins to interact with objects in Office client applications.
982 questions
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.