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...
What is a valid way of referencing the CC Cart Object whose API name is E_Cart__c in a SOQL query?
What is a valid way of referencing the CC Cart Object whose API name is E_Cart__c in a SOQL query?A . _Cart__cB . c.E_Cart__cC . ccrz__E_Cart__cD . cloudcraze__E_Cart__cView AnswerAnswer: C Explanation: A valid way of referencing the CC Cart Object whose API name is E_Cart__c in a SOQL query is...
In which threeways can Salesforce B2B Commerce API sizing blocks support multiple API sizing requests? (3 answers)
In which threeways can Salesforce B2B Commerce API sizing blocks support multiple API sizing requests? (3 answers)A . When different entities are specified in the method invocation.B . The sizing block is not removed.C . SZ_ASSC is used.D . The sizing block is removedafter the first handler.E . SZ_ASSC is...
Which command will return the value in the given Map if found or a default value in the event that the Map is null, empty, or an object is not found for that key?
The ccUtil apex class in Salesforce B2B Commerce provides numerous utility functions that can be leveraged in subscriber classes. Which command will return the value in the given Map if found or a default value in the event that the Map is null, empty, or an object is not found...
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 three statements are true regarding extending ccServiceProduct and exposing custom fields on the Product Detail Page?
Salesforce B2B leverages global API's for encapsulating business logic into blocks that can be extended and modified by subscribers. Which three statements are true regarding extending ccServiceProduct and exposing custom fields on the Product Detail Page? (3 answers)A . Override the getFieldsMap method and add subscriber specific code.B . Ensure...