Page History
...
define field(#source) type(*string) length(10)
define field(#target) type(*string) length(10)
この例では、#target は には " abc" に設定されます。が設定されます。
#source := "abc"
#target := #source.RightAdjust
この例では、#target は には "xxabc" に設定されます。が設定されます。
#source := "abc"
#target := #source.RightAdjust( 5, "x" )
...