field-transport Macro

Use

You use the field-transport macro to send all data accumulated by field-set calls to the ITS during PBO. The data is sent synchronously.

You have to do this, because context field assignments with field-set are first buffered on the application server for performance reasons.

field-transport.
         

Parameters

None.

Example

When you have processed the internal table matinfo with field-set, you can send the data to the ITS:

data counter type i.
   counter = 1.
   loop at matinfo.
      field-set 'matinfo-matno' counter matinfo-matno.
      field-set 'matinfo-qty'   counter matinfo-qty.
      field-set 'matinfo-desc'  counter matinfo-desc.
      add 1 to counter.
   endloop.
   field-transport.