Examine this PeopleCode snippet: &Row_Level1 = &RS_Level1(&I); &Rec_EMP = &Row_Level1.EMP; &Fld_Role = &Rec_EMP.Role; &Pos = &Fld_Role.Value; Select the option that correctly combines these four statements into one valid PeopleCode statement.
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 correct statement.