How to change Caption or Name of existing Field in D365 BC

Change Caption or Name of existing Field in D365 BC:

Step 01: For changing the name or caption of the field in the Base Application object in Dynamics 365 Business Central. Use “Modify” syntax.

Step 02: Let’s take an example. Take the “Posting Date” field of the Sales order and change its name to “Invoice Date”. As shown below.

field of sales order change to invoice date in business central
modify(“Posting Date”)
{
Caption = ‘Invoice Date’;
}

Step 03: Publish the extension. Below is the result.

change name of existing field in business central

Issue in Installing AL Symbol in VS editor [Solved]
How to add field in existing Table using extension In D365 BC
How to display Value of RECORDID Data Type in Page in BC D365
Caption Property– Microsoft Docs

Leave a Reply