What are two ways to check the input or return data of the Global API's?
The ccUtil apex class in Salesforce B2B Commerce provides numerous utility functions that can be leveraged in subscriber classes. What are two ways to check the input or return data of the Global API's? (2 answers)A . ccrz.ccUtil.isNotEmpty(Map<String, Object>) andccrz.ccUtil.isNotEmpty(List<Object>)B . ccrz.ccUtil.isNotValid(Map<String, Object>) andccrz.ccUtil.isNotValid(List<Object>)C . ccrz.ccUtil.isValid(Map<String, Object>) and ccrz.ccUtil.isValid(List<Object>)D ....
Which three steps are necessary to have subscriberpage added to Salesforce B2B Commerce after creating a custom Visualforce page? (3 answers)
Which three steps are necessary to have subscriberpage added to Salesforce B2B Commerce after creating a custom Visualforce page? (3 answers)A . Create a new CC Subscriber Page record that points to your custom Visualforce page.B . Create a new Visualforce page, and manually import the Salesforce B2BCommerce JavaScript libraries....
What are three advantages of using ccLog over the Salesforce standard System.debug class? (3 answers)
What are three advantages of using ccLog over the Salesforce standard System.debug class? (3 answers)A . There is no need to use string concatenation to easily tag log statements with a subject.B . ccLog can debug syntax errors found in the JavaScript.C . There is no need to create a...
What are the templating, Javascript, and CSS frameworks what the cloudcraze managed package leverages?
What are the templating, Javascript, and CSS frameworks what the cloudcraze managed package leverages?A . Angularjs, Backbonejs, and handlebarsjsB . Bootstrap, Backbonejs, and handlebarsjsC . Bootstrap, Angularjs, and BackbonejsD . Angularjs, react.js, and handlebarsjsView AnswerAnswer: B Explanation: The templating, JavaScript, and CSS frameworks that the cloudcraze managed package leverages are...
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?
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.init(ccrz.cc_RemoteActionContext)B . ccrz.cc_CallContext.initCallContext(ccrz.cc_RemoteActionContext)C . ccrz.cc_CallContext.initRemoteActionContext(ccrz.cc_RemoteActionContext)D . ccrz.cc_CallContext.initializeCallContext(ccrz.cc_RemoteActionContext)View AnswerAnswer: B Explanation: The static method invocation that is used to initialize ccrz.cc_CallContext with information from ccrz.cc_RemoteActionContext and...
What is a valid way of referencing the global cc_api_CartExtentsion apex class via subscriber code?
What is a valid way of referencing the global cc_api_CartExtentsion apex class via subscriber code?A . ccrz__cc_api_CartExtensionB . c__cc_api_CartExtensionC . cloudcraze.cc_api_CartExtensionD . ccrz.cc_api_CartExtensionView AnswerAnswer: D Explanation: A valid way of referencing the global cc_api_CartExtension apex class via subscriber code is to use ccrz.cc_api_CartExtension. This is the name of the class...
Which two Salesforce B2B Commerce visualforce pages must be enabled at a Salesforce Community level to make the out of the box SEO functionality available? (2 answers)
Which two Salesforce B2B Commerce visualforce pages must be enabled at a Salesforce Community level to make the out of the box SEO functionality available? (2 answers)A . CCSizeIndexB . SizeMapC . CCCatSiteMapD . ProductMapView AnswerAnswer: A,C Explanation: Two Salesforce B2B Commerce Visualforce pages that must be enabled at a...
Which handlebars helper expression is used in Salesforce B2B Commerce pages and components to toggle the display of a block of markup?
Which handlebars helper expression is used in Salesforce B2B Commerce pages and components to toggle the display of a block of markup?A . {{#ifStoreSetting 'Field__c'}} ... {{/ifStoreSetting}}B . {{#ifSetting 'Page.cfg}} ... {{/ifSetting}}C . {{#ifConfig 'Field__c'}} ... {{/ifConfig}}D . {{#ifDisplay 'Page.cfg'}} ... {{/ifDisplay}}View AnswerAnswer: C Explanation: The handlebars helper expression that...
"My_Fiels_Name__c" transformed onto by default in Salesforce B2B Commerce?
Which format is the custom Salesforce field with the API name "My_Fiels_Name__c" transformed onto by default in Salesforce B2B Commerce?A . MyFieldNameB . myFieldNameC . myfieldnameD . My_Field_Name__cView AnswerAnswer: B Explanation: The format that the custom Salesforce field with the API name My_Field_Name__c is transformed onto by default in Salesforce...
How can this requirement be fulfilled?
When a user buys 10 units of product B, the user wants 1 unit of Product A to be automatically added to the cart. How can this requirement be fulfilled?A . Override the AllowCheckout method in ccrz.cc_api_CartExtensionB . Override the prepareForSave method in ccrz.cc_api_CartExtensionC . Override the preprocess method in...