Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
// ------------------------------------------------------------------------------------------------
namespace Microsoft.QualityManagement.Setup.SetupGuide;

using Microsoft.QualityManagement.RoleCenters;
using Microsoft.QualityManagement.Setup.ApplicationAreas;
using Microsoft.QualityManagement.Utilities;
using System.Environment;
Expand Down Expand Up @@ -54,22 +53,18 @@ page 20438 "Qlty. Management Setup Guide"
group(LetsGoText)
{
Caption = 'Let''s go!';
InstructionalText = 'Select the link below to open the Quality Manager Role Center in a new browser tab and follow the guided tours.';
InstructionalText = 'Select the link below to open the Quality Manager Role Center and follow the guided tours.';
}
field(LetsGoLink; LetsGoLinkLbl)
field(SettingsLink; SettingsLinkLbl)
{
Caption = 'Open the Quality Manager Role Center';
Caption = 'Open My Settings';
ShowCaption = false;
ToolTip = 'Open Quality Management Role Center and checklist in a new browser tab.';
ToolTip = 'Open My Settings';
Editable = false;
ApplicationArea = QualityManagement;

trigger OnDrillDown()
var
TargetURL: Text;
begin
TargetURL := GetUrl(ClientType::Web, CompanyName, ObjectType::Page, Page::"Qlty. Manager Role Center") + URLProfileLbl;
Hyperlink(TargetURL);
Page.Run(Page::"User Settings");
end;

}
Expand All @@ -81,17 +76,17 @@ page 20438 "Qlty. Management Setup Guide"
{
area(Processing)
{
action(Finish)
action(Done)
{
ApplicationArea = QualityManagement;
Caption = 'Finish';
ToolTip = 'Finish';
Caption = 'Done';
ToolTip = 'Done';
InFooterBar = true;
Image = Approve;
Image = Close;

trigger OnAction();
begin
FinishAction();
DoneAction();
end;
}
}
Expand All @@ -104,8 +99,7 @@ page 20438 "Qlty. Management Setup Guide"
TopBannerVisible: Boolean;
MainPageVisible: Boolean;
QualityManagementTok: Label 'Quality Management', Locked = true;
LetsGoLinkLbl: Label 'Open the Quality Manager Role Center';
URLProfileLbl: Label '&profile=QLTY.%20MANAGER', Locked = true;
SettingsLinkLbl: Label 'Open My Settings';

trigger OnInit();
begin
Expand All @@ -118,7 +112,7 @@ page 20438 "Qlty. Management Setup Guide"
FeatureTelemetry.LogUptake('0000QIC', QualityManagementTok, Enum::"Feature Uptake Status"::Discovered);
end;

local procedure FinishAction();
local procedure DoneAction();
var
GuidedExperience: Codeunit "Guided Experience";
QltyApplicationAreaMgmt: Codeunit "Qlty. Application Area Mgmt.";
Expand Down
Loading