
NOTE: THIS PTE COULD BE APPLIED SUCCESFULLY WITH THE FOLLOWING VERSIONS.
This very simple Per Tenant Extension (PTE) will introduce a new action called “Use SDK 9.1” on Page 5330 “Microsoft Dynamics 365 Connection Setup”.
pageextension 50109 CRMConnectionSetupExt extends "CRM Connection Setup"
{
actions
{
addafter("Test Connection")
{
action(UseSdk91)
{
ApplicationArea = All;
Image = Setup;
Caption = 'Use SDK 9.1';
ToolTip = 'Sets SDK version 9.1.';
trigger OnAction()
begin
Rec.Validate("Proxy Version", 91);
Rec.Modify();
CurrPage.Update(false);
end;
}
}
}
}
By clicking on the action, it will update “Proxy Version” value to SDK 9.1 and, more important, also update the connection string, stored in a BLOB, accordingly.
SDK 9.1 will skip call to Regional Discovery Services (RDS) by default.