A personal archive of PeopleSoft-related tips and tricks.
Five-line code
If &Color = "Blue" And &Pet = "Dog" Then &Flag = True; Else &Flag = False; End-If;
can be converted to one line
&Flag = (&Color = "Blue" And &Pet = "Dog");
&Flag is TRUE if both conditions are true.
False otherwise.
No comments:
Post a Comment