Table 2515 AppSource Product in 28
- App
- System Application
- Namespace
- System.Apps.AppSource
Versions171819202122232425262728latest
Source in 28
src/System Application/App/AppSource Gallery/src/AppSourceProduct.Table.al103 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.Apps.AppSource;
/// <summary>
/// Represents an except of a product definition in AppSource.
/// </summary>
table 2515 "AppSource Product"
{
DataClassification = SystemMetadata;
Access = Internal;
TableType = Temporary;
InherentEntitlements = X;
InherentPermissions = X;
fields
{
field(1; UniqueProductID; Text[200])
{
Caption = 'Unique Product ID';
}
field(2; DisplayName; Text[250])
{
Caption = 'Name';
}
field(4; PublisherID; Text[200])
{
Caption = 'Publisher ID';
}
field(5; PublisherDisplayName; Text[250])
{
Caption = 'Publisher Name';
}
field(6; PublisherType; Text[200])
{
Caption = 'Publisher Type';
}
field(8; RatingAverage; Decimal)
{
Caption = 'Average Rating';
AutoFormatType = 0;
}
field(9; RatingCount; Integer)
{
Caption = 'No. Of Ratings';
}
field(10; ProductType; Text[200])
{
Caption = 'Product Type';
}
field(11; AppID; Guid)
{
Caption = 'Application Identifier';
}
field(12; Popularity; Decimal)
{
Caption = 'Popularity';
AutoFormatType = 0;
}
field(14; LastModifiedDateTime; DateTime)
{
Caption = 'Last Modified Date Time';
}
}
keys
{
key(UniqueID; UniqueProductID)
{
}
key(DefaultSorting; DisplayName, PublisherDisplayName)
{
}
key(Rating; RatingAverage, DisplayName, PublisherDisplayName)
{
}
key(Popularity; Popularity, DisplayName, PublisherDisplayName)
{
}
key(LastModified; LastModifiedDateTime, DisplayName, PublisherDisplayName)
{
}
key(PublisherID; PublisherID, DisplayName, PublisherDisplayName)
{
}
}
fieldgroups
{
fieldgroup(Brick; PublisherDisplayName, DisplayName, Popularity, RatingAverage)
{
}
}
}Fields, 11
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | UniqueProductID | Text[200] | - |
| 2 | DisplayName | Text[250] | - |
| 4 | PublisherID | Text[200] | - |
| 5 | PublisherDisplayName | Text[250] | - |
| 6 | PublisherType | Text[200] | - |
| 8 | RatingAverage | Decimal | - |
| 9 | RatingCount | Integer | - |
| 10 | ProductType | Text[200] | - |
| 11 | AppID | Guid | - |
| 12 | Popularity | Decimal | - |
| 14 | LastModifiedDateTime | DateTime | - |
Keys, 6
| Name | Fields | Obsolete |
|---|---|---|
| UniqueID | UniqueProductID | - |
| DefaultSorting | DisplayName, PublisherDisplayName | - |
| Rating | RatingAverage, DisplayName, PublisherDisplayName | - |
| Popularity | Popularity, DisplayName, PublisherDisplayName | - |
| LastModified | LastModifiedDateTime, DisplayName, PublisherDisplayName | - |
| PublisherID | PublisherID, DisplayName, PublisherDisplayName | - |