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...
What is appended to the subquery name as part of its transformation by default in Salesforce B2B Commerce?
A query containing a subquery is executed. What is appended to the subquery name as part of its transformation by default in Salesforce B2B Commerce?A . A subscriber-supplied tokenB . "__ccrz"C . The "*" symbolD . The letter "S"View AnswerAnswer: B Explanation: A query containing a subquery is executed. By...
What is true regarding adding more Configuration Settings to Salesforce B2B Commerce?
What is true regarding adding more Configuration Settings to Salesforce B2B Commerce?A . Metadata can be added to existing modules, but you cannot add new modules.B . Configuration settings can only be extended through API'sC . Select "New"in your storefront's Configuration Settings and create a custom setting.D . More modules...
What are two ways to check the input or return data of the Global API's?
The ccUtil apex class in Salesforce B2B Commerce provides numerous utility functions that can be leveraged in subscriber classes. What are two ways to check the input or return data of the Global API's? (2 answers)A . ccrz.ccUtil.isNotEmpty(Map<String, Object>) andccrz.ccUtil.isNotEmpty(List<Object>)B . ccrz.ccUtil.isNotValid(Map<String, Object>) andccrz.ccUtil.isNotValid(List<Object>)C . ccrz.ccUtil.isValid(Map<String, Object>) and ccrz.ccUtil.isValid(List<Object>)D ....
What are three ways to test the value of Page Label on any Salesforce B2B Commerce Community Page? (3 answers)
What are three ways to test the value of Page Label on any Salesforce B2B Commerce Community Page? (3 answers)A . Access the source HTML for the page viathe browser developer tools.B . Execute CCRZ.pagevars.pageLabels['PAGE_LABEL_NAME') in the JavaScript console.C . Execute CCRZ.processPageLabelMap('PAGE_LABEL_NAME') in the JavaScript console.D . Enable the 'display...
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...
What is default behavior for how theSalesforce B2B Commerce Global APIs transform Salesforce data?
What is default behavior for how theSalesforce B2B Commerce Global APIs transform Salesforce data?A . Fields names are returned using the Salesforce naming convention.B . Fields names are returned with „c." prepended in their name.C . Fields names are returned with a lowercase first letter,camelcase conventionD . Fields names can...
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 leverage a three columnlayout on a page. The user also wants to move the mini-cart widget from the right to the center column. How can this requirement be fulfilled?A . Gross Layout OverrideB . Subscriber TemplateC . Page IncludeD . HandleBar Template OverrideView AnswerAnswer: A Explanation:...
What are three advantages of using ccLog over the Salesforce standard System.debug class? (3 answers)
What are three advantages of using ccLog over the Salesforce standard System.debug class? (3 answers)A . There is no need to use string concatenation to easily tag log statements with a subject.B . ccLog can debug syntax errors found in the JavaScript.C . There is no need to create a...