Show TOC

Background documentationfield-transport Macro Locate this document in the navigation structure

 

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.

Syntax Syntax

  1. field-transport.
End of the code.
Parameters

None.

Example

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

Syntax Syntax

  1. 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.
    
End of the code.