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...
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...
Where is the API-based record creation generally handled in Salesforce B2B Commerce?
Where is the API-based record creation generally handled in Salesforce B2B Commerce?A . In the methods available in extension hooksB . The service-layer responsible for the entityC . Data creation is not allowedD . Logic classes that implement the businesslogic for create operationsView AnswerAnswer: B Explanation: The API-based record creation...
Which three items will open up a major security hole?
Although Salesforce B2B Commerce and Salesforce recommend against using "without sharing classes" whenever possible, sometimes it is unavoidable. Which three items will open up a major security hole? (3 answers)A . Executing dynamic SOQL inside a without sharing class with a bind variable fromPageReference.getParameters().B . Executing dynamic SOQL inside a...
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...
How can this requirement be fulfilled?
A user wants to have a Contact Us page in the storefront. This page will be a web-tolead form and it should have the header and footer, essentially the same look and feel as all the pages in the application. How can this requirement be fulfilled?A . Page IncludeB ....
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:...
How is a price group dynamically set?
How is a price group dynamically set?A . By overriding the ccLogicProductPrice classB . By using contract pricingC . By extending the ccApiPriceList APID . By extending the cc_hk_priceing hookView AnswerAnswer: D Explanation: A price group can be dynamically set by extending the cc_hk_pricing hook. This hook allows modifying the...
Which event is invoked by any CCRZ Salesforce B2B CommeceView after the view is rendered?
Which event is invoked by any CCRZ Salesforce B2B CommeceView after the view is rendered?A . view:*:loadB . view:*:refreshC . view:*:onloadD . view:*:renderedView AnswerAnswer: D Explanation: The event that is invoked by any CCRZ Salesforce B2B Commerce View after the view is rendered is view:*:rendered. This event is triggered by...
What are three ways to implement custom post Order processing? (3 answers)
What are three ways to implement custom post Order processing? (3 answers)A . Use a Salesforce workflow rule that executes when an Order record is created.B . Extend cc_hk_invoice tohandle custom business logic post Order processingC . Use cc_hk_Order.placeTarget to define a new Order Confirmation page which executes additional business...