[Jan-2024] Pass Salesforce CCM-101 Exam in First Attempt Guaranteed! [Q72-Q89]

Share

[Jan-2024] Pass Salesforce CCM-101 Exam in First Attempt Guaranteed!

Full CCM-101 Practice Test and 208 unique questions with explanations waiting just for you, get it now!

NEW QUESTION # 72
The Client currently manages Customers, Inventory, and Product Information with dedicated backend systems as shown In the Systems Diagram below. There is also an external Email Marketing System (EMS) in place. The EMS needs order data to email recommendations to customers using an existing email campaign. These recommendations should be to only send for products that are in stock. The EMS has no access to the backend systems so this data should come from the Salesforce B2C Commerce site.

Which relationships should be added to the Systems Diagram to complete it and fulfill the chant requirements necessary for the email campaign?

  • A. Order, Customer, and Product data should be exported from Staging. Inventory data should be exported from Production.
  • B. Order and Inventory should be exported from Production. Products should be exported from Staging. Customers should be exported from the external Customer Management System.
  • C. Order and Customer data should be exported from Production. Product and Inventory data should be exported from Staging.
  • D. Order, Customer, and Inventory data should be exported from Production. Product data should be exported from staging.

Answer: C


NEW QUESTION # 73
Refer to the screen shot below:

Given a site called RefArch that has the settings shown, what must be done for RefArch to use the same customer list as RefArchGlobal?

  • A. Enable "Customer List Sharing" in Global Preferences.
  • B. Select RefArchGlobal in the dropdown for Customer List.
  • C. Enable "Customer List Sharing" in Site Preferences.
  • D. Import the RefArchGlobal customer list into the RefArch site.

Answer: B


NEW QUESTION # 74
Universal Containers calls the following combination of products "The Basics" and sells the combination as a unique product ID:
One Model 103 container
Five Model 611 container
Tree Model 201 container
The Developer created these three products in the catalog.
What is the next step in Business Manager to create "The Basics" as a combination?

  • A. In the Product Sets module, create a product set named "The Basics".
  • B. In the Products module, create a product named "The Basics" and add the products to the Product Sets tab.
  • C. In the Product Bundles module, create a bundle named "The Basics".
  • D. In the Products module, create a product named "The Basics" and add the products to the Product Bundles tab.

Answer: D


NEW QUESTION # 75
An Architect has been approached by the Business with a request to create a custom product finder. The finder would initially be available on only one site, and would eventually be extended to be available on all sites the Business maintains. There is a requirement that these wrings art also available to be used in a Job context for export to other systems.
Each site will have a different category avertable for use by the product finder.
Where should the Architect store the custom settings for use on both the storefront and in a job context?

  • A. Category custom attributes
  • B. Custom Object with a Site Scope
  • C. Custom Object with an Organizational Scope
  • D. Jobs Framework parameters

Answer: A


NEW QUESTION # 76
A client that sells to multiple countries in Europe needs to disable Apple Pay for Denmark.
Which Business Manager module is used to achieve this requirement?

  • A. Locale Payments
  • B. Apple Pay
  • C. Payment Methods
  • D. Payment Processors

Answer: A


NEW QUESTION # 77
A developer is using the Script Debugger to troubleshoot an issue. They observe that the debugger is not able to resolve a specific breakpoint on one of the scripts. What is a possible reason for this issue?

  • A. The script debugging session is not active
  • B. The cartridge containing the script is not in the site's cartridge path
  • C. The script is form a third party cartridge and hence does not allow_settings breakpoints.

Answer: B


NEW QUESTION # 78
Which three configuration does a developer need to ensure to have a new product visible in the Storefront?
Choose 3 answers

  • A. The product is online and searchable
  • B. The Storefront catalog that contains the product is assigned to a site
  • C. The product has a master product
  • D. The search index is built.
  • E. The product has a Price

Answer: A,B,D

Explanation:
Tengo dudas con el A. REVISAR


NEW QUESTION # 79
A developer wants to import the data or different instances.
Which two types of data should the developer consider importing?
Choose 2 answers

  • A. Customers
  • B. Sites configurations
  • C. Services
  • D. Metadata
  • E. Catalog

Answer: B,D


NEW QUESTION # 80
Given the file structure below, which ISML method call renders the customLandingPage template?

  • A. ISML('content/custom/customLandingPage');
  • B. ISML.render('content/custom/customLandingPage');
  • C. ISML.renderTamplate('cartridge/templates/default/content/custom/customLandingPage');
  • D. ISML.renderTemplate('content/custom/customLandingPage');

Answer: D


NEW QUESTION # 81
When exporting a price book from an external system, which file format or formats should a developer use so it can be imported into a B2C Commerce site?

  • A. XML and CSV
  • B. CSV only
  • C. XML only
  • D. JSON only

Answer: D


NEW QUESTION # 82
A developer working on a simple web service integration is asked to add appropriate logging to allow future troubleshooting.
According to logging best practices, which code should the developer write to log when an operation succeeds, but has an unexpected outcome that may produce side effects?

  • A. Logger.warn('Unexpected service response')
  • B. Logger.error('Unexpected service response')
  • C. Logger.info('Unexpected service response')
  • D. Logger.debug('Unexpected service response')

Answer: A


NEW QUESTION # 83
A Newsletter controller contains the following route:
Server.post('Subscribe', function (req,res,next){
var newsletterForm = server.forms.getForm('newsletter');var CustomObjectMgr = require('dw/object/CustomObjectMgr'); if(newsletterForm.valid){ try{ var CustomObject = CustomObjectMgr.createCustomObejct('NewsletterSubscription', newsletterform.email.value); CustomObject.custom.firstName = newsletterForm.fname.value; CustomObject.custom.lastName = newsletterForm.lname.value;-
} catch(e){
//Catch error here
}
}
next();
});
Assuming the Custom Object metadata exists, why does this route fail to render the newsletter template when the subscription form is correctly submitted?

  • A. The Custom Object creation is not wrapped in a Transaction.
  • B. The Subscribe route is missing the server.middleware.httpt middleware.
  • C. Custom Objects can only be created by Job scripts
  • D. The CustomObjectMgr variable should be declare outside of the route.

Answer: A


NEW QUESTION # 84
Northern Trail Outfitters uses an Order Management system (OMS), which creates an order tracking number for every order 24 hours after receiving it. The OMS provides only a web-service interface to get this tracking number. There is a job that updates this tracking number for exported orders, which were last modified yesterday.
Part of this jobs code looks like the following:
Based on the above description and code snippet, which coding best practice should the Architect enforce?

  • A. The transaction for updating of orders needs to be rewritten to avoid problems with transaction size.
  • B. Post-processing of search results is a bad practice that needs to be corrected.
  • C. Standard order import should be used instead of modifying multiple order objects with custom code.
  • D. Configure circuit breaker and timeout for the OMS web service call to prevent thread exhaustion.

Answer: D


NEW QUESTION # 85
A client has a single site with multiple domains, locales, and languages. After launch, there is a need for the client to perform offline maintenance. The client would like to show the same maintenance page for each locale.
Which version of aliases,Json file below will accomplish this task?
A)

B)


D)

  • A. Option C
  • B. Option B
  • C. Option A
  • D. Option D

Answer: D


NEW QUESTION # 86
A developer needs to render a Page Designer page in JSON format. What is the correct syntax?

  • A. JSON.stringgify(PageMgrrenderpage(pageID), {paramter1:value1}}:
  • B. PageMgr,renderPage{pageID, {parameter1: value1}}
  • C. PageMgr.serializePage(pageID), {parameter1:value1}};

Answer: C


NEW QUESTION # 87
A client has custom object definition and requirement that occasional data changes in staging also need to exist in production, Which task should the developer perform to meet these requirements when setting up the custom object?

  • A. Create the custom object definition in staging as Shared
  • B. Create the custom object definition in staging as Replicable
  • C. Create the custom object definition in production as Replicable
  • D. Create two copies of the custom object in staging and set Sharing = True.

Answer: B


NEW QUESTION # 88
A merchant wants customers to be able to order gift vouchers via their site. Since they can issue an unlimited number of these digital vouchers, this item should be available to sell at all items.
How can a developer use Business Manager to ensure that the gift vouchers are always available?

  • A. Check the Available to Sell (ATS) flag dor the producto set
  • B. Check the perpetual flag in the product inventory record
  • C. Set StockLevel = maxAllocation for the producto.
  • D. Manually set the inventory to a high number.

Answer: B


NEW QUESTION # 89
......

Get Latest CCM-101 Dumps Exam Questions in here: https://www.fast2test.com/CCM-101-premium-file.html

Contact Us

If you have any question please leave me your email address, we will reply and send email to you in 12 hours.

Our Working Time: ( GMT 0:00-15:00 ) From Monday to Saturday

Support: Contact now 

日本語 Deutsch 繁体中文 한국어