Versions Compared

Key

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

Pinpoint changes

...

Simple assignment mappings are great for pinpoint changes. Simply, use the equal sign to assign values

...

The most basic mapping statement looks like this:

.

Assign a static value:

Code Block
OutboundMessage.nodepath =

...

Of course, you can also assign static values:

 “Smith”

Assign a value from another message:

Code Block
OutboundMessage.nodepath =

...

 InboundMessage.nodepath

Assign the result of a function:

For example, you could call a function performing Code Set Lookups.

Code Block
OutboundMessage.nodepath =

...

 SomeFunction()

...