I have some issues. We are in On-Prem. We are using version v19 in Sandbox. We are using v21 in Testing. We are still in the implementation phase.
I have a Super role.
In 19.0, I can see all the custom menus that we have created.
In 21.0, I can see only a few of them. I don’t know what the issue is. Please advise.
V19
V21
great :)
I figured out the issue. It is related to permissions. The xmlport numbering was not correct.
This is exactly what I written.
pageextension 50100 "Admin RC Ext-9006" extends "Administrator Role Center"
{
Caption = 'Admin RC Page Extension';
actions
{
addafter("Data Privacy")
{
group("Service Imports")
{
Caption = 'Service Imports';
action("Import Service Header")
{
Caption = 'Import Service Header';
ApplicationArea = All;
RunObject = xmlport "Import Service Header";
Visible = true;
ToolTip = 'Import Service Header';
}
}
}
}
For a new action to add under the group "Service Imports" , this is how I am using, it should work..
pageextension 50006 BusinessManagerExt extends "Business Manager Role Center"
{
actions
{
addafter('xxxx')
{
group("Service Imports")
{
Caption = 'Service Imports';
action("Import Service Header")
{
ApplicationArea = Basic, Suite;
Caption = 'Import Service Header';
Image = Import;
RunObject = Page xxxx;
ToolTip = 'xxxx';
}
}
}
}
}
Regards,
Tanya Kharbanda
Don't forget to help the community by verifying the answer if your question has been answered. It will let others know that the topic has a verified answer
Yes, I have added the Application Area in all of the actions.
Hi,
I hope Application Area is added in all the actions.
Regards,
Tanya Kharbanda
Don't forget to help the community by verifying the answer if your question has been answered. It will let others know that the topic has a verified answer.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,134 Super User 2024 Season 2
Martin Dráb 229,928 Most Valuable Professional
nmaenpaa 101,156