ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 28 - AD0-E330 discussion

Report
Export

A customer located in Canada requested that any Adobe Campaign Classic operator located outside of Canada should not be allowed to see the recipient schema. All operators that are not located in Canada have been assigned the right 'OutsideCountry.' Which configuration will hide the display of the recipient's last name for operators located outside Canada?

A.

<attribute name='lastName' assessableIf='HasNamedRight('OutsideCountry')=true'/>

Answers
A.

<attribute name='lastName' assessableIf='HasNamedRight('OutsideCountry')=true'/>

B.

<attribute name='lastName' assessableIf='HasNamedRight=='OutsideCountry''/>

Answers
B.

<attribute name='lastName' assessableIf='HasNamedRight=='OutsideCountry''/>

C.

<attribute name='lastName' assessableIf='HasNamedRight('OutsideCountry')=false'/>

Answers
C.

<attribute name='lastName' assessableIf='HasNamedRight('OutsideCountry')=false'/>

D.

<attribute name='lastName' assessableIf='HasNamedRight!='OutsideCountry''/>

Answers
D.

<attribute name='lastName' assessableIf='HasNamedRight!='OutsideCountry''/>

Suggested answer: C

Explanation:

In Adobe Campaign Classic, to control the visibility of specific attributes based on user rights, you can use the assessableIf attribute within the schema. In this case, operators outside of Canada have been assigned the OutsideCountry right, so the configuration should check if the operator does not have this right to display the last name:

Logic for assessableIf:

The condition HasNamedRight('OutsideCountry')=false ensures that only operators who do not have the OutsideCountry right (i.e., those located within Canada) will have access to view the lastName attribute. This restricts operators outside of Canada, as required by the configuration.

Using correctly enforces the access restriction, making the lastName field inaccessible to non-Canadian operators.

asked 25/10/2024
Ragul Ponniah
41 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first