DBA Data[Home] [Help]

APPS.AP_WEB_DFLEX_PKG dependencies on FND_DATE

Line 2228: V_Date := FND_DATE.string_to_date(p_custom_fields_array(i).value,V_Date_Format);

2224:
2225: GetValueSet(p_custom_fields_array(i).value_set,V_ValueSetInfo,V_ValueSetFormat);
2226: IF (V_ValueSetInfo.name = 'FND_STANDARD_DATE') AND (p_custom_fields_array(i).value IS NOT NULL) THEN
2227: V_Date_Format := nvl(icx_sec.g_date_format,icx_sec.getNLS_PARAMETER('NLS_DATE_FORMAT'));
2228: V_Date := FND_DATE.string_to_date(p_custom_fields_array(i).value,V_Date_Format);
2229: IF (V_Date IS NOT NULL) THEN
2230: p_custom_fields_array(i).value := FND_DATE.date_to_canonical(V_Date);
2231: END IF;
2232: -- Bug# 8444154 - Decimal digits of the segment value should be equal to the number precision defined for the value set

Line 2230: p_custom_fields_array(i).value := FND_DATE.date_to_canonical(V_Date);

2226: IF (V_ValueSetInfo.name = 'FND_STANDARD_DATE') AND (p_custom_fields_array(i).value IS NOT NULL) THEN
2227: V_Date_Format := nvl(icx_sec.g_date_format,icx_sec.getNLS_PARAMETER('NLS_DATE_FORMAT'));
2228: V_Date := FND_DATE.string_to_date(p_custom_fields_array(i).value,V_Date_Format);
2229: IF (V_Date IS NOT NULL) THEN
2230: p_custom_fields_array(i).value := FND_DATE.date_to_canonical(V_Date);
2231: END IF;
2232: -- Bug# 8444154 - Decimal digits of the segment value should be equal to the number precision defined for the value set
2233: ELSIF (p_custom_fields_array(i).value_set IS NOT NULL) THEN
2234: begin