Identify two ways in which Nucleus components can be configured.
A. using the JMX console of the application server
B. using the BCC
C. manually editing the properties files
D. using the Dynamo Administration UI at /dyn/admin
E. using the ATG Component Configuration Helper Utility
F. using an XML editor
Correct Answer: CE
The application developer creates the slot as a Nucleus component. He or she can do this in three ways:
by writing a .properties file; by using the Component Editor in the ATG Control Center; or by using the Scenarios > Slots window in the ATG Control Center.
Question 42:
You've made the following category assignments to your catalogs.
Which categories will be displayed if a call is made on allRootCategories on catalog B?
Catalog A:
rootCategories = category1, category2
Catalog B:
rootCategories = category3, category4
rootSubCatalogs = CatalogA
A. category1, category2, category3, catcgory4
B. category3, category4 only
C. category3, category4 are included, category1 and category2 may be included based on configuration of catalog B.
D. category3, category4 are included, category1 and category2 may be included based on configuration of Catalog A.
Correct Answer: A
allRootCategories lists of all the root categories in the catalog, including the allRootCategories in the rootSubCatalogs. This is used for display purposes.
Note: Displaying Root Categories
Typically, a catalog home page displays a list of root categories. Unlike other categories, root categories cannot be found through the childCategories property of other categories. Root categories are those that appear in the allRootCategories property of the user's catalog.
Question 43:
What should be done to mark the delivery of a shipping group as shipped?
A. Update the state of the shipping group repository item to SHIPPED.
B. Invoke the shippingGroupHasShipped method on HardgoodFulfiller.
C. Update the state of the order to SHIPPED.
D. No action necessary. Shipping group status is not tracked in ATG.
E. Update the state of the shipping group repository item to PENDING_MCRCHANT_ACTION.
Correct Answer: A
Notifying Fulfillment of Order Shipment On the Fulfillment Administration page, you can view all the shipping groups in the repository that are ready to be shipped. The Shippable Groups section at the top of the page includes a link that retrieves all shipping groups that are ready to be shipped. After viewing the list, you can also use this screen to notify fulfillment that a shipping group has been shipped. Follow these steps to view a list of shipping groups and notify fulfillment that the shipping groups have been shipped:
Oracle ATG Web Commerce displays a list of all shipping groups with a PENDING_SHIPMENT status. A JMS message is sent notifying the fulfillment system the specified groups were shipped.
Question 44:
Identify two benefits that the ATG Repository provides.
A. maps a POJO Java Class to a database table using annotations in the class
B. provides a consistent API that connects to a wide variety of data sources
C. allows for custom connectors to be written to new data sources
D. provides a persistent data storage space for site data
E. provides a shopping cart to check out and buy products stored in it
Correct Answer: BD
B: Data access is a large part of most Internet applications. ATG Data Anywhere ArchitectureTM provides a unified view of content and data across a business for organizations and their customers. The core of the ATG Data Anywhere Architecture is the Repository API. Through the Repository API, you can employ a single approach to accessing disparate data types, including SQL databases, LDAP directories, content management systems, and file systems.
D: ATG Data Anywhere Architecture provides access to relational database management systems, LDAP directories, and file systems using the same interfaces. This insulates application developers from schema changes and also storage mechanism. Data can even move from a relational database to an LDAP directory without requiring recoding. Java Data Objects support data source independence, but it is up to vendors to provide an LDAP implementation.
Question 45:
Which Form Handler and Droplet are used to approve or reject an order that is in PENDING_ APPROVAL state?
A. CommitOrderFormHandler, ApprovalRequiredDroplet
B. ApprovalFormHandler, ApprovalRequiredDroplet
C. ApprovalSubFormHandler, ApprovalRequiredDroplet
D. CommitOrderFormHandler, ProcessApprovalDroplet
Correct Answer: B
*
Order Approval Form Handler
The OrderApprovalFormHandler (the atg.commerce.csr.approvals.order class) generates the order approval within the UI and extends the EnvironmentChangeFormHandler. This form handler provides handlers for both approving, handleApprove, and rejecting, handleReject, an approval request. It also contains e-mail templates for approvals and rejections.
*
The ApprovalRequiredDroplet servlet bean supports the order approval process by retrieving all orders requiring approval by a given approver. It queries the order repository and returns all orders that meet the wing two criteria:
The order's authorizedApproverIds property contains the approver's ID.
The state of the order requires approval, meaning that the state is defined in the ApprovalRequiredDropletorderStatesRequiringApproval property. The order's state is held by the property of the order that is specified in the
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.
Correct Answer: C
Flow of control defines which components have privileges to edit different parts of the order. The basic premise is that once a component has control over a part of the order, only this component should edit this part of the order.
ATG Commerce does not verify that a component has the privileges to edit a specific part of an order. ATG Commerce does not perform this verification because if the system is distributed, orders might be modified with a different system.
Question 47:
Which actions will enable you to add now properties to a SKU? (select one)
A. Create an XML file and add its location to the XML list in the Product Catalog repository.
B. Create an XML file in /atg/commerce/catalog/custom/customCatalog.xml and load it via the CONFIGPATH.
C. Create a new column in table dcs_sku. ATG will automatically add this new property.
D. Create a new property to the SKU object using the BCC in the context of a project and deploy it to production.
E. ATG does not let you add new properties to an SKU.
Correct Answer: B
ATG Add Custom properties to SKU
*
One step of an example is: Extend the Order Repository Definition File
Extend the Order Repository definition file, orderrepository.xml, to add the new properties in MyCommerceItemImpl to the existing commerceItem item descriptor. In this example, the new property to add is the shortDescription property.The orderrepository.xml file is found in the CONFIGPATH at /atg/commerce/order/orderrepository.xml. To extend the file, create a new orderrepository.xml file at /atg/commerce/order/ in your localconfig directory. The new file should define the shortDescription property for the commerceItem item descriptor. During startup, the ATG platform uses XML file combination to combine the orderrepository.xml files in the CONFIGPATH into a single composite XML file.
*
Another step Modify the OrderTools Configuration FileThe OrderTools component controls many aspects of the purchase process, such as mapping between commerce object types and class names, defining the default commerce object types, and mapping between commerce objects and item descriptors. You need to modify the OrderTools configuration file to support the new MyCommerceItemImpl class and myCommerceItem item descriptor.To modify the OrderTools configuration file, layer on a configuration file by creating an OrderTools.properties file at/atg/commerce/order/ in your localconfig directory
Note: SKU Items and SKU Links
A product is a navigational end-point in the catalog. However, customers do not actually purchase the product; they purchase a SKU (stock keeping unit). A product can have several different SKUs associated with it, representing varieties, sizes, and colors.
The properties of a SKU are used for display purposes, similar to products and category properties. The properties are also used to integrate with other ATG Commerce systems, such as pricing and fulfillment.
Question 48:
In the item descriptor provided, what is the column book_index used for?
A. It is used for storing the database index of the books table.
B. It is used for storing the sequence of books by the author.
C. It is used to store the primary key of the prj_book_author table as the author_id column is not unique.
D. It is a reference to auxiliary table not present in this item descriptor that stores the values.
E. It is a legacy field and not used.
Correct Answer: B
The multi-column-name attribute ensures that the ordering of the multi-values are maintained. The column specified by the multi-column-name attribute is used for multi-valued properties of data type array, map, and list and is not used for sets (which are unordered). For map type properties, the values in the column specifiedy by the multi-column-name attribute must be a string. For list or array type properties, these values should be an integer or numeric type, and must be sequential.
Question 49:
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.
Correct Answer: B
Example:
property name="gender" data-type="enumerated"> In the above property example, with useCodeForValue
set to false, then if you get the gender property, the string male or female is returned. With useCodeForValue set to true, then the integer code 0 or 1 would be returned instead.
Note: Enumerated Properties
Properties of repository items can have a data type of enumerated. Enumerated properties are string properties constrained to a predefined list of valid values and stored as integer codes in the database.
Question 50:
Identify two functions of the Nucleus.
A. Nucleus resolves component names to components.
B. Nucleus provides commerce-specific functionality such as catalog and cart.
C. Nucleus creates and initializes components.
D. Nucleus provides application logging capability such as debug, warning, info, error, and trace
Correct Answer: AC
A: Nucleus performs one basic operation: resolving component names. Given the name of a component, Nucleus does its best to find or create that component and return it.
C: Name resolution is not a difficult task. Nucleus shows its real power by creating components and hooking them up to other components automatically. This function is invoked when Nucleus is asked to resolve a name of a component that does not yet exist. In this case, Nucleus looks for the appropriate configuration file that describes how to create that component and any other components that it requires.
Note: Nucleus is the Dynamo Application Framework's component model for building applications from JavaBeans. Nucleus lets you assemble applications through simple configuration files that specify what components are used by the application, what parameters are used to initialize those components, and how those components hook up to each other. The ATG Control Center Components window provides a handy way to create, modify, and manage Nucleus components.
Nucleus by itself provides no application-specific functions. The JavaBean components implement all of an application's functionality. Nucleus is the mechanism that gives those components a place to live, and a way for those components to find each other.
Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Oracle exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 1Z0-510 exam preparations and Oracle certification application, do not hesitate to visit our Vcedump.com to find your solutions here.