Skip to main content

Posts

Showing posts from January, 2023

Addon Custom Headline in Standard Rolecenter Page in Business Central

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 ha