Show TOC

Syntax documentationRFC_PARAMETER Locate this document in the navigation structure

Use

The structure

Syntax Syntax

  1. typedef struct {
  2. 	void * name;
  3. 	unsigned nlen;
  4. 	unsigned type;
  5. 	unsigned leng;
  6. 	void * addr;
  7. } RFC_PARAMETER;
End of the code.

provides RFC parameters. It describes 'Exporting' and 'Importing' parameters of a function module.

This structure is defined in SAPRFC.H.

Members:
  • name

    name of the field (in the interface definition of the function)

  • nlen

    length of the name (should be strlen(name))

  • type

    data type of the field

  • leng

    length of the field in bytes

  • addr

    address of the field to be exported or imported

See also RFC_CHAR, RFC_NUM, RFC_BYTE, RFC_BCD, RFC_INT, RFC_INT1, RFC_INT2, RFC_FLOAT, RFC_DATE, and RFC_TIME.