The following are valid alias references?
-
%purchasing.manager%
-
%purchasing%.manager
-
@purchasing.manager%
-
%manager
Reveal answer
Fill a bubble to check yourself
D
Correct answer
Explanation
In PRPC, alias references use the % symbol. A simple single-segment alias like %manager is valid. Multi-segment aliases require the format %group.segment%, so options A and B are incorrect. Option C uses @ instead of %, which is not valid alias syntax.
AI explanation
%manager is a valid alias/wildcard reference because it uses the wildcard prefix correctly to match anything ending in 'manager'. The other forms either place the wildcard incorrectly mid-pattern or use an invalid leading symbol (@) that isn't recognized as a wildcard character in this alias syntax.