Show TOC

struct RFC_FUNCTION_DESCLocate this document in the navigation structure

Definition
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;