MultipleChoice
Business Manager has the configuration:
* Active log category is ''root''
* Log level of INFO
The code below execites:
Var log = Logger.getLogger(''products'',''export'');
Log.info (''This is important information'');
Using this information, what is the beginning of the filename in which the log will be written?
OptionsMultipleChoice
Assume the code below is executing:
Business Manager has the configuration:
* Active Log category is "root" with log level of "info." Given this information, what is the beginning of the filename in which the log will be written?
OptionsMultipleChoice
Given the following conditions:
* Site export file with a copy of the Storefront data for a custom site
* Sandbox with the custom site code, but no Storefront data
* Requirement for a working copy of SFRA for development reference
A developer is assigned the following Business manager tasks:
* A. Import the custom Site using Site Import/Export
* B. Import the SFRA Demo Sites using Site Import/Export
* C. Rebuild the custom Site search indexes
In what sequence should the developer perform the tasks, so that the custom Site displays the products as
intended?
OptionsMultipleChoice
A developer has a sandbox configured with a service and its profile and credential.. Now there is a
requirement to allow changes to the service URL manually from the sandbox.
Which B2C feature should the developer use to achieve the request?
OptionsMultipleChoice
Given the following conditions:
* Site export file with a copy of the Storefront data for a custom site
* Sandbox with the custom site code, but no Storefront data
* Requirement for a working copy of SFRA for development reference
A developer is assigned the following Business manager tasks:
*
OptionsMultipleChoice
A Digital Developer selects ''Show Orderable Products Only'' in the Search > Search Preferences Business Manager module.
Which business goal does this accomplish?
OptionsMultipleChoice
Universal Containers specifies a new category hierarchy for navigating the digital commerce storefront. A Digital Developer uses Business Manager to manually create a catalog with the specified category hierarchy, then uses the Products & Catalogs > Import & Export module to export the catalog as a file.
How can other Developers with sandboxes on the same realm create the same catalog in their own sandboxes?
OptionsMultipleChoice
Which three object types can a developer import using the Merchant Tools > Content > Import & Export module in Business Manager? (Choose three.)
OptionsMultipleChoice
Given the following ISML example, how should a developer reference the product object in the current
iteration of the basket?
<isloop tems =''${pdict.Basket.products}'' var=''product'' status= ''loopstatus''>
...
</isloop>
OptionsMultipleChoice
To ensure SFRA best practices and protect against request forgery, the developer introduced CSRF token
generation in the customer address form:
<form ... action = ''submit''>
<input name =''${dw.web.CSRFProtection.getTokenName()}''
value = ''${dw.web.CSRFProtection.generateToken()''>
...
<the rest of the Form fields>
...
</form>
To implement CSRF protection when the form is submitted, the developer needs to introduce the CSRF
validation using one or both of these methods as applicable:
* validateRequest
* validateAjaxRequest
Where in the code does the developer need to add this CSRF validation check?
Options