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...

February 1, 2024 No Comments READ MORE +

Which event is triggered within Salesforce B2B Commerce whenever a cart's statechanges?

Which event is triggered within Salesforce B2B Commerce whenever a cart's statechanges?A . cartChangeB . cartC . pageMessageD . cartStateView AnswerAnswer: A Explanation: The event that is triggered within Salesforce B2B Commerce whenever a cart’s state changes is cartChange. This event is triggered by the updateCart method of the CCRZ.Cart...

January 31, 2024 No Comments READ MORE +

How does a project implement the process to persist payment information datain the Checkout flow for Salesforce B2B Commerce version 4.2 and beyond?

How does a project implement the process to persist payment information datain the Checkout flow for Salesforce B2B Commerce version 4.2 and beyond?A . Trigger a remote action when the process payment button is selected to capture the payment.B . Trigger a remote action to store the payment information in...

January 31, 2024 No Comments READ MORE +

Which method signature is used in the Global API's?

Which method signature is used in the Global API's?A . Changes based on API and Method nameB . ccrz.cc_Output (ccrz:cc_Input input)C . Map<String, Object>D . List<List<Object>>View AnswerAnswer: B Explanation: The method signature that is used in the Global API’s is ccrz.cc_Output (ccrz.cc_Input input). This signature indicates that the Global API...

January 31, 2024 No Comments READ MORE +

How does the Developer ensure that the field is available to display on a given page?

A Developer created a custom field that a project wants to expose on a given page. How does the Developer ensure that the field is available to display on a given page?A . Override the Service Class that the page uses and update the ServiceManagementin CCAdmin for the given storefront...

January 31, 2024 No Comments READ MORE +

How are version related upgrades passed on to subscriber API extensions/overrides?

How are version related upgrades passed on to subscriber API extensions/overrides?A . APIs callback with specific versions specified; the user must know which version number to use.B . Copy and paste of specific code is "built-in"C . Extensions and overridden APIs don't support-related upgrades.D . The "delegate" allows inherited method...

January 30, 2024 No Comments READ MORE +

Which command will return the value in the given Map if found or a default value in the event that the Map is null, empty, or an object is not found for that key?

The ccUtil apex class in Salesforce B2B Commerce provides numerous utility functions that can be leveraged in subscriber classes. Which command will return the value in the given Map if found or a default value in the event that the Map is null, empty, or an object is not found...

January 30, 2024 No Comments READ MORE +

Which service method should be overridden in order to allow "without sharing" queries?

Which service method should be overridden in order to allow "without sharing" queries?A . ccrz.ccService.queryWithoutSharing()B . ccrz.ccAPI.queryService()C . ccrz.ccService.query()D . ccrz.ccService.initSVCDAO()View AnswerAnswer: D Explanation: The service method that should be overridden in order to allow “without sharing” queries is ccrz.ccService.initSVCDAO. This method is responsible for initializing the service data access...

January 30, 2024 No Comments READ MORE +

What two kinds of queries do the methods in Salesforce B2B Commerce services perform by default? (2 answers)

What two kinds of queries do the methods in Salesforce B2B Commerce services perform by default? (2 answers)A . SOSLB . SQLC . SOQLD . Schema-less queriesView AnswerAnswer: CD Explanation: Two kinds of queries that the methods in Salesforce B2B Commerce services perform by default are SOQL and schema-less queries....

January 29, 2024 No Comments READ MORE +

Which conversion flag allows for sObjects to be returned from the Global API's when provided as a Boolean parameter with a value of true?

Numerous flags when set, have a direct impact on the result set provided by the Global API's. Which conversion flag allows for sObjects to be returned from the Global API's when provided as a Boolean parameter with a value of true?A . ccrz.ccAPISizing.SKIPTRZB . ccrz.ccAPISizing.SOBJECTC . ccrz.ccAPI.SZ_SKIPTRZD . ccrz.ccAPI.SZ_SOBJECTView AnswerAnswer:...

January 29, 2024 No Comments READ MORE +