Create Custom Snippet VScode

{"Add Comment": {  "prefix": "TriComment",  "body": [    "//TRI ${1:Your Name here} $CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE $CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND ${2|+,-,Start,End,++|}"  ],  "description": "TRI Add Comment" ...
Continue Reading...

Batch Request in Business Central APIs

 When calling Business Central APIs you do one operation at a time. For example, you can only insert or modify one customer, or create one sales invoice. With deep inserts, it is possible to create header and lines together, and then you can create multiple lines. But that’s only possible on the line records, you still create one header...
Continue Reading...

Function for Split Text With Maximum Characters Without Damaging Words – AL / C/AL

 local procedure TrySplitTextWithoutDamagingWords(FullText: Text; MaximumCaractorLength:Integer; var MaximumText: Text; var RemainingText: Text) IsRemainingToSplit: Boolean    var        SpcPos: Integer;        MaxSpcPos: Integer;        CheckText: Text;    begin        FullText := DelChr(FullText, '<>', ' '); ...
Continue Reading...

Send Email – Dynamic Contents

...
Continue Reading...

Isolated Storage instead of Service Password table

Storing passwords directly in a table is a bad idea from a security point of view. For secure storage of passwords, the Service Password system table was previously used. In Business Central 15.0, it has been removed.We are offered to use a new data type - Isolated Storage. Here we'll look at a practical example of using this functionality to store passwords securely.Suppose that we have a table and a setup page, the user...
Continue Reading...