0
0

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.

編集した値を画面の入力値にセットする。

Posted at

したいこと

※自分用(メモとして記述)
編集した値を画面の入力値にセットする。

編集した値を画面の入力値にセットする。

画面の入力値A,Bを取得して、
[A] + [半角スペース] + [B]に編集して画面.Cに出力する。
・画面の入力値A,Bを取得
String p_A = g_pp.g_fv.getValue("A");
String p_B = g_pp.g_fv.getValue("B");
・[A] + [半角スペース] + [B]に編集
String C =p_A + "半角スペース" + p_B;
・画面に出力する。
g_pp.g_fv.setValue("c", c);

画面出力の解説

g_pp.g_fv.setValue("c", c);
g_pp -g_pp[0] -g_fv


[0]←HDR
[1]←HDR
[2]←DTL
だとして
本来は画面指定が必要[g_pp[0]]など、
だが、画面が指定されている場合は指定は不要。

g_ppとは

    PtnParam g_pp プログラム全体に対するパラメータを設定

g_fvとは

    どの画面の形式かを指定
    g_fv 入力値(1件用)。
    g_fv2 入力値(一覧用)。
    g_fv3 入力値(マトリックス用)。
0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?