Show TOC

Object documentationenum RFC_DIRECTION Locate this document in the navigation structure

 

Enumeration used for indicating the direction of a RFC function parameter.

Structure

Syntax Syntax

  1. typedef enum _RFC_DIRECTION
  2. {
  3. 	RFC_IN = 0x0001,	/* input parameter, corresponding to ABAP IMPORTING parameter */
  4. 	RFC_OUT= 0x0002,	/* output parameter, corresponding to ABAP EXPORTING parameter */
  5. 	RFC_INOUT = RFC_IN | RFC_OUT /* input and output parameters, this is corresponding to ABAP 
  6.                                     CHANGING or TABLES parameter */
  7. }RFC_DIRECTION;
End of the code.