Page 1 of 1

The Customer Orders page uses data from the ITEM table to perform price calculations.You decide to write a PeopleCode pr

Posted: Sun Jun 11, 2023 3:56 pm
by answerhappygod
The Customer Orders page uses data from the ITEM table to perform price calculations.You decide to write a PeopleCode program to create a stand-alone rowset that will load data from the ITEM table into the data buffer. Select three PeopleCode statements that can be used with stand-alone rowsets. (Choose three.)

A. &RS_Item = GetRowSet(SCROLL.ITEM);
B. &RS_Item = CreateRowSet(RECORD.ITEM);
C. &Price = &RS_Item(&i).ITEM.PRICE.Value;
D. &RS_Item.Select("Where ITEM = :1", CUST_ORDER.ITEM); E. &RS_Item.Fill("Where CUST_TYPE = :1", CUST_ORDER.TYPE); F. &RS_Item = ScrollSelect(1,Scroll.ITEM, Record.ITEM, ("Where CUST_TYPE = :1", CUST_ORDER. CUST_TYPE);