Welcome to Community Week 2025! Join us to learn, connect, and be recognized as we celebrate the spirit of Community and the power of AI. Get the details  

MRVS(Multi Row Variable Set)から他のMRVS(Multi Row Variable Set)を参照することはできますか

Nakayama
Tera Contributor

カタログにMRVS-AとMRVS-Bの2つのMRVSがあります。
MRVS-Aで入力した値をMRVS-Bの項目の入力選択肢に表示したい。
このようにMRVSから他のMRVSを参照することはできますか?

2件の返信2

Brad Bowman
Kilo Patron
Kilo Patron

You can use

g_service_catalog.parent.getValue('mrvs_internal_name')

in a script, not a reference qualifier, in MRVS-B to get the JSON value of MRVS-A.  You could then parse the JSON and add each value of a variable in MRVS-A to a choice list in a select box variable in MRVS-B or something like that.  Give the script a shot and post your progress if you get stuck.

 

Let's see how Google Translate does in reverse:

使用できます

g_service_catalog.parent.getValue('mrvs_internal_name')

MRVS-B の参照修飾子ではなくスクリプトで、MRVS-A の JSON 値を取得します。次に、JSON を解析し、MRVS-A の変数の各値を MRVS-B などのセレクト ボックス変数の選択リストに追加します。スクリプトを試してみて、行き詰まった場合は進捗状況を投稿してください。

 

Shiyō dekimasu g _ service _ catalog. Pearento. GetValue (' mrvs _ intānaru _ name') MRVS - B no sanshō shūshokushide wanaku sukuriputo de, MRVS - A no jeison-chi o shutoku shimasu. Tsugini, jeison o kaiseki shi, MRVS - A no hensū no kaku-chi o MRVS - B nado no serekuto bokkusu hensū no sentaku risuto ni tsuika shimasu. Sukuriputo o tameshite mite, ikidzumatta baai wa shinchoku jōkyō o tōkō shite kudasai.

Hello, Brad Bowman

I would try g_service_catalog.parent.getValue('mrvs_internal_name').
thank you.