Hi Buddies,
In this blog we will see how we can add our custom Headline in Standard Rolecenter Page. In the below scenario i have add my custom Headline and when i click on this, it will root me to my website.
Step-(1) Create a page extension, here i am modifying "Headline RC Business Manager" Rolecenter Page as shown below:
pageextension 50021 "Headline RC BM Ext" extends "Headline RC Business Manager"
{
layout
{
// Add changes to page layout here
addbefore(Control1)
{
field(CustomHeadLine; CustomHeadLine)
{
ApplicationArea = All;
trigger OnDrillDown()
begin
Hyperlink('https://kunalhuria.blogspot.com/');
end;
}
}
}
var
CustomHeadLine: Label 'Welcome to <emphasize> Kunal Blog </emphasize>!!';
}
Here i have initialize Label value which i have to show as a Headline and then added it as a field in layout.
Output:- As you seen in output Headline is coming now on rolecenter page and when you click on "Kunal Blog" this will root you to website URL that i have mentioned in Hyperlink function.
Hope this will help you :)
Thanks for Reading !!!
Comments
Post a Comment