75only - Ends in 0d 00h 00m 00s - Coupon code = 75only
Pass the Salesforce Developers Comm-Dev-101 Questions and answers with Dumpstech
The developer needs to add custom category debug logging into the " contact " script, to ensure that a third-party service call responds as expected.
Assuming that the logging configurations for the contact category are correctly in place, which line of code should the developer add in the 06 placeholder to meet this requirement?
01varLogger=require( ' dw/system/Logger ' );
02varservice=dw.svc.LocalServiceRegistry.createService( ' contact.http.submit ' ,options);
03varserviceResponse=service.call(requestJSON);
04
05if(serviceResponse.ok) {
06// Insert logging code here
07}
Given a NewsletterSubscription custom object that has a key attribute named email of type String, what is the correct syntax to create the NewsletterSubscription custom object?
What action meets the requirement to show washing instructions for a clothing product?
Which method should a developer use to create a service instance that will call a remote web service?
Which ISML tag should a developer use to avoid code repetition in common header and footer layout?
Which object type can a developer import using the Merchant Tools > Content > Import & Export module in Business Manager?
There is a business requirement to allow a third-party warehouse management system to update the MySample.com storefront product inventory in real time. The architect decided that this is most easily accomplished by using the Open Commerce API (OCAPI). The developer needs to test the OCAPI settings in their sandbox. Assume the client ID for testing is " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa " . What is the correct OCAPI setting for this?
Recent code changes to an existing cartridge do not appear correctly on a Storefront. The developer confirms that the code is uploaded in the IDE and ensures that the cartridge is associated with the sandbox.
After checking the Storefront site cartridge path, which step should the developer take to troubleshoot this problem?
Given the following OCAPI definitions, which permission or permissions apply?
{
" resource_id " : " /sites/*/coupons/* " ,
" methods " :[
" put "
],
" read_attributes " : " (**) " ,
" write_attributes " : " (**) "
}
Below is a form definition snippet from the newsletter.xml file:
< ?xmlversion= " 1.0 " ? >
< formxmlns= " http://www.demandware.com/xml/form/2008-04-19 " >
< fieldformid= " email " label= " Email: " type= " string "
mandatory= " true " max-length= " 50 " / >
< /form >
Which line of code creates a JSON object to contain the form data?