A developer needs to create ascheduled job in an external system to move Order data into aSalesforce org every 24 hours. In which two ways can this off-platform job be established without additional third-party tools?
A.
Install a minimal set of dev tools on a machine such as theCommand Line Interface (CLI) and create appropriate scripts to import files containing the data
B.
Set up an SFTP server as a waystation. drop the files there using the off-platform job and schedule a job in-platform to process the file
C.
Create a job inthe org (on-platform) to drop a file of existing data. Use the off-platform machine to generate a file and identify the details between the two. Push the changes to the org's "Import" directory
D.
Authorize a machine against the Salesforce org's APIs withappropriate security measures and create a script to call the APIs
Two ways that this off-platform job can be established without additional third-party tools are:
Install a minimal set of dev tools on a machine such as the Command Line Interface (CLI) and create appropriate scripts to import files containing the data. The CLI is a tool that allows developers to interact with Salesforce from the command line. The developer can use the CLI to create scripts that use commands such as force:data:bulk:upsert or force:data:tree:import to import data from CSV or JSON files into Salesforce.
Authorize a machine against the Salesforce org’s APIs with appropriate security measures and create a script to call the APIs. The APIs are interfaces that allow developers to access data and functionality in Salesforce from external systems. The developer can use the APIs, such as REST API or Bulk API, to create a script that authenticates with Salesforce using OAuth 2.0 or JWT, and then performs operations such asinsert, update, or delete on Order data.
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit