Date Component

Fnd_Date_YearMonthDayToDate

Fnd_Date_YearMonthDayToDate (year; month; day) -> Date

Legacy manual page 68

Parameters

ParameterTypeDescription
year (2 or 4 digits)LongintYear to be converted to a date
monthLongintMonth to be converted to a date
dayLongintDay to be converted to a date
Function resultDateConverted date

Description

This function returns the date equivalent of the year, month and day passed.

$date_d:=Fnd_Date_YearMonthDayToDate (2001;12;3)
Extracted source text
            Fnd_Date_YearMonthDayToDate (year; month; day) ➜ Date

              Parameter                         Type                     Description
              year (2 or 4 digits)              Longint                  Year to be converted to a date
              month                             Longint                  Month to be converted to a date
              day                               Longint                  Day to be converted to a date
              Function result                   Date                     Converted date

            This function returns the date equivalent of the year, month and day passed.
              $date_d:=Fnd_Date_YearMonthDayToDate (2001;12;3)