An Architect is asked to build a solution that allows a service to access Salesforce through the API. What is the first thing the Architect should do?
A. Create a new user with SystemAdministrator profile.
B. Authenticate the integration using existing Single Sign-On.
C. Authenticate the integration using existing Network-BasedSecurity.
D. Create a special user solely for the integration purposes.
Northern Trail Outfitters has a registration system that is used for workshopsoffered at its conferences. Attendees use a Salesforce community to register for workshops, but the scheduling system manages workshop availability based on room capacity. It is expected that there will be a big surge of requests for workshop reservationswhen the conference schedule goes live.
Which integration pattern should be used to manage the influx in registrations?
A. Remote Process Invocation-Request and Reply
B. Remote Process Invocation-Fire and Forget
C. Batch Data Synchronization
D. RemoteCall-In
An organization needs to integrate Salesforce with an external system and is considering authentication options. The organization already has implemented SAML, using athird- party Identity Provider for integrations between other systems.
Which use case can leverage the existing SAML integration to connect Salesforce with other internal systems?
A. Make formula fields with HYPERLINK() to external web servers more secure.
B. Make Apex SOAP outbound integrations to external web services more secure.
C. A Make Apex REST outbound integrations to external web services more secure.
D. Make an API inbound integration from an external Java client more secure.
Northern Trail Outfitters (NTO) use Salesforce to track leads, opportunities, and to capture order details. However, Salesforce isn't the system that holds or processes orders. After the order details are captured in Salesforce, an order must be created in the remote system, which manages the orders lifecylce. The Integration Architect for the project is recommending a remote system that will subscribe to the platform event defined in Salesforce.
Which integration pattern should be used for this business use case?
A. Remote Call In
B. Request and Reply
C. Fire and Forget
D. Batch Data Synchronization
An Architect is required to integrate with an External Data Source via a Named Credential with an Apex callout due to technical constraints. How is authentication achieved?
A. Handle authentication with login flows.
B. Handle authentication in the code.
C. Connect via Salesforce Connect.
D. Connect via Communities.
Northern Trail Outfitters (NTO) uses a custom mobile app to interact with their customers.
One of the features of the app are Salesforce Chatter Feeds. NTO wants to automatically post a Chatter item to Twitter whenever the post includes the #thanksNTO hashtag.
Which API should an Integration Architect use to meet this requirement?
A. Connect REST API
B. REST API
C. Streaming API
D. Apex REST
Universal Containers is a global financial company that sells financial products and services including, bank accounts, loans, and insurance. UC uses Salesforce Service cloud to service their customer via calls, live chat. The support agents would open bank accounts on the spot for customers who are inquiring about UC bank accounts.
UC Core banking system is the system of record for bank accounts and all accounts opened in salesforce have to be synced in real-time to the core banking system. Support agents need to inform the customers with the newly created bank account ID which has to be generated from the core banking system.
Which integration pattern is recommended for this use case?
A. Use streaming API to generate push topic.
B. Use outbound message.
C. Use salesforce platform event.
D. Use request and reply.
A large consumer goods manufacturer operating in multiple countries isplanning to implement Salesforce for their Sales and Support operations globally. They have the following security requirements:
1.
Internal users from each country have to be authenticated with their local active directory.
2.
Customers can create their own login or use Google login.
3.
Partners have to be authenticated through a central system which is to be determined.
4.
Internal users will have access to the central ERP with their credentials maintained in the ERP.
5.
Additional internal systemswill be integrated with Salesforce for Sales and Support business processes.
Which three requirements should the integration architect evaluate while designing the integration needs of this project? Choose 3 answers
A. Evaluate Salesforce solution for customers and for partners, using third party solution for internal users.
B. Assess security requirements for internal systems and decide Integration methods that support the requirements.
C. Evaluate the build of a custom authentication mechanism for users in each country and support for customers and partners.
D. Consider Third party Single Sign On solution supporting all user authentication including customer and partner.
E. Evaluate Salesforce native authentication mechanism for all users including customers and partners.
A customer imports data from an external system into Salesforce using Bulk API. These jobs have batch sizes of 2000 and are run in parallel mode. The batc fails frequently with the error "Max CPU timeexceeded". A smaller batch size will fix this error.
Which two options should be considered when using a smaller batch size? Choose 2 answers
A. Smaller batch size may cause record-locking errors.
B. Smaller batch size may increase time required to executebulk jobs.
C. Smaller batch size may exceed the concurrent API request limits.
D. Smaller batch size can trigger "Too many concurrent batches" error.
Northern Trail Outfitters has had an increase in requests from other business units to integrate opportunity information with other systems from Salesforce. The developers have started writing asynchronous @future callouts directly into the target systems. The CIO is concerned about the viability of this approach scaling for future growth and has requested a solution recommendation.
What should be done to mitigate the concerns that the CIO has?
A. Implement an ETL tooland perform nightly batch data loads to reduce network traffic using last modified dates on the opportunity object to extract the right records.
B. Develop a comprehensive catalog of Apex classes to eliminate the need for redundant code and use custom metadata to hold the endpoint information for each integration.
C. Refactor the existing ゝuture methods to use Enhanced External Services, import Open API 2.0 schemas and update flows to use services instead of Apex.
D. Implement an Enterprise Service Bus for service orchestration, mediation, routing and decouple dependencies across systems.