
B2B-Commerce-Developer Exam Dumps Pass with Updated Dec-2021 Tests Dumps
B2B-Commerce-Developer exam questions for practice in 2021 Updated 80 Questions
NEW QUESTION 43
Which event should be triggered when user facing info, warning or error messages need to be displayed on a Visualforce page?
- A. displayMessage
- B. showMessage
- C. pageMessage
- D. displayPageMessage
Answer: C
NEW QUESTION 44
A user wants to leverage a three column layout on a page. The user also wants to move the mini-cart widget from the right to the center column. How can this requirement be fulfilled?
- A. Gross Layout Override
- B. Subscriber Template
- C. HandleBar Template Override
- D. Page Include
Answer: B
NEW QUESTION 45
What is the difference between Gross Layout Overrides and Subscriber Templates?
- A. Gross Layout Overrides allow modification to CSS of a page, while Subscriber Templates allows for modification of the entire page including header and footer.
- B. Subscriber Templates allow for modification of the header and the footer, while Gross Layout Overrides allow for modification everything inside the header and footer.
- C. Subscriber Templates allows for modification of the header, the footer and the content in between them.
Gross Layout Overrides only allow for modification of the header and footer. - D. Gross Layout Overrides allow for the modification of the footer, while Subscriber Templates allow for modification of everything inside the header and footer.
Answer: D
NEW QUESTION 46
What are three ways to implement custom post Order processing? (3 answers)
- A. Extend cc_hk_invoice to handle custom business logic post Order processing
- B. Use cc_hk_Order.placeTarget to define a new Order Confirmation page which executes additional business logic.
- C. Use a Salesforce workflow rule that executes when an Order record is created.
- D. Modify or add custom Cart formula fields to handle logic.
- E. Use Process builder to implement business processes that execute when an Order record is created.
Answer: B,C,E
NEW QUESTION 47
What is a valid way of referencing the CC Cart Object whose API name is E_Cart__c in a SOQL query?
- A. c.E_Cart__c
- B. _Cart__c
- C. ccrz__E_Cart__c
- D. cloudcraze__E_Cart__c
Answer: C
NEW QUESTION 48
Which three statements are true regarding event handling in the Salesforce B2B Commerce managed package?
(3 answers)
- A. Salesforce B2B Commerce relies on a central event channel for communication across various Salesforce B2B Commerce Backbone Views and Models called CCRZ.pubSub.
- B. Salesforce B2B Commerce relies on a series of Javascript click listener events.
- C. Writing directly to your own custom Backbone JS Views and Models automatically integrates that data into the Salesforce B2B Commerce Backbone Views and Models.
- D. CCRZ.pubSub defines the following three functions which can be used for event handling: trigger, on, and once.
- E. CCRZ.pubSub extends the Backbone.Events JavaScript object.
Answer: A,D,E
NEW QUESTION 49
A developer is trying to troubleshoot why a field is not displaying on the Product Detail Page. What should be typed in the Developer Tools Console in the browser to view the fields available for the Product Detail Page?
- A. CCRZ.productDetailView
- B. CCRZ.productDetailModel
- C. CCRZ.productSearchView
- D. CCRZ.cartView
Answer: B
NEW QUESTION 50
What is the recommended method for increasing the number of required autocomplete characters that are typed before autocomplete works?
- A. Override and extend the autoComplete method in cc_hk_Catalog.
- B. Override the autocomplete template and create and register a new handlebars helper.
- C. Override the autoComplete.search_input.minLength value in the CCRZ.uiProperties file
- D. Update the...minLength property in CC Admin, then build and activate a new cache.
Answer: C
NEW QUESTION 51
Which three steps are necessary to have subscriber page added to Salesforce B2B Commerce after creating a custom Visualforce page? (3 answers)
- A. Create a new Visualforce page, and manually import the Salesforce B2B Commerce JavaScript libraries.
Run in Anonymous Apex ccrz.cc_util_Reflection.upsertPageUIKey([arg1],[arg2],[arg3]); - B. Create a new CC Subscriber Page record that points to your custom Visualforce page.
- C. Enable the Subscriber Page in CC Admin.
- D. Refresh the Page Keys Index in CC Admin.
Answer: B,C,D
NEW QUESTION 52
Although Salesforce B2B Commerce and Salesforce recommend against using
"without sharing classes" whenever possible, sometimes it is unavoidable. Which three items will open up a major security hole? (3 answers)
- A. Executing dynamic SOQL inside a without sharing class with a bind variable from PageReference.getCookies().
- B. Executing dynamic SOQL inside a without sharing class with a bind variable from cc_RemoteActionContentex class.
- C. Executing dynamic SOQL inside a without sharing class with a bind variable from the UserInfo class.
- D. Executing dynamic SOQL inside a without sharing class with a bind variable from PageReference.getParameters().
- E. Executing dynamic SOQL inside a without sharing class with a bind variable from ccAPI.CURRENT_VERSION.
Answer: A,B,D
NEW QUESTION 53
Which Salesforce B2B Commerce object needs to have a record added when defining a new Subscriber Pages to be rendered in a CC Page?
- A. CC Storefront Assosiation
- B. CC Subscriber Pages
- C. CC Admin
- D. CC Page Sections
Answer: B
NEW QUESTION 54
Numerous flags, when set, have a direct impact on the result set provided by the Global API's.
What is the default Global API DataSizing convention flag that is used by the API's unless otherwise specified?
- A. CCRZ.ccPAI.SZ_S
- B. CCRZ.ccPAI.SZ_L
- C. CCRZ.ccPAI.SZ_M
- D. CCRZ.ccPAI.SZ_XL
Answer: B
NEW QUESTION 55
Which handlebars helper expression is used in Salesforce B2B Commerce pages and components to toggle the display of a block of markup?
- A. {{#ifConfig 'Field__c'}} ... {{/ifConfig}}
- B. {{#ifSetting 'Page.cfg}} ... {{/ifSetting}}
- C. {{#ifStoreSetting 'Field__c'}} ... {{/ifStoreSetting}}
- D. {{#ifDisplay 'Page.cfg'}} ... {{/ifDisplay}}
Answer: D
NEW QUESTION 56
What are two guidelines for logging that are used within the core Salesforce B2B Commerce product? (2 answers)
- A. No calls to ccrz.ccLog can be made before cc_CallContext.initRemoteContext is executed.
- B. Items or data within computational intensive loops should be logged.
- C. The close method of ccrz.ccLog must be called at the end of the remote action.
- D. It is okay to log any data on the server that is already logged on the client side.
Answer: A,C
NEW QUESTION 57
A new payment type for the Checkout flow has been implemented. Which three descriptors follow best practice for possible configuration metadata are needed to enable a flow? (3 answers)
- A. Checkout
- B. *.Edit
- C. Cart
- D. *.pay
- E. *.New
Answer: B,D,E
NEW QUESTION 58
Witch static method invocation is used to initialize ccrz.cc_CallContext with information from ccrz.cc_RemoteActionContext and return an instance of ccrz.cc_RemoteActionResult in an apex
@RemoteAction methos?
- A. ccrz.cc_CallContext.initializeCallContext(ccrz.cc_RemoteActionContext)
- B. ccrz.cc_CallContext.init(ccrz.cc_RemoteActionContext)
- C. ccrz.cc_CallContext.initRemoteActionContext(ccrz.cc_RemoteActionContext)
- D. ccrz.cc_CallContext.initCallContext(ccrz.cc_RemoteActionContext)
Answer: B
NEW QUESTION 59
......
Authentic B2B-Commerce-Developer Dumps With 100% Passing Rate Practice Tests Dumps: https://www.fast2test.com/B2B-Commerce-Developer-premium-file.html
Updated Premium B2B-Commerce-Developer Exam Engine pdf: https://drive.google.com/open?id=1TPKF4Pb4YRKTmS7a-g7-6WOQfGTQ3WUW