(Choose two.)

Examine this PeopleCode snippet:
Local Rowset &RSCUST, &RSSTUD;
&RSCUST = GetRowset(RECORD.CUST_TBL);
&RSSTUD = CreateRowset(RECORD.STUDENT_TBL);
&RSCUST.CopyTo(&RSSTUD, RECORD.CUST_TBL, RECORD.STUDENT_TBL);
Select the two correct statements. (Choose two.)

Examine this PeopleCode snippet:
Local Rowset &RSCUST, &RSSTUD;
&RSCUST = GetRowset(RECORD.CUST_TBL);
&RSSTUD = CreateRowset(RECORD.STUDENT_TBL);
&RSCUST.CopyTo(&RSSTUD, RECORD.CUST_TBL, RECORD.STUDENT_TBL);
Select the two correct statements. (Choose two.)

A.
&RSCUST is a stand-alone rowset object that references the rows in PS_CUST_TBL.

B.
&RSSTUD is a stand-alone rowset object that references the rows in PS_STUDENT_TBL.

C.
&RSCUST is a rowset object that references the component buffer data for the CUST_TBL
record.

D.
&RSCUST is a stand-alone rowset object based on the structure of the CUST_TBL record
definition.

E.
&RSSTUD is a rowset object that references the component buffer data for the STUDENT_TBL
record.

F.
&RSSTUD is a stand-alone rowset object based on the structure of the STUDENT_TBL record
definition.



Leave a Reply 0

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