Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/24.23 #131

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .AL-Go/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"businessCentral\\test"
],
"bcptTestFolders": [],
"repoVersion": "24.23"
"repoVersion": "24.24"
}
2 changes: 1 addition & 1 deletion businessCentral/app/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"publisher": "The bc2adls team",
"brief": "Sync data from Business Central to the Azure storage",
"description": "Exports data in chosen tables to the Azure Data Lake and keeps it in sync by incremental updates. Before you use this tool, please read the SUPPORT.md file at https://github.com/microsoft/bc2adls.",
"version": "24.23.0.0",
"version": "24.24.0.0",
"privacyStatement": "https://go.microsoft.com/fwlink/?LinkId=724009",
"EULA": "https://go.microsoft.com/fwlink/?linkid=2009120",
"help": "https://go.microsoft.com/fwlink/?LinkId=724011",
Expand All @@ -27,7 +27,7 @@
],
"internalsVisibleTo": [
{
"publisher": "Microsoft",

Check warning on line 30 in businessCentral/app/app.json

View workflow job for this annotation

GitHub Actions / Build . (Default) / . (Default)

PTE0012 The InternalsVisibleTo setting will expose your internal objects to any extension with the given name, publisher, and ID. Access modifiers are not designed to be used as a security boundary, but for API development.
"name": "Tests-TestLibraries",
"id": "5d86850b-0d76-4eca-bd7b-951ad998e997"
},
Expand Down
15 changes: 15 additions & 0 deletions businessCentral/app/src/FieldAPI.Page.al
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,21 @@ page 82567 "ADLSE Field API"
SetActionResponse(ActionContext, Rec.SystemId);
end;

[ServiceEnabled]
procedure Enable(var ActionContext: WebServiceActionContext)
var
SelectedADLSEField: Record "ADLSE Field";
begin
CurrPage.SetSelectionFilter(SelectedADLSEField);
if SelectedADLSEField.FindSet(true) then
repeat
SelectedADLSEField.Validate(Enabled, true);
SelectedADLSEField.Modify(true);
until SelectedADLSEField.Next() = 0;
SetActionResponse(ActionContext, Rec.SystemId);
end;


local procedure SetActionResponse(var ActionContext: WebServiceActionContext; AdlsId: Guid)
var
begin
Expand Down
2 changes: 1 addition & 1 deletion businessCentral/test/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "03486619-1622-4261-ae0e-b366b3c96e3c",
"name": "Azure Data Lake Storage Export Tests",
"publisher": "The bc2adls team",
"version": "24.23.0.0",
"version": "24.24.0.0",
"brief": "Tests for Azure Data Lake Storage Export",
"description": "Tests for Azure Data Lake Storage Export",
"privacyStatement": "",
Expand Down
Loading