Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

     define field(#source) type(*string) length(10)
define field(#target) type(*string) length(10)

この例では、#target は " abc " に設定されます。には "       abc" が設定されます。

     #source := "abc"
#target := #source.RightAdjust

この例では、#target には "xxabc" に設定されます。が設定されます。

     #source := "abc"
#target := #source.RightAdjust( 5, "x" )

...