Skip to main content

Making My Notifications Tile Available in Role Center

The following dependency to the "Advanced Notifications" app must be added in your own app.

{
"appId": "8fb0cbae-4869-4685-be37-1184995a1826",
"publisher": "dedomind GmbH",
"name": "Advanced Notifications",
"version": "1.0.0.0 -- the currently installed version of the app"
}

Then the following snippet can be used to extend an existing role center with the new tile.

pageextension 50001 "AN Account Role Center" extends "Accountant Role Center"
{
layout
{
addafter(ApprovalsActivities)
{
part(UnreadNotificationsCue; "AN Unread Notifications Cue")
{
ApplicationArea = All;
}
}
}
}

The tile is already available in the following role centers:

  • "Accountant Role Center"
  • "Business Manager Role Center"
  • "Job Project Manager RC"
  • "Sales & Relationship Mgr. RC"

Help