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 from PageReference.getParameters().
B. Executing dynamic SOQL inside a without sharing class with a bind variable from the UserInfo class.
C. Executing dynamic SOQL inside a without sharing class with a bind variable from PageReference.getCookies().
D. Executing dynamic SOQL inside a without sharing class with a bind variable from cc_RemoteActionContentex class.
E. Executing dynamic SOQL inside a without sharing class with a bind variable from ccAPI.CURRENT_VERSION.
In which three ways should useful debugging information in Salesforce B2B Commerce implementation be garnered? (3 answers) A) Enabling the logging token via
A. Admin andsubsequently inspecting the logs via the browser console.
B. Logging a case with Salesforce support to enable advanced debugging options.
C. Enabling debugging options for the current user and visually inspecting the Salesforce debug logs.
D. Placing a System.debug() statement anywhere in the class being debugged.
E. Logging into the community as a system administrator to identify any potential permissions or Visualforce exceptions.
Which method is used to override when extending the Salesforce B2B Commerce logic providers?
A. doLogic
B. process
C. doAction
D. fetch
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 User Trace Flag.
D. Append #ccLog=
E. There is no need to manually set a cookie to debug with the Site Guest User.
Why is the use of a standard Visualforce control such as apex:form discouraged in Salesforce B2B Commerce page includes and subscriber pages?
A. Visualforce "scopes" controls that are present on a page and scope of the control will be set to "ccrz"
B. Apex:form render DOM components slowly
C. The CCRZ Javascript object is not accessible within an apex:form control.
D. Javascript events are not supported within an apex:form control
What are two guidelines for logging that are used within the core Salesforce B2B Commerce product? (2 answers)
A. Items or data within computational intensive loops shouldbe logged.
B. The close method of ccrz.ccLog must be called at the end of the remote action.
C. No calls to ccrz.ccLog can be made before cc_CallContext.initRemoteContext is executed.
D. It is okay to log any data on the server that is already logged on the client side.
Which format is the custom Salesforce field with the API name "My_Fiels_Name__c" transformed onto by default in Salesforce B2B Commerce?
A. MyFieldName
B. myFieldName
C. myfieldname
D. My_Field_Name__c
Which service method should be overridden in order to allow "without sharing" queries?
A. ccrz.ccService.queryWithoutSharing()
B. ccrz.ccAPI.queryService()
C. ccrz.ccService.query()
D. ccrz.ccService.initSVCDAO()
Which two aspects are applicable to Page Includes? (2 answers)
A. Standard Visualforce controls such as apex:form should not be used within a page include
B. Page Includes must be assigned to an OOTB Page, i.e. Home, Product Detail, etc., and enabled
C. Page Includes can be configured as Body Includes Begin.
D. If a controller is used for an included page, then a merge variable must be present on the page.
What are the templating, Javascript, and CSS frameworks what the cloudcraze managed package leverages?
A. Angularjs, Backbonejs, and handlebarsjs
B. Bootstrap, Backbonejs, and handlebarsjs
C. Bootstrap, Angularjs, and Backbonejs
D. Angularjs, react.js, and handlebarsjs
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 not used.
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_invoice tohandle custom business logic post Order processing
C. Use cc_hk_Order.placeTarget to define a new Order Confirmation page which executes additional business logic.
D. Modify or add custom Cart formula fields to handle logic.
E. Use Process builder to implement business processes that execute when an Order record is created.
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 Commerce Backbone Views and Models.
C. Salesforce B2B Commerce relies on a central event channel for communication across various Salesforce B2B Commerce Backbone Views and Models called CCRZ.pubSub.
D. CCRZ.pubSub defines the following three functions which can be used for event handling: trigger, on, and once.
E. CCRZ.pubSub extends the Backbone.Events JavaScript object.
How do the REST APIs in Salesforce B2B Commerce support pass-through parameter handling
A. An exception is generated for unknown API keys
B. Parameters are passed through the service handlers
C. Parameters are filtered out before the request is processed
D. Parameters are separated, but unused
Inwhich three different ways can a theme be enabled in Salesforce B2B Commerce? (3 answers)
A. A Storefront setting
B. An Account Group field value
C. A per user setting
D. Account
E. Dynamically through a hook