更新された2026年02月テストエンジン練習Integration-Architect日本語問題集と練習試験合格させます [Q64-Q86]

Share

更新された2026年02月テストエンジン練習Integration-Architect日本語問題集と練習試験合格させます

問題集お試しセットIntegration-Architect日本語テストエンジンで問題集トレーニングには127問あります

質問 # 64
Universal Containers (UC) は、グローバルな金融会社です。UC サポート エージェントは、UC 製品について問い合わせている顧客のために、その場で銀行口座を開設したいと考えています。
銀行口座の開設プロセス中に、エージェントは外部機関を通じて顧客の信用調査を実行します。ある時点で、最大 30 の同時再発行がサービスを使用して、顧客の信用調査を実行します。
信用検証プロセスが失敗したときにエージェントにエラーを表示するには、どのようなエラー処理メカニズムを構築する必要がありますか?

  • A. 検証プロセスがダウンした場合にミドルウェアで統合エラーを処理し、ミドルウェアはリクエストの処理を複数回再試行する必要があります。
  • B. 検証プロセスがダウンした場合は、モック サービスを使用してエージェントに応答を送信します。
  • C. Web サービスへの接続に問題があり、エラーが返された場合に備えて、検証 Web サービス API で検証プロセス エラーを処理します。
  • D. 検証プロセスがダウンしている場合は、要求と応答の代わりにファイア アンド フォーゲット メカニズムを使用して、サービスがオンラインになったときにエージェントが応答を取得できるようにします。

正解:C


質問 # 65
Northern Trail Outfitters は、 を使用してカスタム Java アプリケーションを使用して外部システムから Salesforce への夜間のバッチ読み込みを実行することを計画しており、CIO は、テクニカル アーキテクトからのジョブの推奨事項を監視することに関心があります。要件を満たすのに役立つ 2 つの推奨事項はどれですか?
2つの答えを選択してください

  • A. Java アプリケーションで getBatchInfo メソッドを使用して、Java アプリケーションからジョブのステータスを監視します。
  • B. Apex トリガを使用して、Bulk API ステータスからのエラー応答を Salesforce のカスタム エラー ログ オブジェクトに書き込み、オブジェクトに関するレポートを作成します。
  • C. Salesforce デバッグ ログ レベルを「最高」に設定し、設定メニューの「デバッグ ログ」で監視するジョブを実行しているユーザー ID を追加します。
  • D. セットアップ メニューの [Salesforce での一括データ読み込みジョブ] を使用して、Salesforce UI で視覚的に監視します。

正解:A、D

解説:
Visually monitor in the Salesforce UI using the "Bulk Data Load Jobs" in Salesforce in the setup menu, and use the getBatchInfo method in the Java application to monitor the status of the jobs from the Java application. These two methods can help the Technical Architect to monitor the nightly batch loads into Salesforce from an external system with a custom Java application using the Bulk API. The "Bulk Data Load Jobs" page in Salesforce shows the status, progress, and results of each batch load job. The getBatchInfo method in the Java application returns a BatchInfo object that contains information about a batch, such as its ID, state, number of records processed, and number of errors. References: Certification - Integration Architect
- Trailhead, [Bulk API Developer Guide]


質問 # 66
必要な開発労力が最も少ない 2 つのアプローチはどれですか?
2 つの答えを選択してください

  • A. Salesforce REST API を呼び出して、リードをターゲット システムに挿入します。
  • B. Process Builder でツール API を使用して、リアルタイムでリードを挿入します。
  • C. 複合 REST API を使用して、1 回の呼び出しで複数のリードを集約します。
  • D. ソース組織で名前付き認証情報を設定します。

正解:C、D

解説:
The two approaches that will require the least amount of development effort are configuring named credentials in the source org and using the Composite REST API to aggregate multiple leads in a single call.
Named credentials are a type of metadata that store authentication information for accessing external services, such as the target Salesforce org. By using named credentials, you can simplify the code for making callouts and avoid hardcoding credentials or tokens. The Composite REST API is a resource that allows you to execute multiple REST API requests in a single call. You can use the Composite REST API to create, update, or delete up to 25 records in one request. This can reduce the number of API calls and improve performance.
References: [Named Credentials], [Composite Resources]


質問 # 67
グローバルな金融会社は、次のような金融商品とサービスを販売しています。
1. 銀行口座
2. ローン
3. 保険
同社は最先端のコアバンキングシステムを備えており、金融取引、金融商品、顧客情報を保存するマスターシステムです。現在、コア バンキング システムは 1 日あたり 1,000 万件の金融取引を処理しています。同社の CTO は、顧客が銀行口座の詳細を確認し、情報を更新し、口座の金融取引を確認できるように、コミュニティ ポートの構築を検討しています。
統合アーキテクトは、顧客コミュニティのユーザーが金融取引を表示できるようにするためのソリューションとして何を推奨する必要がありますか?

  • A. Salesforce 外部サービスを使用して、コミュニティのライトニング ページに金融取引を表示します。
  • B. Iframe を使用して、コア バンキングの金融取引データを顧客コミュニティに表示します。
  • C. Salesforce Connect を使用して、金融取引を外部オブジェクトとして表示します。
  • D. Salesforce Connect を使用して、金融取引を外部オブジェクトとして表示します。

正解:D

解説:
The integration architect should recommend using Salesforce Connect to display the financial transactions as an external object. SalesforceConnect is a feature that allows you to integrate external data sources with Salesforce and access them in real time via external objects. External objects are similar to custom objects, but they store metadata only and not data. You can use external objects to display data from the core banking system in the customer community without copying or syncing the data. You can also use standard Salesforce features, such as reports, dashboards, or global search, with external objects. Salesforce External Serviceis a feature that allows you to import an external schema definitionand generate an Apex wrapper class that can invoke an external service. This is useful for integrating complex business processes or workflows with Salesforce, but not for displaying datain a community lightning page. Iframe is a HTML element that allows you to embed another web page within a web page. This is not a recommended solution for displaying data in a customer community, as it can pose security risks, performance issues, or userinterface problems.
References: [Salesforce Connect], [Salesforce External Services], [Using Iframes in Lightning Components]


質問 # 68
Universal Containers (UC) は現在、ミドルウェア ツールを所有しており、3 つの API 層を備えた API 主導の統合アーキテクチャを開発しました。第 1 層はシステム オブ エンゲージメントと直接接続し、第 2 層はビジネス ロジックを実装してデータを集計し、第 3 層はシステム オブ レコードと直接接続します。システム オブ エンゲージメントの一部は、モバイル アプリケーション、Web アプリケーション、Salesforce になります。
UC には、さまざまなセキュリティ プロトコルを適用しながら、さまざまな形式でシステム オブ エンゲージメントにデータを返すというビジネス要件があります。
これらの要件を満たすために、統合アーキテクトは何を推奨する必要がありますか?

  • A. API 主導のアーキテクチャの第 1 層で、個別のセキュリティ プロトコルと戻り値の形式を適用します。
  • B. API 主導のアーキテクチャの第 2 層で、個別のセキュリティ プロトコルと戻り値の形式を適用します。
  • C. SAML 経由で API 層と通信する ID プロバイダー ソリューションを活用する
  • D. すべてのシステム オブ エンゲージメントが最初に接続する必要がある API ゲートウェイを実装します。

正解:D

解説:
Theintegration architect should recommend enforcing separate security protocols and return formats at the first tier of the API-led architecture. The first tier is also known as the experience layer, which is responsible for providing a tailored interface for each system of engagement. By enforcing security and format at this layer, the integration architect can ensure that each system of engagement can access the data in a secure and consistent way, without affecting the other layers.
References: [API-ledConnectivity]


質問 # 69
複数の国で事業を展開する大手消費財メーカーが、グローバルな販売およびサポート業務のために Salesforce を実装することを計画しています。これらには、次のセキュリティ要件があります。
1. 各国の内部ユーザーは、ローカルの Active Directory で認証される必要があります。
2. 顧客は独自のログインを作成するか、Google ログインを使用できます。
3. パートナーは、決定される中央システムを通じて認証される必要があります。
4. 内部ユーザーは、ERP で保持されている資格情報を使用して中央 ERP にアクセスできます。
5. 追加の内部システムは、Salesforce for Sales and Support ビジネス プロセスと統合されます。
このプロジェクトの統合ニーズを設計する際に、統合アーキテクトが評価する必要がある 3 つの要件はどれですか?
3つの答えを選択してください

  • A. 顧客とパートナーを含むすべてのユーザー認証をサポートするサード パーティのシングル サインオン ソリューションを検討してください。
  • B. 各国のユーザー向けのカスタム認証メカニズムの構築と、顧客およびパートナー向けのサポートを評価します。
  • C. 社内システムのセキュリティ要件を評価し、要件をサポートする統合方法を決定します。
  • D. 顧客とパートナーを含むすべてのユーザーの Salesforce ネイティブ認証メカニズムを評価します。
  • E. 内部ユーザー向けのサードパーティ ソリューションを使用して、顧客およびパートナー向けの Salesforce ソリューションを評価します。

正解:B、C、D

解説:
Therequirements that the integration architect should evaluate while designing the integration needs of this project are:
Assess security requirements for internal systems and decide Integration methods that support the requirements.
Evaluate the build of acustom authentication mechanism for users in each country and support for customers and partners.
Evaluate Salesforce native authentication mechanism for all users including customers and partners.
The integration architect should assess the security requirements for internal systems, such as the ERP system and other systems that will be integrated with Salesforce for Sales and Support business processes. The security requirements may include authentication protocols, encryption standards, data access policies, and compliance regulations. The integration architect should then decide on the integration methods that support these requirements, such as SOAP or REST APIs, middleware solutions, or connectors. The integration architect should also evaluate the build of a custom authentication mechanism for users in each country and support for customers and partners. A custom authentication mechanism may be necessary to integrate with the local active directory of each country and provide a seamless user experience. The integration architect should also consider how to support customers and partners who have different authentication options, such as self-registration or Google login. The integration architect should also evaluate Salesforce native authentication mechanism for all users including customers and partners. Salesforce native authentication mechanism is a built-in feature that allows users to log in to Salesforce with their username and password.
Salesforce native authentication mechanism may be simpler and easier to implement than a custom or third- party solution, but it may not meet all the security requirements or user preferences. The integration architect should compare the pros and cons of each option and choose the best one for the project. Evaluating Salesforce solution for customers and for partners, using third party solution for internal users is not a valid requirement because it does not address the need to authenticate internal users with their local active directory. Considering third party Single Sign On solution supporting all user authentication including customer and partner is not a valid requirement because it does not address the need to integrate with internal systems and their security requirements.


質問 # 70
ビジネスでは、電話販売代理店に配信されるすべての着信通話について、電話番号タイプの分類 (携帯電話と固定電話) のチェックと更新を自動化する必要があります。次の条件が存在します。
1. ピーク時には、コール センターは 1 日あたり最大 100,000 件の電話を受けることができます。
2. 電話番号種別分類は、外部サービスAPIが提供するサービスです。
3. ビジネスは、記録をチェックおよび更新するタイミングと頻度に柔軟に対応します (一晩中または 6 ~ 12 時間ごとで十分です)。
リモート コールイン パターンおよび/またはバッチ同期 (ETL 経由のレプリケーション: システム -> Salesforce) は、カスタム プレミスでホストされているミドルウェアと連携するように決定されています。
これらのパターンとメカニズムを実装するために、統合アーキテクトはどのコンポーネントを推奨する必要がありますか?

  • A. 公開されている内部 API とリソースを保護するために、ファイアウォールとリバース プロキシが必要です。
  • B. ミドルウェアを認証するように Salesforce で構成された ConnectedApp。
  • C. Salesforce からミドルウェア (ETL/ESB) へのリクエストを認証する API ゲートウェイ。
  • D. Salesforce で IoConfigure リモート サイト設定を行い、ミドルウェアを認証します。

正解:B


質問 # 71
Universal Containers (UC) は、広告バナーを販売する大手印刷会社です。同社は、バナーの初期デザインのコンセプトについてサードパーティのエージェントと協力しています。設計ファイルはオンプレミスのファイル ストアに保存され、UC 内部ユーザーおよびサード パーティ機関がアクセスできます。UC は、設計ファイルに関してサード パーティ機関と協力し、コミュニティで設計ファイルを表示できるようにしたいと考えています。
コンセプト デザイン ファイルのサイズは 2.5 GB です。
統合アーキテクトが推奨するソリューションはどれですか?

  • A. Salesforce Files を使用して、ファイルを Salesforce レコードにリンクし、レコードとファイルをコミュニティに表示します。
  • B. ファイルの場所の URL を保存するカスタム オブジェクトを作成します。コミュニティ ユーザーがファイルの URL をクリックすると、ユーザーはオンプレミス システムのファイルの場所にリダイレクトされます。
  • C. Request and Reply 統合パターンを使用して Lightning コンポーネントを作成し、コミュニティ ユーザーが設計ファイルをダウンロードできるようにします。
  • D. 外部データ ソースを定義し、Salesforce Connect を使用してファイルを外部オブジェクトにアップロードします。間接参照を使用して外部オブジェクトをリンクします。

正解:B

解説:
The best solution for this scenario is to use a custom object to store the file location URL and redirect the community user to the on-premise file store when they click on the URL.This way, the community user can access the large design files without having to download them or use any external data source. Option A is not feasible because the Request and Reply integration pattern is not suitable for large files and would cause performance issues. Option B is not correct because Salesforce Connect cannot upload files to an external object, only data. Option D is not possible because Salesforce Files has a limit of 2 GB per file, and the design files are 2.5 GB in size. References:
Salesforce Connect Developer Guide
Salesforce Files Developer Guide


質問 # 72
Northern Trail Outfitters (NTO) の Salesforce 組織は通常、1 日に 8,000 ~ 10,000 のバッチを処理して、外部ソースからのデータを同期します。NTO の Integration Architec は、90M レコードを組織にロードする必要がある新しいカスタム オブジェクト FooBarc の要件を受け取りました。完了したら、20GB (約 30M レコード) を外部監査システムに抽出する必要があります。
これらの要件を 1 日で満たすために、アーキテクトは何を使用することを推奨する必要がありますか?

  • A. Bulk API 1.0 を使用して挿入し、REST API を使用してクエリを実行します。
  • B. Bulk API 1.0 を使用して挿入およびクエリを実行します。
  • C. Bulk API 2.0 を使用して挿入およびクエリを実行します。
  • D. Bulk API 2.0 を使用して挿入し、REST API を使用してクエリを実行します。

正解:C


質問 # 73
Northern Trail Outfitters は、Salesforce からオンプレミス サーバーへのアウトバウンド統合のパフォーマンスとセキュリティを改善しようとしています。
アーキテクトはソリューションを推奨する前に何を考慮する必要がありますか?

  • A. 使用中の外部ゲートウェイ製品
  • B. Shield Platform Encryption の制限事項
  • C. A デフォルトゲートウェイの制限
  • D. 確定的暗号化の使用に関する考慮事項

正解:A

解説:
Explanation
Option A is correct because external gateway products in use can affect the performance and security of outbound integrations from Salesforce to on-premise servers. External gateway products are software or hardware devices that act as intermediaries between Salesforce and the on-premise servers, such as firewalls, proxies, load balancers, or VPNs. They can have different configurations, features, and limitations that can impact the speed, reliability, and security of the data transmission. For example, some external gateway products may require authentication, encryption, or compression of the data, which can add overhead and latency to the integration. Some external gateway products may also have bandwidth or throughput limits, which can affect the scalability and availability of the integration.
Therefore, the architect should consider the external gateway products in use before recommending a solution.
Option B is incorrect because a default gateway restriction is not a factor that can affect the performance and security of outbound integrations from Salesforce to on-premise servers. A default gateway restriction is a feature that allows administrators to restrict outbound requests from Salesforce to a specific IP address or domain name. This can help prevent unauthorized or malicious requests from Salesforce to external systems. However, this feature does not affect the performance or security of the outbound requests themselves, as it only acts as a filter for the destination of the requests.
Option C is incorrect because considerations for using deterministic encryption are not relevant for outbound integrations from Salesforce to on-premise servers. Deterministic encryption is a type of encryption that produces the same ciphertext for the same plaintext input. This can help preserve some functionality and performance of encrypted data in Salesforce, such as filtering, sorting, and indexing.
However, deterministic encryption is not applicable for outbound integrations from Salesforce to on-premise servers, as it is only supported for custom fields and not for standard fields or attachments.
Moreover, deterministic encryption does not affect the security of the data transmission itself, as it only encrypts the data at rest in Salesforce.
Option D is incorrect because Shield Platform Encryption limitations are not relevant for outbound integrations from Salesforce to on-premise servers. Shield Platform Encryption is a feature that allows administrators to encrypt sensitive data at rest in Salesforce using AES 256-bit encryption. This can help protect data from unauthorized access or theft. However, Shield Platform Encryption limitations are not relevant for outbound integrations from Salesforce to on-premise servers, as they only affect the functionality and performance of encrypted data in Salesforce, such as searching, reporting, or validation rules. Shield Platform Encryption does not affect the security of the data transmission itself, as it only encrypts the data at rest in Salesforce.
References: Salesforce Integration Patterns and Practices : Salesforce Integration Guide : Restrict Outbound Requests with a Default Gateway : Deterministic Encryption : Shield Platform Encryption Considerations :
Shield Platform Encryption : Shield Platform Encryption Architecture


質問 # 74
ある企業が、Salesforce からフルフィルメント システムに注文を送信することを計画しています。統合アーキテクトは、統合を計画するよう依頼されています。
統合アーキテクトが考慮すべき 2 つの質問はどれですか?
2つの答えを選択してください

  • A. フルフィルメント システムは Salesforce にコールバックできますか?
  • B. フルフィルメント システムは、Order Create サービス内で新しい住所を作成できますか?
  • C. 製品カタログ データは、両方のシステムで常に同じですか?
  • D. フルフィルメント システムは、コントラクト ファーストのアウトバウンド メッセージング インターフェイスを実装できますか?

正解:A、D

解説:
https://www.youtube.com/watch?v=zQncznMLrt4 Contract first interface is important as it can impact integration design in terms of efficiency and collaboration.


質問 # 75
規制の厳しい業界で事業を展開している大企業顧客は、販売とサービスの両方の顧客対応担当者とバックオフィススタッフのために Salesforce を導入することを計画しています。Salesforce がサポートするビジネスプロセスはビジネスにとって重要です。
Salesforce は複数のバックオフィス システムに統合され、従業員に単一のインターフェイスを提供します。
従業員が顧客をサポートするには、これらの統合の信頼性と監視が必要です。
アーキテクトは実装を計画する際にどの統合ソリューションを考慮する必要がありますか?

  • A. すべてのバックオフィス システム統合にミドルウェアを活用し、リアルタイムのアラート、監視、レポート機能を確保します。
  • B. バックオフィス システム コールアウトを、エラー ログと監視のフレームワークが組み込まれた個別のサービスに分離します。
  • C. Salesforce からのコールアウトをサポートし、信頼性、監視、レポート機能を構築するバックオフィス システムのサービスを設計します。
  • D. カスタム統合ゲートウェイを構築してバックオフィス システム統合をサポートし、信頼性と監視機能を確保します。

正解:A

解説:
Leveraging Middleware for all back-office system integrations ensuring real time alerting, monitoring and reporting capabilities is the best integration solution for this scenario.Middleware is a software layer that acts as an intermediary between Salesforce and other systems, providing a common platform for data transformation, routing, orchestration, security, error handling, logging, and monitoring. Middleware can help to ensurereliability and performance of the integrations, as well as provide visibility and control over the integration processes. Middleware can also support various integration patterns and protocols, such as SOAP, REST, JMS, etc. Reference: Salesforce Integration Architecture Designer Resource Guide, page 14


質問 # 76
企業は、Salesforce から企業ファイアウォールの背後にある自社開発システムにデータを送信できる必要があります。データは一方向にのみプッシュする必要があり、リアルタイムで送信する必要はありません。平均ボリュームは 1 日あたり 200 万レコードです。
外部システムと Salesforce 間の統合を構築する際に適切なオプションを選択する際に、統合アーキテクトは何を考慮する必要がありますか?

  • A. 大量のレコードがあるため、外部システムは BULK API Rest エンドポイントを使用して Salesforce に接続する必要があります。
  • B. 大量のレコードが原因で、同時要求の数が外部システムへの REST API 呼び出しの制限に達する可能性があります。
  • C. 大量のレコードがあるため、Salesforce は外部システムに対して REST API 呼び出しを行う必要があります。
  • D. 記録が大量にあるため、記録をプラットフォーム外にステージングするには、サードパーティの統合ツールが必要です。

正解:D

解説:
Explanation
Using a third party integration tool to stage records off platform is a solution that can handle the high volume of data and avoid hitting the API limits for the REST API call to the external system. A third party integration tool can also provide features such as data transformation, error handling, and logging. Due to high volume of records, number of concurrent requests can hit the limit for the REST API call to external system is not a solution, but a problem that needs to be addressed. Due to high volume of records, the external system will need to use a BULK API Rest endpoint to connect to Salesforce is not a solution, as the requirement is to send data from Salesforce to the external system, not vice versa. Due to high volume of records, Salesforce will need to make a REST API call to external system is not a solution, as it does not address how to handle the high volume of data and avoid hitting the API limits. Reference: Salesforce Integration Architecture Designer Resource Guide, page 18-19


質問 # 77
アーキテクトは、Northern Trail Outfitters 企業ポータルへのすべての統合で SSL 相互認証を確実に使用するために何を推奨する必要がありますか?

  • A. 自己署名証明書を生成します。
  • B. SSL/TLS 相互認証を強制します。
  • C. 私のドメインと SSL/TLS を有効にします。
  • D. CA 署名付き証明書を生成します。

正解:B

解説:
https://help.salesforce.com/articleView?id=security_keys_uploading_mutual_auth_cert.htm&type=5


質問 # 78
Northern Trail Outfitters は、Salesforce から REST API へのコールアウトの品質を改善したいと考えています。この目的のために、すべての API クライアント/コンシューマーが、すべての API 要求および応答ペイロードのフィールド レベルの定義を含む RESTAPI マークアップ言語 (RAML) 仕様に準拠する必要があります。RAML 仕様は、Apex REST API クライアントが依存できるインターフェイス コントラクトとして機能します。
Apex REST API クライアントの単体テストで RAML 仕様への準拠を確認するために、統合アーキテクトが統合アーキテクチャに含める必要がある 2 つの設計仕様はどれですか?
2つの答えを選択してください

  • A. HttpCalloutMock を実装して、RAML 仕様に従って応答を返します。
  • B. テスト コンテキストで Apex REST API クライアントを呼び出して、モック応答を取得します。
  • C. Apex REST API クライアントで HttpCalloutMock を実装する必要があります。
  • D. Apex REST API クライアントから HttpCalloutMock 実装を呼び出します。

正解:A、B

解説:
Explanation
The HttpCalloutMock interface allows testing HTTP callouts by returning a predefined response in a test context.
By implementing HttpCalloutMock to return responses per RAML specification, the Apex REST API Clients unit tests can confirm that the API requests and responses match the expected format and values.
Calling the Apex REST API Clients in a test context to get the mock response is also necessary to verify the adherence to the RAML specs. Calling the HttpCalloutMock implementation from the Apex REST API Clients or requiring the Apex REST API Clients to implement the HttpCalloutMock are not valid options because the HttpCalloutMock interface is implemented by a separate class that is passed as a parameter to the Test.setMock method2 References: 1: Idempotent REST APIs 2: Testing HTTP Callouts by Implementing the HttpCalloutMock Interface


質問 # 79
規制の厳しい業界の企業では、レガシー システムのデータを Salesforce ユーザー インターフェイス (UI) に表示する必要があります。彼らは、クラウドベースの ETL (抽出、変換、読み込み) ツールに精通しています。オンプレミス ミドルウェア上に構築された API をクラウドおよびオンプレミス アプリケーションに公開します。
現在の状態に関する 2 つの発見により、Salesforce でレガシー データのコピーが許可されるのはどれですか?
2つの答えを選択してください

  • A. レガシー システムは、オンプレミス統合にキューを使用できます。
  • B. オンプレミス ミドルウェアは、レガシ システム データに API を提供します。
  • C. オンプレミス システムのみがレガシー システムへのアクセスを許可されます。
  • D. クラウドベースの ETL は Salesforce にアクセスでき、キューをサポートします。

正解:B、D

解説:
Option B is a correct finding, because it means that the company can use their cloud-based ETL tools to extract data from the legacy systems via the APIs exposed by the on-premise middleware, transform the data as needed, and load the data into Salesforce using queues. Queues are a way of managing asynchronous operations, such as bulk data loading, by placing them in a queue and executingthem when resources are available1.
Option C is also a correct finding, because it meansthat the company can expose their legacy data to the cloud via their on-premise middleware APIs. APIs are a way of enabling communication and data exchange between different systems using standard protocols and formats2. By providing APIs to access their legacy data, the company can use any cloud-based tool or application that can consume those APIs toretrieve and manipulate the data.
Option A is not a correct finding, because it means that the company cannot access their legacy data from the cloud, which prevents them from using their cloud-based ETL tools or any other cloud-based integration solution. If only on-premise systems are allowed to access the legacy systems, then the company would need to use an on-premise integration tool or application to copy the data to Salesforce.
Option D is not a correct finding, because it does not affect the ability to copy legacy data in Salesforce.
Queues are useful for on-premise integration, but they are not necessary for copying data to Salesforce. The company can use other methods, such as direct API calls or batch processes, to load data into Salesforce without using queues.
References: 1: Queueable Apex | Apex Developer Guide | Salesforce Developers 2: API Basics | SOAP API Developer Guide| Salesforce Developers


質問 # 80
次のシステム ランドスケープを持つ大企業のお客様は、Salesforce Sales Cloud の実装を計画しています。

次のビジネス プロセスは、Salesforce でサポートする必要があります。
1. セールス コンサルタントは、現在の在庫にアクセスできる必要があります。
2. エンタープライズ リソース プランニング システム (ERP) は、価格情報の記録システムです。
3. 見積もりは、ERP からの価格設定を使用して Salesforce で生成する必要があります。
4. 販売管理は、エンタープライズ ビジネス インテリジェンス (BI) ツールを使用して販売ダッシュボードを表示します。
5. マスター データ管理 (MDM) は、顧客と見込み客の記録システムです。
6. Salesforce で請求書にアクセスできる必要があります。
ビジネス要件をサポートするために統合コンサルタントが Salesforce との統合を検討する必要があるのは、ランドスケープ内のどのシステムですか?

  • A. ERP、MDM、BI ツール、データ ウェアハウス
  • B. ERP、請求書システム、データ ウェアハウス、BI ツール
  • C. ERP、在庫、価格設定エンジン、請求書システム
  • D. ERP、MDM、データ ウェアハウス、請求書システム

正解:C


質問 # 81
会社は支払い要求を 24 時間 365 日受け付けています。支払い要求を受け入れると、サービス レベル アグリーメント (SLA) により、各支払い要求が支払いシステムによって処理されることを確認する必要があります。データ入力ポイントで作成されたグローバルに一意の識別子を使用して、支払い要求を追跡します。それらの単純化されたフローは、図に示されているとおりです。
2 つ以上のプロセスが同じ支払い請求レコードを同時に更新しようとすると、断続的な更新エラーが発生します。
SLA を改善し、競合処理を更新するために、統合アーキテクトが行うべき推奨事項はどれですか?
2つの答えを選択してください

  • A. ミドルウェアはリクエストの配信と支払い処理を調整する必要があります。
  • B. データ エントリ ポイントとミドルウェアは、要求を自動的に再試行する必要があります。
  • C. 支払いシステムとミドルウェアは自動的にリクエストを再試行する必要があります。
  • D. 支払いシステムは、支払い要求を 1 回だけ処理する必要があります。

正解:A、D

解説:
Explanation
Middleware should coordinate request delivery and payment processing, and Payment System should process a payment request only once. This solution ensures that each payment request is delivered to the Payment System in a reliable and consistent manner, and avoids duplicate or conflicting updates to the same Payment Request record. Middleware can act as a mediator between the Data Entry Point and the Payment System, and implement logic to handle errors, retries, and acknowledgments. Payment System can use the globally unique identifier to check if a payment request has already been processed, and avoid processing it again.
References: Certification - Integration Architect - Trailhead, [Integration Patterns and Practices]


質問 # 82
Salesforce Community Cloud が自己登録と SSO をサポートする必要がある 2 つの要件はどれですか?
2つの答えを選択してください

  • A. OpenId Connect 認証プロバイダーと登録ハンドラー
  • B. SAML SSO および登録ハンドラー
  • C. SAML SSO とジャストインタイム プロビジョニング
  • D. OpenId Connect 認証プロバイダーとジャストインタイム プロビジョニング

正解:A、C


質問 # 83
Northern Trail Outfitters は、ビジネス要件を満たすために、Shield Platform Encryption を使用して社会保障番号を暗号化する必要があります。
Shield Platform Encryption を実装する前に統合アーキテクトが行うべき考慮事項を 2 つ選択してください。
2つの答えを選択してください

  • A. 最新のキーを使用してデータを暗号化します。
  • B. シールド プラットフォームの暗号化構成を確認します。
  • C. 安全のためにすべてのデータを暗号化します。
  • D. Shield Platform Encryption をユーザー認証または承認ツールとして使用します。

正解:B、C

解説:
Explanation
The considerations that an Integration Architect should do prior to the implementation of Shield Platform Encryption are:
Review shield platform encryption configurations.
Encrypt all the data so that it is secure.
Shield Platform Encryption is a feature that allows you to encrypt sensitive data at rest in Salesforce, such as social security numbers, without compromising critical platform functionality. Before implementing Shield Platform Encryption, you should review the shield platform encryption configurations, such as the encryption key management, the encryption policy, and the encrypted fields and files. You should also encrypt all the data that is subject to encryption, not just the data using the most current key. Encrypting all the data ensures that your data is secure and compliant with your business requirements. Encrypting the data using the most current key is not a valid consideration because Shield Platform Encryption uses a deterministic encryption scheme that does not allow you to rotate or re-encrypt your data with a new key. Using Shield Platform Encryption as a user authentication or authorization tool is not a valid consideration because Shield Platform Encryption is not designed for that purpose. Shield Platform Encryption only encrypts data at rest, not in transit or in use.


質問 # 84
Northern Trail Outfitters (NTO) は、Sales Cloud を活用して、見込み客、アカウント、連絡先、商談を追跡および管理しています。注文と注文のフルフィルメントは、バックオフィスの注文管理システム (OMS) によって処理されます。オポチュニティのステータスが「Closed/Won」に変更され、製品が添付されている場合、フルフィルメント操作のために詳細を OMS に渡す必要があります。
Salesforce から OMS へのコールアウトは同期する必要があります。
これらの要件を満たすために、統合アーキテクトは何をすべきですか?

  • A. ボタンがクリックされたときに注文管理システムへの同期 Apex REST コールアウトを作成する Lightning コンポーネントを構築します。
  • B. クローズされた商談を集計し、1 時間ごとに注文管理システムへの REST コールアウトを行うバッチ Apex ジョブを開発します。
  • C. Process Builder を使用して Apex プロキシ クラスを呼び出し、注文管理システムへの REST コールアウトを作成します。
  • D. Apex プロキシ クラスを呼び出して注文管理システムへの REST コールアウトを行うトリガを記述します。

正解:C


質問 # 85
アーキテクトは、Salesforce を会社の外部システムと統合するために Platform Events を使用することにしました。
このタイプの統合メカニズムを提案する際にアーキテクトが考慮すべき 3 つのことはどれですか?
3つの答えを選択してください

  • A. 外部システムは、Salesforce プラットフォーム イベントに遅れずについていくために、同じアップタイムを持つ必要があります。
  • B. イベントを公開するには、Salesforce の統合ユーザーがイベント エンティティに対する作成権限を必要とします。
  • C. イベントをサブスクライブするには、salesforce の統合ユーザーがイベント エンティティへの読み取りアクセス権を持っている必要があります。
  • D. どのイベントを送信するかを知るために、Salesforce は外部システムに関する情報を保存できる必要があります。
  • E. イベントはさらに処理するためにリモート システムに効果的に渡されるため、リモート サービスによってエラー処理を実行する必要があります。

正解:B、C、E

解説:
Explanation
Platform Events are a type of event-driven architecture that allows you to publish and subscribe to events in Salesforce and external systems. To subscribe to an event, the integration user in Salesforce needs read access to the event entity, which defines the schema and properties of the event message. To publish an event, the integration user in Salesforce needs create permission on the event entity, which is a special type of sObject that can be inserted into the platform event queue. Error handling must be performed by the remote service because the event is effectively handed off to the remote system for further processing. Salesforce does not guarantee the delivery or acknowledgment of the event by the external system. The external system should implement its own logic to handle errors, such as retrying failed events, logging errors, or sending notifications. References: Certification - Integration Architect - Trailhead, [Platform Events Developer Guide]


質問 # 86
......

Salesforce Integration-Architect日本語問題集カバー率リアル試験問題:https://jp.fast2test.com/Integration-Architect-JPN-premium-file.html


弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어