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