Examine this PeopleCode snippet: &Date = ORDER.DATE; Select the object-oriented equivalent.

Examine this PeopleCode snippet:
&Date = ORDER.DATE;
Select the object-oriented equivalent.

Examine this PeopleCode snippet:
&Date = ORDER.DATE;
Select the object-oriented equivalent.

A.
&Field = CreateField();&Date = &Field(ORDER.DATE);

B.
&Date.GetValue = ORDER.DATE;

C.
&Date = GetValue(ORDER.DATE);

D.
&Field = GetField(ORDER.DATE);&Date = &Field.Value;

E.
&Field.Value = GetField(ORDER.DATE);

Explanation:



Leave a Reply 0

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