| 1Z0-242 Exam |
| 1Z0-242 - Exam Information |
| Question of the day |
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.)
Answer(s)
&RS_Item = CreateRowSet(RECORD.ITEM);
&Price = &RS_Item(&i).ITEM.PRICE.Value;
&RS_Item.Fill("Where CUST_TYPE = :1", CUST_ORDER.TYPE);