What would be the Ground and Expedited shipping prices for an order of a single item with a price of 15.99 and having a weight of 42 with this configuration (assume no active shipping promotions)?
/atg/commerce/pricing/shippingPricingEngine.Properties:
PreCalculators =\
Calculators/GroundshippingCalculator,\
Calculator/ExpiditedShippingCalculator
postCalculators=calculators/MypostCalculator
/atg/commerce/pricing/calculators/GrowthShippingCalculators.proprties:
$class=atg.commerce.pricing.priceRangeShippingCalculator ignoreShippingMethod=false
shippingmethod=Ground
ranges =\
00.00:15.99:4.50,\
16.00:30.99:6.00,\
31.00:40.99:7.25,\
41.00:MAX_VALUE:10.00
/atg/commerce/pricing/calculators/ExpeditedShippingCalculators.proprties:
$class=atg.commerce.pricing.priceRangeShippingCalculator ignoreShippingMethod=false
shippingmethod=Expedited
ranges =\
00.00:15.99:4.50,\
16.00:30.99:6.00,\
31.00:40.99:7.25,\
41.00:MAX_VALUE:10.00
/atg/commerce/pricing/calculators/MyPostCalculators.properties:
$class=atg.commerce.pricing.FixedPriceShippingCalculator AddAmount=true
ignoreShippingMethod=true
shippingmethod=SpecialSurcharge
amount=4.99
A. Ground: 4.50, Expedited: 10.00
B. Ground: 10.00, Expedited: 10.00
C. Ground: 4.99, Expedited: 4.99
D. Ground: 9.49, Expedited: 14.99
How does a component in the ATG Commerce fulfillment module verify that it has privileges to edit a specific part of an order?
A. It uses the CheckPrincipal component.
B. It uses the Fulfillment Pipeline Manager component.
C. It does not perform such verification.
D. It uses the ATG Security Manager Component.
Which three methods are recommended for removing a profile marker from the profile?
A. the "deleteMarkers" method on the atg.markers.userprofiling.ProfileMarkerManager class
B. Use a scenario with tin- "Remove markers from profile" action.
C. Use the ProfileMarkerDmplot.
D. Use the RemoveAllMarkersFromProfileDroplet.
E. Profile markers are automatically deleted at the end of the session.
In a multisite environment, what is the default sharing behavior of user profiles?
A. They are shared across all the sites.
B. They are not shared and hence are separate across the sites.
C. They can be configured into groups that specify the sharing behavior.
D. There is no default behavior. It needs to be custom designed and implemented.
Which three can be used to create valid Nucleus components?
A. any java class
B. any Java class with a public constructor
C. any JavaBean
D. a Java class implementing GenericService
E. a singleton with a private constructor and a getinstance() public method
Which three options are BASE form handlers that provide a clean mechanism to implement a custom form handler?
A. EmptyFormHandler
B. GenericFormHandler
C. CartCheckoutFormHandler
D. ProfileFormHandler
E. TransactionaFormHandler
Which statement about Importing or exporting ATG promotions is true?
A. Promotions can be imported only into the Asset Management instance of ATG.
B. PromotionImportExportintegrator must be used to map the ATG Commerce Promotions with your external system.
C. The list of promotions exported is controlled by either providing the list of IDs of the promotions to be exported OR by providing an RQL query that returns the required list.
D. You can import only PMDL version 2 (ATG 10 promotions) with the ATG Promotions Import/Export API.
E. Import or Export Closeness Qualifiers is not supported by the ATG Promotions Import/Export API.
Identify three key features of Oracle ATG Web Commerce Platform's B2C Commerce module.
A. LiveHelp
B. Abandoned Cart
C. Recovery Purchasing Workflow Management such as support for Purchase Orders and Approvals
D. Pricing and Order engines
E. Scheduled Orders
To encrypt userID cookie, what must you do?
A. Edit property cookieHashKey of/atg/userprofiling/CookieManager.
B. Add encryptionKey on /atg/userprofiling/ProfileTools.
C. Ensure property securityStatus of user is SECURE-SIGNin.
D. Set property secured = true of component CookiePipelineServlet.
Consider the following code snippet:
To get an output of "Joe Bruin", which two methods should the droplet use in the code?
A. getLocalParameter("first") and getLocalParamter("last")
B. getParameter("first") and getLocalParameter("last")
C. getLocalParameter("first") and getParameter("last")
D. getPageParameter("first") and getParameter("last")