mht_brerp10
.adempiere
Tables
(current)
Columns
Constraints
Relationships
Orphan Tables
Anomalies
Routines
add_months(timestamp with time zone, numeric)
Parameters
Name
Type
Mode
datetime
timestamp with time zone
IN
months
numeric
IN
Definition
BEGIN if datetime is null or months is null then return null; end if; return datetime + (interval '1' month * TRUNC(months)); END;