Which two built-ins will enable you to create the PROD Record Group and repopulate the LOV?

Exhibit:

You created a LOV based upon a three-column Record Group called CUST, which was created at design time. Examine the structure of the CUST Record Group in the exhibit. At run time, the user sometimes requires the LOV to be populated from the PROD Record Group. Which two built-ins will enable you to create the PROD Record Group and repopulate the LOV? (Choose two)

Exhibit:

You created a LOV based upon a three-column Record Group called CUST, which was created at design time. Examine the structure of the CUST Record Group in the exhibit. At run time, the user sometimes requires the LOV to be populated from the PROD Record Group.

Which two built-ins will enable you to create the PROD Record Group and repopulate the LOV? (Choose two)

A.
RETRIVE_LIST(lov_id,’PROD’);

B.
POPULATE_LIST(lov_id, ‘PROD’);

C.
SET_LOV_PROPERTY(lov_id,GROUP_NAME,’PROD’);

D.
CREATE_GROUP_FORM_QUERY (‘PROD’;
‘SELECT P_id, ‘||
‘ date_sold as Date, Name as Desc ‘||
‘ from products ‘ );

E.
CREATE_GROUP_FROM_QUERY (‘PROD’,
‘SELECT P_id as ID, ‘||
‘ Name as Desc, date_sold as Date ‘||
‘ from products ‘ );

F.
CREATE_GROUP_FROM_QUERY (‘PROD’,
‘SELECT rownum as index, P_id as ID, ‘||
‘ Name as Desc, date_sold as Date ‘||
‘ from produts ‘ );



Leave a Reply 0

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