How do the REST APIs in Salesforce B2B Commerce support pass-through parameter handling

How do the REST APIs in Salesforce B2B Commerce support pass-through parameter handlingA . An exception is generated for unknown API keysB . Parameters are passed through the service handlersC . Parameters are filtered out before the request is processedD . Parameters are separated, but unusedView AnswerAnswer: B Explanation: The...

November 25, 2023No CommentsREAD MORE +

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

November 24, 2023No CommentsREAD MORE +

What is essential for a Salesforce B2B Commerce theme to show up in the theme section in CC Admin?

What is essential for a Salesforce B2B Commerce theme to show up in the theme section in CC Admin?A . The theme needs to be set as a Custom Setting in Salesforce.B . The theme needs to be set in the Configuration Settings.C . The theme needs to have "theme"...

November 24, 2023No CommentsREAD MORE +

How are variables bound when services use the ccSercviceDao classto execute queries?

How are variables bound when services use the ccSercviceDao classto execute queries?A . Global variablesB . Apex local variablesC . String substitutionD . Apex class variablesView AnswerAnswer: C Explanation: When services use the ccServiceDao class to execute queries, variables are bound by string substitution. This means that the query string...

November 24, 2023No CommentsREAD 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...

November 24, 2023No CommentsREAD MORE +

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

November 23, 2023No CommentsREAD 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....

November 23, 2023No CommentsREAD MORE +

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

November 23, 2023No CommentsREAD MORE +

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

November 23, 2023No CommentsREAD MORE +

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

November 22, 2023No CommentsREAD MORE +