Show TOC

Object documentationstruct RFC_FUNCTION_DESC Locate this document in the navigation structure

 

 

Structure used to describe the interface of a RFC function, i.e. It contains the metadata of the RFC function.

Structure

Syntax Syntax

  1. typedef struct _RFC_FUNCTION_DESC
  2. {
  3.     SAP_UC const* name;		/*function name*/
  4.     RFC_PARAMETER_DESC *parameters;	/*an arry of RFC_PARAMETER_DESC in which each
  5.                                             element describes a parameter of the function*/
  6.     unsigned	count;			/* number of parameters */ 
  7.     unsigned short type;             /* 0 - classic RFC, 1 - BAsXML */
  8. }RFC_FUNCTION_DESC,*P_RFC_FUNCTION_DESC;
  9.  
End of the code.