ServiceNow getRowCount() レコードの件数を取得するサンプル

2024年10月14日

概要
getRowCount()
データベースのテーブル上ではなく、その時点でquery()等によって
抽出・コピーされている表の行数を返します。

サンプルコード

var incidentGR = new GlideRecord('incident');
incidentGR.query();
gs.print(incidentGR.getRowCount());

 

ServiceNow

Posted by arkgame