What is the recommended method for increasing the number of required autocomplete characters 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 CCRC . uiProperties fileD . Override the autocomplete template and create and register a new handlebars...
Which three scenarios are valid reasons for customer to create their own robots.txt file?
Salesforce B2B Commerce natively provides a robots.txt file, however, a customer can also create its own version. Which three scenarios are valid reasons for customer to create their own robots.txt file? (3 answers)A . The customer wants to reference multiple storefront sitemap indexes in a single robots.txt fileB . The...
Which method signature is used in the Global API's?
Which method signature is used in the Global API's?A . Changes based on API and Method nameB . ccrz.cc_Output (ccrz:cc_Input input)C . Map<String, Object>D . List<List<Object>>View AnswerAnswer: C
Which three statements are true regarding event handling in the Salesforce B2B Commerce managed package? (3 answers)
Which three statements are true regarding event handling in the Salesforce B2B Commerce managed package? (3 answers)A . Salesforce B2B Commerce relies on a series of Javascript click listener events.B . Writing directly to your own custom Backbone JS Views and Models automatically integrates that data into the Salesforce B2B...
How are version related upgrades passed on to subscriber API extensions/overrides?
How are version related upgrades passed on to subscriber API extensions/overrides?A . APIs callback with specific versions specified; the user must know which version number to use.B . Copy and paste of specific code is "built-in"C . Extensions and overridden APIs don't support-related upgrades.D . The "delegate" allows inherited method...
Which handlebars helper expression is used in Salesforce B2B Commerce pages and components to toggle the display of a block of markup?
Which handlebars helper expression is used in Salesforce B2B Commerce pages and components to toggle the display of a block of markup?A . {{#ifStoreSetting 'Field__c'}} ... {{/ifStoreSetting}}B . {{#ifSetting 'Page.cfg}} ... {{/ifSetting}}C . {{#ifConfig 'Field__c'}} ... {{/ifConfig}}D . {{#ifDisplay 'Page.cfg'}} ... {{/ifDisplay}}View AnswerAnswer: D
Which two statements are true regarding the cc_CallContext class in Salesforce B2B Commerce? (2 answers)
Which two statements are true regarding the cc_CallContext class in Salesforce B2B Commerce? (2 answers)A . The Salesforce session is accessible via theget Session methodB . The class can be used internally within Salesforce B2B Commerce and in subscriber code to access context level parametersC . The user Locale variable...
What is a best practice when passing query parameters from user interface to an apex controller?
What is a best practice when passing query parameters from user interface to an apex controller?A . Query parameters should be properly sanitized by using JSINHTMLENCODE within the VisualForce Page or Component.B . String parameters should be trimmed using String.trim().C . Query parameters should be passed only to Salesforce B2B...
Which three actions are applicable when extendinga default Salesforce B2B Commerce page via a page include? (3 answers)
Which three actions are applicable when extendinga default Salesforce B2B Commerce page via a page include? (3 answers)A . Create a Service Class override to query the new page include.B . Create the VisualForce page you wish to include to the Salesforce b2B Commerce page.C . Prepend "c." to the...
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_invoiceto handle custom business logic post Order processingC . Use cc_hk_Order.placeTarget to define a new Order Confirmation page which executes additional business...