fake-xrm-easy icon indicating copy to clipboard operation
fake-xrm-easy copied to clipboard

In Fiscal Year operator has been added but other fiscal year / period condition operators are missing

Open jordimontana82 opened this issue 5 years ago • 0 comments

 ThisFiscalYear = 58,
    //
    // Summary:
    //     The value is within the current fiscal period. Value = 0x3b.
    ThisFiscalPeriod = 59,
    //
    // Summary:
    //     The value is within the next fiscal year. Value = 60.
    NextFiscalYear = 60,
    //
    // Summary:
    //     The value is within the next fiscal period. Value = 0x3d.
    NextFiscalPeriod = 61,
    //
    // Summary:
    //     The value is within the last fiscal year. Value = 0x3e.
    LastFiscalYear = 62,
    //
    // Summary:
    //     The value is within the last fiscal period. Value = 0x3f.
    LastFiscalPeriod = 63,
    //
    // Summary:
    //     The value is within the last X (specified value) fiscal periods. Value = 0x40.
    LastXFiscalYears = 64,
    //
    // Summary:
    //     The value is within the last X (specified value) fiscal periods. Value = 0x41.
    LastXFiscalPeriods = 65,
    //
    // Summary:
    //     The value is within the next X (specified value) fiscal years. Value = 0x42.
    NextXFiscalYears = 66,
    //
    // Summary:
    //     The value is within the next X (specified value) fiscal period. Value = 0x43.
    NextXFiscalPeriods = 67,
    //
    // Summary:
    //     The value is within the specified year. Value = 0x44.
    InFiscalYear = 68,
    //
    // Summary:
    //     The value is within the specified fiscal period. Value = 0x45.
    InFiscalPeriod = 69,
    //
    // Summary:
    //     The value is within the specified fiscal period and year. Value = 70.
    InFiscalPeriodAndYear = 70,
    //
    // Summary:
    //     The value is within or before the specified fiscal period and year. Value = 0x47.
    InOrBeforeFiscalPeriodAndYear = 71,
    //
    // Summary:
    //     The value is within or after the specified fiscal period and year. Value = 0x48.
    InOrAfterFiscalPeriodAndYear = 72,

jordimontana82 avatar Jan 28 '20 01:01 jordimontana82