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 Type | Field | Description |
|---|---|---|
| ESSG_ULONG_T | usLinkObjType | Object type |
| ESSG_USERNAME_T | userName | Name of the last user to modify the object |
| ESSG_TIME_T | LastUpdate | Last date the object was modified ESSG_TIME_T is defined as an unsigned long |
| ESSG_LROINFO_T | lroInfo | LRO information structure, associated by union |
| ESSG_CHAR_T | Note[ESSG_LRONOTELEN] | A cell note, associated by union The default note length specified by ESSG_LRONOTELEN is 599. |