Show TOC Start of Content Area

Object documentationstruct RFC_FUNCTION_DESC  Locate the document in its SAP Library structure

Use

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

Structure

typedef struct _RFC_FUNCTION_DESC

{

    SAP_UC const* name;    /*function name*/

    RFC_PARAMETER_DESC *parameters; /*an arry of RFC_PARAMETER_DESC in which each

                                            element describes a parameter of the function*/

    unsigned   count;         /* number of parameters */

    unsigned short type;             /* 0 - classic RFC, 1 - BAsXML */

}RFC_FUNCTION_DESC,*P_RFC_FUNCTION_DESC;

 

 

End of Content Area