Adobe Related Exams
AD0-E330 Exam
A developer needs to insert a JavaScript activity that will be used to query the temp table in a workflow. How should the developer verify the name of the temporary schema to be used in JavaScript?
Review the code below and mark the correct option:
javascript
Copy code
var query = NLWS.xtkQueryDef.create({
queryDef: {
schema: 'nms:recipient',
operation: 'select',
lineCount: '5',
select: { node: [
{expr: '@firstName'},
{expr: '@lastName'},
{expr: '@email'}
]}
}
}).ExecuteQuery().getElements();
What would be the correct code to retrieve the email for each record?
A client requires downloading a CSV file from an AWS S3 bucket on a scheduled basis and processing the contents to update a custom schema in the Adobe Campaign Classic instance. Which component should be used to implement the AWS S3 connection?