LS Central version 17.3 was released on February 18, 2021. Here’s an overview of what we have added and improved in the system.
Sunday, 28 February 2021
Saturday, 27 February 2021
Splits multiple email ids in to (List of Text) data type before sending an email notifications to someone through AL code.
EmailSplits('abc@gmail.com;xyz@gmail.com');
SmtpMail: Codeunit "SMTP Mail";
SmtpConf: Record "SMTP Mail Setup";
EmailBody: text;
SmtpMail.CreateMessage('Checking multiple Emails', SmtpConf."User ID",
Receipt, 'Emails ', EmailBody, true);
local procedure EmailSplits(EmaifieldValue: Text[250])
var
PosBgn: Integer;
ValueLength: integer;
PosEnd: Integer;
SplitValue: Text;
begin
PosBgn := 1;
ValueLength := STRLEN(EmaifieldValue);
REPEAT
IF STRPOS(EmaifieldValue, ';') = 0 THEN
PosEnd := ValueLength
ELSE
PosEnd := (STRPOS(EmaifieldValue, ';') - 1);
SplitValue := COPYSTR(EmaifieldValue, PosBgn, PosEnd);
EmaifieldValue := DELSTR(EmaifieldValue, 1, PosEnd + 1);
Receipt.Add(SplitValue);
UNTIL EmaifieldValue = '';
end;
Subscribe to:
Posts (Atom)
Extension Unpublished/Uninstalled history required in BC Production environment
There is a situation when someone can uninstall or unpublish any APP extension from the extension management in Production environment, th...
-
How to General QR Code from NAV 2016 1. Using of Microsoft.Dynamics.Nav.MX.dll, you can find the DLL fine the below path from your installa...
-
I found one of the the method and DLL file which is being used in below code to generate the particular width and height of the QR code in ...
-
AL Code as per below Create New Report with having barcode image. In RDL design add image type control and put the barcod2 variable into tha...