How would you create a list of value for CustomerStatusCode?

Valid customer status codes for an application are contained in the StatusCode attribute of a
CustomerStatus view object. In the Customers view object, the CustomerStatusCode attribute
should be selected from a drop-down list. How would you create a list of value for
CustomerStatusCode?

Valid customer status codes for an application are contained in the StatusCode attribute of a
CustomerStatus view object. In the Customers view object, the CustomerStatusCode attribute
should be selected from a drop-down list. How would you create a list of value for
CustomerStatusCode?

A.
Create a view link for CustomerStatus. Define the list and display attributes and define that list
attribute UI Hints.

B.
Define the CustomerStatus list data source and list attribute. Define a display attribute and map
the status code attribute to the CustomerStatusCode attribute.

C.
Create a transient attribute in the Customers view object. Define the value of the
customerstatusCode attribute using Groovy, and set the display type of the attribute to list.

D.
Define the Customers list data source. Define the statuscode display attribute and the list return
values, and set the value type for the statuscode attribute to list.

E.
Create a view link for CustomerStatus. Define the WHERE clause for the Customers view
object to include the corresponding list attributes from both view objects. Set the value type of the
CustomerStatusCode attribute to list.

Explanation:



Leave a Reply 3

Your email address will not be published. Required fields are marked *


Abdullah

Abdullah

B.
Define the CustomerStatus list data source and list attribute. Define a display attribute and map the status code attribute to the CustomerStatusCode attribute.

Jithin Kuriakose

Jithin Kuriakose

the most efficient way is not in the Options.

Out of the 5 options, correct one is

B.
Define the CustomerStatus list data source and list attribute. Define a display attribute and map
the status code attribute to the CustomerStatusCode attribute.