For which two reasons is it preferable to extend the Salesforce B2B Commerce remote invocation object instead of using the standard Salesforce remote action invocation manager (2 answers)

For which two reasons is it preferable to extend the Salesforce B2B Commerce remote invocation object instead of using the standard Salesforce remote action invocation manager (2 answers)A . A standard remote action will not have access to Salesforce B2B Commerce objects.B . The APEX method called by the remote...

January 24, 2024 No Comments READ MORE +

What are three ways to test the value of Page Label on any Salesforce B2B Commerce Community Page? (3 answers)

What are three ways to test the value of Page Label on any Salesforce B2B Commerce Community Page? (3 answers)A . Access the source HTML for the page viathe browser developer tools.B . Execute CCRZ.pagevars.pageLabels['PAGE_LABEL_NAME') in the JavaScript console.C . Execute CCRZ.processPageLabelMap('PAGE_LABEL_NAME') in the JavaScript console.D . Enable the 'display...

January 24, 2024 No Comments READ MORE +

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

January 24, 2024 No Comments READ MORE +

Which Global JavaScript Object should be extended when writing custom Remote Actions?

Which Global JavaScript Object should be extended when writing custom Remote Actions?A . CCRZ.B . CCRZ.ccC . CCRZ.cc_CallContextD . CCRZ.RemoteInvocationView AnswerAnswer: B Explanation: The Global JavaScript Object that should be extended when writing custom Remote Actions is CCRZ.cc. This object contains all the Remote Actions that are defined in the...

January 24, 2024 No Comments READ MORE +

Which cookie stores the effective account ID when effective account is enabled?

Which cookie stores the effective account ID when effective account is enabled?A . apex__cclgtknB . apex__effaccC . apex__currCartIdD . apex__cc_anonymous_CountryView AnswerAnswer: B Explanation: The cookie that stores the effective account ID when effective account is enabled is apex__effacc. This cookie is set by the cc_hk_EffectiveAccount hook when a user switches...

January 24, 2024 No Comments READ MORE +

Which three attributes are true regarding Subscriber pages? (3 answers)

Which three attributes are true regarding Subscriber pages? (3 answers)A . Subscriber pages can include additional standard Salesforce B2B Commerce components such as featured products, category tree, and mini cart.B . All the user interface components must be createdmanually.C . Subscriber pages allow customers to quickly create new custom pages...

January 24, 2024 No Comments READ MORE +

How can the display of CC Menu Items be customized for different users?

How can the display of CC Menu Items be customized for different users?A . cc_hk_Category extension to pre-process which category items are cached as menu itemsB . cc_hk_Menu extension to post-process any cached menu itemsC . cc_hk_Menu extension to pre-process which menu items are cachedD . cc_hk_Category extension to post-process...

January 23, 2024 No Comments READ MORE +

What is one way of preventing anexisting payment page from being shown on the checkout payment page?

A configuration value, CO.NewOrder, is set to TRUE. What is one way of preventing anexisting payment page from being shown on the checkout payment page?A . Delete the Visualforce page from the code base.B . Remove the value matching the page name from the pmt.whitelist configurationsetting, then rebuild and activate...

January 23, 2024 No Comments READ MORE +

What are three of these operations?

The sizing keys used in the Salesforce B2B Commerce Global APIs five distinct operations. What are three of these operations? (3 answers)A . Refetch data (used on some Logic classes)B . Return formats as Map<String, Object> or SObjects listsC . Override static DAO classes and methodsD . Related Query to...

January 23, 2024 No Comments READ MORE +

In what way can this requirement be satisfied?

A user wants the pricing to reflect the price values stored in an external ERP during the checkoutflow. In what way can this requirement be satisfied?A . Override the computePricingCart method in ccrz.cc_api_PriceAdjustoment and make the callout in this method.B . None of the aboveC . Override the computePricingReview method...

January 23, 2024 No Comments READ MORE +