Skip to content

Commit

Permalink
Add ADLSE CurrentSession API page
Browse files Browse the repository at this point in the history
  • Loading branch information
Bertverbeek4PS committed May 24, 2024
1 parent 8547b4c commit e706221
Showing 1 changed file with 38 additions and 0 deletions.
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;
}
}
}
}
}

0 comments on commit e706221

Please sign in to comment.