Hi,
Currently we have 3 themes. We use the Master rules to indicate what desktop to see.
Here is a rule in the Master rule collection:
IF Role = pcd:portal_content/ContentforTellabs/CRM/Roles/CRMALL
THEN Rule Collection = pcd:portal_content/Tellabs_Content/Rule_Collections/ESS
#As you can see we then call a rule collection. That rule collection is:
IF Role = pcd:portal_content/ContentforTellabs/ESS/Roles/Employee_Self_Service_1
THEN Portal Desktop = pcd:portal_content/Tellabs_Content/CRM_ESS/CRM_ESS_DSKP
#Basically a summary of the above, it is saying if user has the role Employee_Self_service_1 call ESS rule collection.
Within the rule collection is checking to see if user has the CRMALL role, if so show CRM_ESS_DSKP.
#Basically this code says if the user has the ESS role and CRMALL role, show CRM_ESS_DSKP.
Is there a way i can add a third role in there? Basically if the user has the ESS role, CRMALL role and the SalesNet role? Can i call a rule collection within the rule collection?