Page 2502 Extension Marketplace
- App
- System Application
- Namespace
- System.Apps
- Versions
- 17-27, not in 28
- Obsolete
- Pending 24.0, seen from 24. This page will be obsoleted. Microsoft AppSource apps feature will replace the Extension Marketplace.
Versions171819202122232425262728
Source in 27
src/System Application/App/Extension Management/src/ExtensionMarketplace.Page.al44 lines, Copyright (c) Microsoft Corporation. MIT
#if not CLEAN25
// ------------------------------------------------------------------------------------------------
// 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;
using System.Integration;
/// <summary>
/// Shows the Extension Marketplace.
/// </summary>
page 2502 "Extension Marketplace"
{
Caption = 'Extension Marketplace';
PageType = Card;
ApplicationArea = All;
Editable = false;
ObsoleteState = Pending;
ObsoleteReason = 'This page will be obsoleted. Microsoft AppSource apps feature will replace the Extension Marketplace.';
ObsoleteTag = '24.0';
layout
{
area(Content)
{
usercontrol(Marketplace; WebPageViewer)
{
ApplicationArea = Basic, Suite;
Visible = false;
}
}
}
procedure SetSearchText(Text: Text)
begin
end;
internal procedure SetAppsourceUrl(Url: Text)
begin
end;
}
#endif