Show TOC

Object documentationstruct RFC_FIELD_DESC Locate this document in the navigation structure

 

 

Structure used to describe a field inside a structure, i.e. It contains the metadata of the field.

Structure

Syntax Syntax

  1. typedef struct _RFC_FIELD_DESC
  2. {
  3. 	SAP_UC const*	name;		/* field name, null terminated string */
  4. 	RFCTYPE		type;		/* field type */
  5. 	unsigned    decimals;
  6. 	unsigned	length1;	/* field length in bytes in a non_unicode SAP system */
  7. 	unsigned	offset1;	/* field offset in bytes in a non_unicode SAP system */
  8. 	unsigned	length2;	/* field length in bytes in a unicode SAP system */
  9. 	unsigned	offset2;	/* field offset in bytes in a unicode SAP system */
  10. 	RFC_TYPE_DESC_HANDLE typeDesc;  /* pointer to a RFC_STRUCTURE_DESC structure for the
  11.                                         nestesd sub-structure or embedded table if the field type
  12.                                         is RFCTYPE_STRUCTURE or RFCTYPE_TABLE */
  13. 	unsigned char include_flag;  /* a flag indicating the beginning or the end of a included
  14.                                         structre */ 
  15.        unsigned       length;       /* actual length for STRING and XSTRING types */
  16. }RFC_FIELD_DESC,*P_RFC_FIELD_DESC;
  17.  
End of the code.