4

ABAPのあるレポートから別のレポートにユーザー名を渡す必要があります。

私は次のコードを使用しています。

   SUBMIT zpgm_to WITH fld_pgm2 eq fld_pgm1 .

'zpgm_to'は、値を渡さなければならない場所へのレポートです。

'fld_pgm2'は、レポートzpgm_toのフィールドです。

'fld_pgm1'は、渡される値を含むレポートzpgm_fromのフィールドです。

デバッグを使用しているときに、値がzpgm_toレポートに渡されていないことがわかりました。どこでミスをしたのかわかりませんでした。誰かが以前にこの問題を越えた場合、plsは必要なことをします。

4

2 に答える 2

2

I can' t see a problem in your example code.

If you have a typo in fld_pgm2 and you use an undefined parameter, the syntax check does not report an error.

Please try the extended syntax check:

  1. Program->Check->Extended Syntax Check
  2. Check if External program interfaces is checked.
  3. Run the check. If there is a typo, you get an error ___ is not a parameter or a select option in report ___
于 2012-04-19T09:18:37.820 に答える