4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ServiceNow-Navigationメニューの追加方法

Last updated at Posted at 2021-09-22

簡単なことをかく動機

Self-Serviceのクエリ条件を確認したかったため、navigation menuのレコード情報を見ようとしたら完全に度忘れしていた自分に対する備忘録。

Step1:テーブルに移動

System Definition > Application Menus
にてsys_app_applicationに移動する。

Step2:レコードの検索

Titleにself-serviceと入力して対象レコードを絞る

Step3:レコードの確認

self-serviceの関連リストであるmoduleに「自分の要求」=My Requestレコードがあるのでそれのクエリ条件を見る。
task テーブルのクエリ条件が下記のもの。

&sysparm_fixed_query=sys_idINjavascript:getMyRequestIDs()
あるいは下記
opened_by=javascript:gs.user_id()^EQ

user_idの紐づけが当然ある。これを開発、検証、本番とroleが違うところでどう試していくのかは別問題。

以上

参考記事
https://docs.servicenow.com/bundle/rome-platform-user-interface/page/administer/navigation-and-ui/task/t_CreateAModule.html

4
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?