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...
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....
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 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...
What isthe difference between Gross Layout Overrides and Subscriber Templates?
What isthe 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 allows for modification of the header, the footer and the content in...
How should this requirement be fulfilled?
A user wants to have a customized experience for adding items to the cart. The user also wants the mini cart module to reflect changes to the state of the cart afterwords. How should this requirement be fulfilled?A . Leverage the Addto Cart Global API which add items to the...
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...
What are two guidelines for logging that are used within the core Salesforce B2B Commerce product? (2 answers)
What are two guidelines for logging that are used within the core Salesforce B2B Commerce product? (2 answers)A . Items or data within computational intensive loops shouldbe logged.B . The close method of ccrz.ccLog must be called at the end of the remote action.C . No calls to ccrz.ccLog can...
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...
What is a method to resolve if the current storefront customer is a Salesforce B2B Commerce guest user in an apex class?
What is a method to resolve if the current storefront customer is a Salesforce B2B Commerce guest user in an apex class?A . ccrz.cc_CallContext.currUser.isGuestB . ccrz.cc_CallContext.isGuestC . UserInfo.getUserType()D . ... UserTypeView AnswerAnswer: B Explanation: A method to resolve if the current storefront customer is a Salesforce B2B Commerce guest user...
that are typed before autocomplete works?
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 theautoComplete.search_input.minLength value in the CCRZ.uiProperties fileC . Override the autocomplete template and create and register a new handlebars helper.D ....