You are creating a primary table and an auxiliary table for an Item descriptor in the versioned schema. What are the properties that must be added to the tables?
A. You only need to add asset_version to both the tables.
B. You need to add asset_version to both the tables. in addition, the primary table required seven other columns, such as version_editable, version_deleted, etc.
C. You need to add asset_version to both the tables. in addition, the auxiliary table requires seven other columns, such as version_editable, version_deleted, etc.
D. You need to add asset_version and seven other columns, such as version_editable, version deleted to both the tables.
E. You need to add asset, version to the primary table and seven columns, such as version_editable, version deleted, etc. to the auxiliary tables.
F. You need to add seven columns, such as version_editable, version deleted, etc. to the primary table and only asset_version to the auxiliary table.
Your site supports configurable commerce Items and you want to enable price list based pricing. How would you configure the /atg/commerce/pricing/ItemPricingEngine?
A. preCalculators=\calculators/ItemListPriceCalculator,\calculators/ConfigurableItemPriceCalculator
B. preCalculators=\calculators/ItemPriceListCalculator,\calculators/ConfigurableItemPriceListCalculators
C. preCalculators=\calculators/ItemPriceListCalculator
D. preCalculators=\atg.commerce/pricing/calculators/ItemListPricecalculator
What is the name of the property in the customer profile that contains a list of PromotionStatus Repository Items?
A. customerPromotions
B. activePromotions
C. globalPromotions
D. usedPromotions
Which XML file(s) are loaded by the component/atg/commerce/catalog/ProductCatalog?
A. /atg/commerce/catalog/custom/customCatalog.xml only
B. /atg/commerce/catalog/custom/customCatalog.xml, /atg/commerce/pricing/pricingModels.xml
C. /atg/commerce/catalog/custom/customCatalog.xml, /atg/commerce/pricelists.xml
D. All XMLs that are listed in the XML list of the product catalog component
Based on the property definition below, what are the possible values returned by the transaction Type property?
value = "true"/>
A. 1, 2, or 3
B. 999, 998, or 997
C. credit, debit, or purchase
D. 999, 998, and 997 are reserved numbers in ATG and hence cannot be used in enum.
E. Credit, debit, and purchase are reserved names in ATG and hence cannot be used in enum.
Which item descriptor in the SiteRepository is used to define Site Categories?
A. siteConfiguration
B. siteTemplate
C. siteGroup
D. siteCategory
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
If you want to access the list of the customer's active and global promotions, which pricing will you use?
A. PricingEngine
B. PricingTools
C. PricingModelHolder
D. PricingCalculator
What role does the Qualifier play in ATG Commerce?
A. It extends Scheduler to reload qualified global promotions.
B. It determines if any Item qualifies for the discount and which pieces should receive the discount.
C. It qualifies the item and then applies the discount to the item.
D. It's a collection class attached to the ItemPricingEngine with a list of qualified items.
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")