
あなたを合格させるB2B-Commerce-Administrator試験問題集で使おう(更新された121問があります)
B2B-Commerce-Administrator試験問題集でSalesforce練習テスト問題
質問 # 38
What should a developer do to expose a public property in a Lightning web component? 0m 23s
- A. Decorate the field with @api
- B. Decorate the field with @property
- C. Decorate the field with @public
- D. Decorate the field with @track
正解:A
解説:
To expose a public property in a Lightning web component, the developer should decorate the field with @api. The @api decorator marks a public reactive property that can be set by another component that uses this component. The property value is passed from the owner component to the child component3. For example, if a parent component has a property called message, it can pass its value to a child component by using an attribute with the same name in the HTML template:
<c-child message={message}></c-child>
The child component can access this value by declaring a public property with @api:
import { LightningElement, api } from 'lwc'; export default class Child extends LightningElement { @api message; } The other decorators are not used to expose public properties in a Lightning web component. The @property decorator is used to define private reactive properties that are internal to the component4. The @track decorator is used to mark private fields as reactive, so that changes to their values trigger a re-render of the component5. The @public decorator does not exist in Lightning web components. Reference: Public Properties, Private Properties, Reactive Properties
質問 # 39
An admin needs to rebuild the Search Index in the B2B Commerce App. What should the admin do next while on the Store record Page?
- A. Click on Search Reindexing in the Quick Options
- B. Click on Community Settings
- C. Click on the Search tile
- D. Go to Search Reindex in Setup.
正解:C
解説:
According to the Search Reindexing page, search reindexing is a feature that allows you to rebuild the search index for your store or reorder portal. Search reindexing creates or updates the index of products, categories, and attributes that are searchable on your site. To rebuild the search index in the B2B Commerce app, you need to do the following steps:
Navigate to the Store record page in Salesforce.
Click on the Search tile in the Commerce app menu. Therefore, option B is correct.
Click on Rebuild Index in the Search workspace.
Confirm that you want to rebuild the index and wait for the process to complete.
Option A is false because there is no Search Reindex option in Setup, only in the Commerce app menu.
Option C is false because clicking on Community Settings will not allow you to rebuild the search index, only to configure general settings for your community, such as domain name, login options, network settings, etc.
Option D is false because there is no Search Reindexing option in the Quick Options menu, only in the Search workspace. Reference: Search Reindexing, Search Reindexing Overview
質問 # 40
Which three elements are critical prior to metalling the Cloudcraze managed package?
Choose 3 answers
- A. Ensure the user doing the Install has a Role.
- B. Verified Customer Community licenses exist
- C. Ensure that there is a full set of Salesforce B2B Commerce Data.
- D. Ensure the customer has the community cloud license installed.
- E. Created a customer community profile.
正解:A、B、E
解説:
Explanation
According to the Commerce Resources page, before installing the Cloudcraze managed package, you need to verify that customer community licenses exist, ensure that the user doing the install has a role, and create a customer community profile. Therefore, options A, D, and E are critical elements. Option B is false because the community cloud license is not required for B2B Commerce, and option C is false because you do not need a full set of Salesforce B2B Commerce data before installing the package. References: Commerce Resources, Enable Person Accounts for Commerce, Configure Internal Users for Commerce, Create a Customer Community Profile
質問 # 41
A developer needs to make a call to a long running web service which is critical to finalizing their checkout process. Which three items should the developer consider in their implementation?
- A. A new CORS entry may need to be created in Setup
- B. An Apex method returning a Continuation will need to be created
- C. Requests to the service should be brokered to prevent limit exceptions
- D. A new Named Credential may need to be created in Setup
- E. A new Remote Site may need to be created in Setup
正解:A、B、D
解説:
To make a call to a long running web service, a developer should consider the following items in their implementation:
A new CORS entry may need to be created in Setup. CORS stands for Cross-Origin Resource Sharing, and it is a mechanism that allows web browsers to make requests to servers on different origins1. A CORS entry defines a trusted origin for an external web service and allows the browser to access its resources2. If the web service is not on the same origin as the Salesforce org, a CORS entry is required to avoid cross-origin errors3.
A new Named Credential may need to be created in Setup. A Named Credential specifies the URL of an external web service and its authentication settings4. It can also store certificates or secrets for secure communication4. By using a Named Credential, a developer can simplify the callout code and avoid hardcoding sensitive information5.
An Apex method returning a Continuation will need to be created. A Continuation is a class in Apex that allows making long-running requests to external web services without blocking the user interface6. It works by sending the request asynchronously and returning a placeholder response that can be used to resume the processing later6. A Continuation can handle requests that take up to 120 seconds, which is longer than the normal limit of 10 seconds for synchronous callouts7. Reference: Cross-Origin Resource Sharing (CORS), Create a CORS Whitelist Entry, Make Long-Running Callouts with Continuations, Named Credentials, Apex Web Services and Callouts, Continuation Class, Apex Governor Limits
質問 # 42
In which two instances should an Administrator perform a search index? (Select 2 answers)
- A. After making changes to the Product Detail Page layout in Lightning Experience Builder
- B. After making a delta load for the Product Catalog
- C. After adding a new category with a product under it which is ready to be sold
- D. After adding a new custom component to the Product Detail Page
- E. After making changes to shipping calculation settings for Checkout
正解:B、C
質問 # 43
Acne corporation is selling parts through their distributors. Their Distributors purchase products from them and resell those to individual Consumers. which relationship is represented by ACME seling to their distributors?
- A. A2Z
- B. B2B
- C. B2C
- D. D2C
正解:B
質問 # 44
While working on a commerce rollout, a developer needs to update the checkout process so that buyers can purchase with one of the below payment types. --- m Ss
* Credit Card
* Purchase Order
* Contract Now & Pay Later
Additionally, the developer needs to show only Purchase Order and Contract Now & Pay Later if a custom checkbox field on the account is checked.
How should the developer meet these requirements?
- A. Add a new payment gateway through the reference implementation steps so the payment shows up on the checkout payment screen. Configure the different payment options required.
- B. Create a custom Lightning web component that can be used with the standard payment component. Use a publish-subscribe (pub-sub) model to listen to events from the standard component to determine which additional payment options should be shown.
- C. Create a custom Lightning web component for the checkout flow that has all the options available. Within that component, pull data from the account to determine which options to show.
- D. Modify the standard payment component settings in the checkout screen flow and add the new payment method. Use the component visibility feature in screen flows to fulfill the account-based
正解:C
解説:
To update the checkout process with different payment types, the developer should create a custom Lightning web component for the checkout flow that has all the options available. Within that component, the developer can pull data from the account to determine which options to show based on the custom checkbox field. This approach allows the developer to have full control over the payment logic and UI, and avoid using multiple components or events. Reference:
Checkout Flow Component (Aura) for B2B Stores
Lightning Web Components Developer Guide
質問 # 45
A client would like to set up a Priority Pricing Model.
On which object is the Priority field that determines the priority of pricing?
- A. Price Book
- B. Entitlement Policy
- C. Buyer Group
- D. Buyer Group Price Book
正解:D
解説:
The Priority field that determines the priority of pricing is on the Buyer Group Price Book object. The Buyer Group Price Book object is a junction object that links a buyer group to a price book1, 5. It has a Priority field that indicates the order in which price books are applied to a buyer group1, 5. A priority pricing model is a way of assigning different price books to different buyer groups based on their priority level1, . The lower the priority number, the higher the precedence of the price book1, . Reference: Salesforce Accredited B2B Commerce Administrator Exam Guide, Buyer Group Price Book Object, Priority Pricing Model
質問 # 46
What two options are available for a Product Class?
- A. Expansion Product
- B. Basic Product
- C. Variation Parent Product
- D. Variation Product
正解:C、D
解説:
Explanation
Variation Product and Variation Parent Product are two options available for a Product Class. A Product Class is a way to group products that share common attributes, such as color, size, or material. A Variation Product is a product that belongs to a product variation group and has one or more variation attributes that differentiate it from other products in the same group. For example, a shirt that has a specific color and size is a variation product. A Variation Parent Product is a product that acts as a placeholder for a product variation group and has no variation attributes of its own. For example, a shirt that has no specific color or size is a variation parent product. References: Product Classes; Product Variations and Attributes
質問 # 47
What step is required before the administrator can see orders?
- A. Give visible Field-Level Security on the Store Sales field for Orders
- B. Give Visible Field-Level Security on the Sales Store Field for Orders
- C. Give read-only Field Level Security on the Sales Store field for Orders
- D. Give Read-Only Field-Level Security on the Sales Store field for Orders
正解:B
解説:
Explanation
According to the Order Management page, order management is a feature that allows you to view and manage orders that are placed on your store or reorder portal. To see orders in Salesforce, you need to have the appropriate permissions and access settings. One of the steps that is required before the administrator can see orders is to give visible field-level security on the Sales Store field for Orders. Field-level security controls the access level for each field on an object. The Sales Store field on the Order object indicates which store or reorder portal the order belongs to. By giving visible field-level security on this field, you can ensure that the administrator can see which store or reorder portal an order is associated with. Therefore, option C is correct.
Options A, B, and D are false because giving read-only field-level security on the Sales Store field for Orders is not enough to see orders, you also need to give visible field-level security on other fields on the Order object, such as Order Number, Status, Total Amount, etc. Also, there is no Store Sales field on the Order object, so options B and D are invalid. References: Order Management, Order Management Overview
質問 # 48
A developer has created a custom Lightning web component for the Cart page that needs to react to changes to cart items from the standard cart component.
How should the developer implement the custom component so changes to cart items and quantities are reflected?
- A. Listen for events on the lightning_commerce_cartChanged channel with the Lightning Event "Listener component.
- B. Add a listener for the cartltemUpdate Lightning event.
- C. Add an event listener for the cartchanged DOM (Document Object Model) event.
- D. Subscribe to events on the lightning_commerce_cartChanged channel using the Lightning Message Service.
正解:D
解説:
The Lightning Message Service (LMS) is a feature that allows communication across different UI technologies, such as Lightning Web Components, Aura Components, and Visualforce pages. LMS uses message channels to publish and subscribe to messages. A message channel is a custom metadata type that defines the shape and scope of the messages1. The lightning_commerce_cartChanged channel is a standard message channel that is used by the B2B Commerce Cloud platform to notify components of changes to the cart items and quantities2. A developer can use the LMS API to subscribe to events on this channel and update the custom component accordingly. The developer needs to import the lightning/messageService module and the lightning_commerce_cartChanged channel in the JavaScript file of the custom component, and then use the subscribe method to register a callback function that handles the message payload3. For example:
// cartCustomComponent.js import { LightningElement, wire } from 'lwc'; import { subscribe, MessageContext } from 'lightning/messageService'; import CART_CHANGED_CHANNEL from '@salesforce/messageChannel/lightning_commerce_cartChanged__c'; export default class CartCustomComponent extends LightningElement { // Declare a message context @wire(MessageContext) messageContext;
// Declare a subscription variable subscription = null;
// Subscribe to the message channel in the connected callback connectedCallback() { this.subscribeToMessageChannel(); }
// Subscribe to the message channel using the LMS API subscribeToMessageChannel() { if (!this.subscription) { this.subscription = subscribe( this.messageContext, CART_CHANGED_CHANNEL, (message) => this.handleCartChange(message) ); } }
// Handle the message payload and update the component logic handleCartChange(message) { // Do something with the message payload, such as: // - Display the cart items and quantities // - Calculate the cart total // - Apply discounts or taxes // - etc. } }
質問 # 49
In which two ways can Tiered Pricing tables In- input?
Choose 2 answers
- A. SOQL Query
- B. TheCC Product Record
- C. JSON text field
- D. Visualforce component on the Price List Item
正解:C、D
解説:
Explanation
Tiered Pricing tables can be input in two ways:
JSON text field: Tiered Pricing tables can be input as a JSON text field on the Price List Item. This allows you to define complex Tiered Pricing rules with multiple tiers and conditions.
Visualforce component on the Price List Item: You can also use a Visualforce component to input Tiered Pricing tables. This gives you more flexibility in how you define and display your Tiered Pricing rules.
質問 # 50
Which two navigation options are on the Store main page in the B2B Commerce App?
- A. Content Management
- B. Product
- C. Security
- D. Contact Point Addresses
- E. Sales
正解:A、B
解説:
Product and Content Management are two navigation options on the store main page in the B2B Commerce app. The store main page is the landing page for a store or reorder portal in the B2B Commerce app. The navigation options allow admins to access different features and settings for their B2B commerce sites. Product allows admins to manage products, categories, price books, and product variations for their stores. Content Management allows admins to manage content assets, collections, channels, and workspaces for their stores. Reference: [Store Main Page]; [Product]; [Content Management]
質問 # 51
A B2B adminneeds to modify the storefront experience on the Product Detail Page. Where in the III can the admin directly access Experience Builder to make the change?
- A. Experience Settings
- B. All Sites
- C. Digital Experiences
- D. Experience Cloud Configuration
正解:B
解説:
To modify the storefront experience on the Product Detail Page, a B2B admin can directly access Experience Builder from the All Sites option in the UI. Experience Builder is a tool that allows an admin to create and edit the store pages, layouts, and components using drag-and-drop functionality. The All Sites option shows a list of all the sites that an admin can manage, including B2B Commerce sites. Reference: Edit Store Pages in Experience Builder
質問 # 52
From within the Experience Site Administration Workspace, in which two ways can membership with an Experience Site be established?
- A. Buyer Groups
- B. Permission Sets
- C. Permission Set Groups
- D. Profiles
正解:B、C
解説:
Within the Experience Site Administration Workspace, membership with an Experience Site can be established throughB. Permission Set GroupsandD. Permission Sets. These Salesforce features allow administrators to grant users access to Experience Sites by defining and assigning the appropriate permissions and access levels.
質問 # 53
Northern Trail Outfitters (NTO) exports Order Summary data from its org. A developer launches Data Loader, selects Order Summary, clicks the Select All Fields button, and clicks Finish. Custom fields are defined in the Cart and Order Summary objects and successfully mapped from Cart to Order Summary during checkout. However, all three custom fields in the Order Summary are empty in the export file.
What is the most likely cause?
- A. The Cart to Order action does not support the mapping of custom fields.
- B. There was a misspelling in one of the custom fields.
- C. The developer does not have access to the fields.
- D. The developer can export Order Summary records only by using Data Export Service.
正解:C
解説:
One possible reason for the custom fields in the Order Summary to be empty in the export file is that the developer does not have access to the fields. Data Loader respects the sharing and security settings of Salesforce objects and fields. Therefore, if the developer does not have access to view or edit the custom fields in the Cart and Order Summary objects based on their profile or role permissions, the fields will not be included in the export file. The other options are not likely causes because:
A misspelling in one of the custom fields would not affect the mapping from Cart to Order Summary or the export of Order Summary data. It would only affect the display of the field label or API name.
The Cart to Order action does support the mapping of custom fields as long as certain patterns are followed. To be automatically mapped, the custom field needs to exist in the Cart, Order and OrderSummary objects and have the same API name, supported data type and field configuration1.
The developer can export Order Summary records by using Data Loader or Data Export Service. Data Loader is a client application that can export data for one or more standard or custom objects. Data Export Service is a web-based tool that can export data for all objects in an org on a weekly or monthly basis.
質問 # 54
Which two statements are true about Salesforce B2B Commerce Price Lists?
Choose 2 answers
- A. A price list must contain prices for all products in the system.
- B. A price list is specific to a certain currency.
- C. A price list may only be associated with a single user.
- D. A price list may be set to become enabled In the future.
正解:B、D
解説:
Explanation
According to the Price Lists page, price lists are collections of prices for products that can be assigned to accounts or account groups. Price lists have the following characteristics:
A price list is specific to a certain currency. You can create multiple price lists for different currencies and assign them to different accounts or account groups based on their location or preference. Therefore, option A is correct.
A price list may be set to become enabled in the future. You can specify a start date and an end date for a price list to control its availability. You can also activate or deactivate a price list manually. Therefore, option B is correct.
Option C is false because a price list does not have to contain prices for all products in the system, only for the products that are relevant for the accounts or account groups that are associated with it.
Option D is false because a price list may be associated with multiple users, not just a single user. A price list can be assigned to an account group, which can have multiple users who share the same entitlements. References: Price Lists, Price List Overview
質問 # 55
An admin is trying todetermine what steps remain before their Store can be deployed.
They have completed assigning a catalog to Store and assigning Buyer Groups to the store. Which step must the admin also complete as part of the store setup Wizard?
- A. Configure Checkout Flow
- B. Load tax rates
- C. Build the search Index
- D. Load Shipping Costs
正解:C
解説:
Explanation
According to the Store Setup Wizard page, the store setup wizard is a tool that guides you through the steps of creating and configuring a store or a reorder portal. The store setup wizard has four steps: Store Details, Store Settings, Buyer Access, and Store Launch. As part of the store launch step, you need to build the search index for your store. Building the search index creates or updates the index of products, categories, and attributes that are searchable on your store. Therefore, option C is correct. Options A, B, and D are false because loading shipping costs, configuring checkout flow, and loading tax rates are not steps that are part of the store setup wizard. They are tasks that can be done separately in the CC Admin interface or by using data import tools. References: Store Setup Wizard, Store Setup Wizard Overview
質問 # 56
A business user configures their price lists associated to the customer's account group. What is the best practice for giving customers access to a discounted set of products upon login?
- A. A Clone a price list and use the mass update function to adjust the prices.
- B. Create a coupon for a percentage discount off the cart total.
- C. Export the price list, perform a change function, then re-upload the price list.
- D. Create a new price list and individually add a new price list item for all products to be included.
正解:A
解説:
Explanation
According to the Mass Update Price Lists page, mass update price lists is a feature that allows you to update multiple prices for multiple products at once. Mass update price lists can be used to give customers access to a discounted set of products upon login using the following steps:
Clone a price list and use the mass update function to adjust the prices. You can create a copy of an existing price list and apply percentage or absolute adjustments to lower the prices for selected products.
Therefore, option D is correct.
Assign the cloned price list to the customer's account group using the sequence or best price selection method. You can associate one or more price lists with an account group and determine which one should be used based on priority or lowest price.
Option A is false because creating a new price list and individually adding a new price list item for all products to be included is a tedious and inefficient process that does not leverage the mass update function.
Option B is false because creating a coupon for a percentage discount off the cart total is not a best practice for giving customers access to a discounted set of products upon login, as it requires the customers to enter the coupon code at checkout and does not reflect the discounted prices on the product pages.
Option C is false because exporting the price list, performing a change function, and re-uploading the price list is a risky and error-prone process that does not use the mass update function available in the CC Admin interface. References: Mass Update Price Lists, Mass Update Price Lists
質問 # 57
A B2B admin notices change that needs to be made to a storefront before the Change Set can be finalized for deployment. From where Administrator directly access Experience Builder to make the change?
- A. All Communities
- B. All Sites
- C. Digital Experiences
- D. Store tile
- E. Experience CloudConfiguration
正解:D
解説:
Explanation
A store tile is a card that represents a store or reorder portal in the B2B Commerce app. A store or reorder portal is a digital experience that allows business buyers to browse products, place orders, view order history, and manage their account information. A B2B admin can access Experience Builder from the store tile to make changes to the storefront before the change set can be finalized for deployment. Experience Builder is a tool that allows admins to customize the look and feel, navigation, content, and functionality of their B2B commerce sites. References: [Store Tile]; [Store or Reorder Portal]; [Experience Builder]
質問 # 58
How can an Administrator stop welcome emails from being sent when a customer joins thestore as a new member?
- A. Add Welcome Emails to the Filtered Emails field in the Emails section of Setup.
- B. Disable the Welcome Email setting in the B2B Commerce section of Setup.
- C. Disable the Send welcome email setting in the Administration tab in Experience Builder.
- D. Uncheck the Send Email setting under Self-Registration in the Administration tab in Experience Builder.
正解:C
解説:
To stop welcome emails from being sent to new members joining the store, an Administrator canDisable the Send welcome email setting in the Administration tab in Experience Builder (D). This setting controls the automatic dispatch of welcome emails upon new user registration, and disabling it prevents these emails from being sent. This action offers a direct way to manage communication preferences within the Experience Builder, aligning the store's engagement strategies with business needs and user expectations. Unchecking Send Email settings (A) and modifying email configurations in Setup (B, C) are also relevant to email management, but the specific control for welcome emails is found within the Experience Builder's Administration settings.
質問 # 59
An Administrator has given another administrator access to the store to validate the B2BCommerce installation,but the welcome email was never receive In which two ways can the second Administrator access the store without changing the setup?
- A. Check the Debug Logs for the welcome email.
- B. Log in from the Contact page in the Commerce app.
- C. Log in using the link in the More Information section of the Store page.
- D. Reset this user's password from Setup and have the user login again.
- E. Enable Guest Access in Experience Builder.
正解:B、D
解説:
If a second administrator did not receive the welcome email for B2B Commerce, they can still access the store without changing the setup byLogging in from the Contact page in the Commerce app (C). This method allows administrators with existing Salesforce credentials to access the B2B Commerce environment directly through the Commerce app, bypassing the need for a welcome email. Additionally,Resetting the user's password from Setup and having the user login again (E)is a common workaround for access issues. This approach ensures that the user can reset their password and gain access to the store without relying on the initial welcome email.
Checking Debug Logs (A), Enabling Guest Access in Experience Builder (B), and Logging in using the link in the More Information section of the Store page (D) are not standard practices for this particular scenario.
質問 # 60
What step can a Buyer take to initiate the checkout process in a storefront on B2B Commerce?
- A. Submit a PO (Purchase Order) for automatic approval
- B. Open the detail view for My Carts and click the Checkout button
- C. Click the Proceed button on the Checkout tile
- D. Click the Checkout button on the Cart page
正解:D
解説:
Explanation
Clicking the Checkout button on the Cart page is the step that a buyer can take to initiate the checkout process in a storefront on B2B Commerce. The Cart page is where buyers can review their order details, such as products, quantities, prices, and discounts. The Checkout button takes buyers to the Checkout page, where they can enter their shipping and billing information, select a payment method, and place their order. References: Cart Page; [Checkout Page]
質問 # 61
Which two statements describe a Salesforce B2B Commerce storefront?
Choose 2 answers
- A. A storefront is what Salesforce B2B Commerce calls a Community.
- B. A customer can only belong to a single storefront
- C. Only one storefront can be configured for each community
- D. Each storefront within an implement can have different products, look and feel, and/or order flow.
- E. The products within a storefront mustall be priced using the same currency.
- F. Multiple storefronts can be associated witha single Community.
正解:A、D
解説:
According to the Get Started with B2B Commerce module, a storefront is what Salesforce B2B Commerce calls a community, and each storefront within an implementation can have different products, look and feel, and/or order flow. Therefore, options D and E are correct statements. Option A is false because a customer can belong to multiple storefronts, option B is false because multiple storefronts can be configured for each community, option C is false because products within a storefront can have different currencies, and option F is false because multiple storefronts cannot be associated with a single community. Reference: Get Started with B2B Commerce, What Is a Storefront?
質問 # 62
What is the limit on Category hierarchy in terms of Child records in B2B Commerce?
- A. 3.0
- B. 2.0
- C. 5.0
- D. 4.0
正解:C
解説:
According to the Product Categories page, product categories are collections of products that are grouped together based on common characteristics, such as type, function, style, etc. Product categories can be used to organize your products and make them easier to find and browse on your B2B Commerce site. Product categories can have a hierarchical structure, meaning that they can have parent and child categories. The limit on category hierarchy in terms of child records in B2B Commerce is 5. This means that a category can have up to 5 child categories under it. Therefore, option C is correct. Options A, B, and D are false because they imply that the limit on category hierarchy in terms of child records in B2B Commerce is lower than 5, which is not true. Reference: Product Categories, Product Categories Overview
質問 # 63
......
Salesforce B2B-Commerce-Administrator認定を取得するには、60問の試験に合格する必要があります。試験は、製品およびカタログ管理、価格設定およびプロモーション、アカウントおよびコンタクト管理、注文管理などのトピックをカバーしています。候補者は、データ管理、セキュリティ、および自動化などのSalesforceプラットフォームの概念に関する強い理解も持っている必要があります。この認定は、B2Bコマースでキャリアを進め、Salesforceプラットフォーム上で成功したB2Bコマースソリューションを実装および管理する専門知識を示すために理想的です。
最新でリアルなB2B-Commerce-Administrator試験問題集解答:https://drive.google.com/open?id=1DBP17WKXklYpHpAK2-_Z2yD496ukVdSx
あなたをお手軽に合格させるB2B-Commerce-Administrator試験正確なPDF問題:https://jp.fast2test.com/B2B-Commerce-Administrator-premium-file.html