What is one way of preventing anexisting payment page from being shown on the checkout payment page?
A configuration value, CO.NewOrder, is set to TRUE. What is one way of preventing anexisting payment page from being shown on the checkout payment page?A . Delete the Visualforce page from the code base.B . Remove the value matching the page name from the pmt.whitelist configurationsetting, then rebuild and activate...
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...
What is the default Global API DataSizing convention flag that is used by theAPI's unless otherwise specified?
Numerous flags, when set, have a direct impact on the result set provided by the Global API's. What is the default Global API DataSizing convention flag that is used by theAPI's unless otherwise specified?A . CCRZ.ccPAI.SZ_XLB . CCRZ.ccPAI.SZ_MC . CCRZ.ccPAI.SZ_LD . CCRZ.ccPAI.SZ_SView AnswerAnswer: B Explanation: The default Global API Data-Sizing...
What Global API Data-Sizing convention flag prevents an API request from propagating to further requests when provided as a Boolean parameter with a value of true?
Numerous flags ... have a directimpact on the result set provided by the Global API's. What Global API Data-Sizing convention flag prevents an API request from propagating to further requests when provided as a Boolean parameter with a value of true?A . ccrz.ccAPI.SZ_RELB . ccrz.ccAPI.SZ_ASSCC . ccrz.ccAPISizing.ASSCD . ccrz.ccAPISizing.RELView AnswerAnswer:...
How can the display of CC Menu Items be customized for different users?
How can the display of CC Menu Items be customized for different users?A . cc_hk_Category extension to pre-process which category items are cached as menu itemsB . cc_hk_Menu extension to post-process any cached menu itemsC . cc_hk_Menu extension to pre-process which menu items are cachedD . cc_hk_Category extension to post-process...
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...