GetEffectiveItem method: Data collection
Syntax
GetEffectiveItem(DateString, SeqNo)
Description
If the component associated with the Component Interface is effective-dated, GetEffectiveItem returns a reference to the closest effective-dated item (row of data) that is less than or equal to the date specified by the DateString. To get an item based on the current effective date, use CurrentItem.
Note:
DateString takes only a string value. You must convert a date variable into a string before you can use it for DateString. You can use the String function to do this.
Parameters
| Parameter | Description |
|---|---|
|
DateString |
Specify the year, month, and day of the effective date that you want to look for. This parameter takes a string value. You can specify the date either as YYYY-MM-DD or MM/DD/YY. |
|
SeqNo |
Specify the sequence number of the effective date that you want to look for. This parameter takes a number value. |
Returns
A reference to an effective-dated item.
Example
&MYCD = &MYCI.EMPL_CHKLST_ITM;
&DSTRING = String(&MYDATE);
&ITEM = &MYDC.GetEffectiveItem(&DSTRING, 1);
Related Topics