ESSG_LRODESC_T

Contains information describing a specific object linked to a data cell in an Essbase database. The fields are described as follows:

typedef struct ESSG_LRODESC_T
{
   ESSG_USHORT_T    usLinkObjType;
   ESSG_USERNAME_T  Username;
   ESSG_TIME_T      LastUpdate;
   union
      {
         ESSG_LROINFO_T  lroInfo;
         ESSG_CHAR_T     Note[ESSG_LRONOTELEN];
      } lro;
} ESSG_LRODESC_T, *ESSG_LPLRODESC_T;
Data TypeFieldDescription
ESSG_ULONG_TusLinkObjTypeObject type
ESSG_USERNAME_TuserNameName of the last user to modify the object
ESSG_TIME_TLastUpdate

Last date the object was modified

ESSG_TIME_T is defined as an unsigned long

ESSG_LROINFO_TlroInfoLRO information structure, associated by union
ESSG_CHAR_TNote[ESSG_LRONOTELEN]

A cell note, associated by union

The default note length specified by ESSG_LRONOTELEN is 599.