Which two usages of ccLog should be avoided in Salesforce B2B Commerce? (2 answers)
A. ccrz.ccLog.log(System.LoggingLevel.ERROR, 'D:something', myCallToGetMessage(pl) ), where myCallToGetMessage(pl) is a method invocation
B. crz.ccLog.log(System.LoggingLevel.WARN, 'D:something', 'Something unexpected occurred: The data we were expecting for pl was not there,')
C. crz.ccLog.log(System.LoggingLevel.DEBUG, 'D:myOrderList', myOrderList), where myOrderList is a list of orders
D. crz.ccLog.log(System.LoggingLevel.DEBUG, 'D:myOrder', myOrder), where myOrder is an order object
What is a valid way of referencing the CC Cart Object whose API name is E_Cart__c in a SOQL query?
A. _Cart__c
B. c.E_Cart__c
C. ccrz__E_Cart__c
D. cloudcraze__E_Cart__c
In which three ways should useful debugging information in Salesforce B2B Commerce implementation be garnered? (3 answers) A) Enabling the logging token via
A. Admin andsubsequently inspecting the logs via the browser console.
B. Logging a case with Salesforce support to enable advanced debugging options.
C. Enabling debugging options for the current user and visually inspecting the Salesforce debug logs.
D. Placing a System.debug() statement anywhere in the class being debugged.
E. Logging into the community as a system administrator to identify any potential permissions or Visualforce exceptions.
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 file
C. Override the autocomplete template and create and register a new handlebars helper.
D. Update the...minLength property in CC Admin, then build and activate a new cache.
How are variables bound when services use the ccSercviceDao classto execute queries?
A. Global variables
B. Apex local variables
C. String substitution
D. Apex class variables
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 ServiceManagement in CCAdmin for the given storefront to use this new Service Class.
B. Override the Logic Class that the page uses and update the Service Management in CCAdmin for the given storefront to use this new Service Class
C. Create a new Service Classthat the page uses and update the Service Management in CCAdmin for the given storefront to use this new Service Class
D. Create a new Logic Class that the page uses and update the Service Management in CCAdmin for the given storefront to use this new Service Class
Which three steps are necessary to have subscriberpage added to Salesforce B2B Commerce after creating a custom Visualforce page? (3 answers)
A. Create a new CC Subscriber Page record that points to your custom Visualforce page.
B. Create a new Visualforce page, and manually import the Salesforce B2BCommerce JavaScript libraries. Run in Anonymous Apex ccrz.cc_util_Reflection.upsertPageUIKey([arg1],[arg2],[arg3]);
C. Refresh the Page Keys Index in CC Admin.
D. Enable the Subscriber Page in CC Admin.
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 Include
B. Subscriber Page (CC Page)
C. Subscriber Template
D. Body Include Begin
How is a price group dynamically set?
A. By overriding the ccLogicProductPrice class
B. By using contract pricing
C. By extending the ccApiPriceList API
D. By extending the cc_hk_priceing hook
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_CartExtension
B. Override the prepareForSave method in ccrz.cc_api_CartExtension
C. Override the preprocess method in ccrz.cc_api_CartExtension
D. Override the prepareToAdd method in ccrz.cc_api_CartExtension