CALCDATE

Usage

TIBCO iProcess Workspace (Browser)

TIBCO iProcess Workspace (Windows)

Performs a calculation on a date and returns a new date.

Syntax

CALCDATE (datein, days, weeks, months, years)

where:

datein is the date the calculation is to be performed on and the date is not prior to 01/01/1900 (calcdate will not calculate dates correctly when datein is prior to 01/01/1900).
days, weeks, months, and years are numeric values (positive or negative) which are added to datein.
Note: The calculation is performed according to the current working days configuration.

Returns

date

Examples

TIBCO iProcess Modeler:

CALCDATE(SW_DATE, 0, 0, 1, 0) 

returns today’s date incremented by a month.

TIBCO Business Studio:

IPEDateTimeUtil.CALCDATE(IPESystemValues.SW_DATE, 0, 0, 1, 0);