DBA Data[Home] [Help]

APPS.INV_LOT_SEL_ATTR dependencies on DUAL

Line 1212: FROM dual;

1208: IF(l_segments.default_type(j) = 'D') THEN
1209: /* Get the Value of the Current Date */
1210: SELECT SYSDATE
1211: INTO l_date
1212: FROM dual;
1213: ELSIF(l_segments.default_type(j) = 'C') THEN
1214: /* Constant Value is default */
1215: --l_date := to_date(l_segments.default_value(j),L_default_format);
1216: l_date := fnd_date.canonical_to_date(l_segments.default_value(j));

Line 1417: FROM DUAL;

1413: END IF;
1414: IF (l_precision >0) THEN
1415: SELECT round(x_lot_serial_attributes(x).column_value, l_precision)
1416: INTO x_lot_serial_attributes(x).column_value
1417: FROM DUAL;
1418: END IF;
1419: IF (l_debug=1) THEN
1420: debug('column_value1 = ' || x_lot_serial_attributes(x).column_value, l_module_name, l_debug_level);
1421: END IF;