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

Add ADLSE CurrentSession API page #143

Merged
Merged
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
38 changes: 38 additions & 0 deletions businessCentral/app/src/CurrentSessionAPI.Page.al
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License. See LICENSE in the project root for license information.
page 82571 "ADLSE CurrentSession API"
{
PageType = API;
APIPublisher = 'bc2adlsTeamMicrosoft';
APIGroup = 'bc2adls';
APIVersion = 'v1.1';
EntityName = 'adlseCurrentSession';
EntitySetName = 'adlseCurrentSessions';
SourceTable = "ADLSE Current Session";
InsertAllowed = false;
DeleteAllowed = false;
ModifyAllowed = false;
ODataKeyFields = SystemId;

layout
{
area(Content)
{
repeater(GroupName)
{
field(tableId; Rec."Table ID") { }
field(sessionId; Rec."Session ID") { }
field(companyName; Rec."Company Name") { }
field(sessionUniqueId; Rec."Session Unique ID") { }
field(id; Rec.SystemId)
{
Editable = false;
}
field(systemRowVersion; Rec.SystemRowVersion)
{
Editable = false;
}
}
}
}
}
Loading