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.
A.
&Pos = &RS_Level1.&I.EMP.Role.Value;
B.
&Pos = &RS_Level1(&I).EMP.Role.Value;
C.
&Pos = &Row_Level1(&I).EMP.Role.Value;
D.
&Pos = &Row_Level1(RECORD.EMP).Role.Value;
E.
&Pos = &RS_Level1.Row_Level1.Rec_EMP.Role.Value;
Explanation: