ユーザーをインスタンス URL から /login_locate_sso.do ページにリダイレクトする方法Summary<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } 一部のお客様は、URLを開くときに http://instance.service-now.com 複数のIDPがある場合に自動的に http://instance.service-now.com/login_locate_sso.do にリダイレクトされることを望むかもしれません。 Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } すべてのインスタンスに適用可能 Instructions<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } これはカスタムコードであり、最初に準本番インスタンスで試す必要があります。これは、外部ログインページの削除に関連しています。 スクリプトインクルードを作成します - たとえば、「redirectToLoginLocateSSO」という名前の関数を使用して、以下のように PreLoginScript という名前が付けられます var PreLoginScript = Class.create();PreLoginScript.prototype = {initialize: function() {},redirectToLoginLocateSSO: function() { return "/login_locate_sso.do"; },type: 'PreLoginScript'}; システムプロパテ - glide.entry.page.script の値を以下のように更新します。 new PreLoginScript().redirectToLoginLocateSSO(); インスタンス URL を開くと、ユーザーは http://instance.service-now.com/login_locate_sso.do にリダイレクトされます。 注意: glide.entry.page.script システムプロパティで、 SPEntryPage() に値が設定されている場合、上記の値に置き換えられます。そこに両方は存在できません。