Show TOC

Object documentationstruct RFC_PARAMETER_DESC Locate this document in the navigation structure

 

 

Structure used to describe a RFC parameter, i.e. it contains the metadata of the parameter.

Structure

Syntax Syntax

  1. typedef struct _RFC_PARAMETER_DESC
  2. {
  3.     SAP_UC const *	name;		 /* parameter name, null terminated string*/
  4.     RFCTYPE		type;		 /* parameter type */
  5.     RFC_TYPE_DESC_HANDLE typeDesc; 
  6.     unsigned	length1;	 /* parameter length in bytes in a non_unicode SAP system */	
  7.     unsigned	length2;	 /* parameter length in bytes in a unicode SAP system */
  8.     unsigned      decimals;
  9.     RFC_DIRECTION direction;	 /* if the parameter is a input, output or both */ 
  10.     SAP_UC const * defaultValue;
  11. }RFC_PARAMETER_DESC,*P_RFC_PARAMETER_DESC;
End of the code.