DBA Data[Home] [Help]

APPS.WMS_TASK_FILTER_PKG dependencies on FND_API

Line 432: -- Translate a true null value to fnd_api.g_miss_char

428: db_ludate date; -- entity update date in db
429:
430: begin
431:
432: -- Translate a true null value to fnd_api.g_miss_char
433: -- Note table handler apis should be coded to treat
434: -- fnd_api.g_miss_* as true nulls, and not as no-change.
435: if (X_TASK_FILTER_DESCRIPTION = fnd_load_util.null_value) then
436: L_TASK_FILTER_DESCRIPTION := fnd_api.g_miss_char;

Line 434: -- fnd_api.g_miss_* as true nulls, and not as no-change.

430: begin
431:
432: -- Translate a true null value to fnd_api.g_miss_char
433: -- Note table handler apis should be coded to treat
434: -- fnd_api.g_miss_* as true nulls, and not as no-change.
435: if (X_TASK_FILTER_DESCRIPTION = fnd_load_util.null_value) then
436: L_TASK_FILTER_DESCRIPTION := fnd_api.g_miss_char;
437: else
438: L_TASK_FILTER_DESCRIPTION := X_TASK_FILTER_DESCRIPTION;

Line 436: L_TASK_FILTER_DESCRIPTION := fnd_api.g_miss_char;

432: -- Translate a true null value to fnd_api.g_miss_char
433: -- Note table handler apis should be coded to treat
434: -- fnd_api.g_miss_* as true nulls, and not as no-change.
435: if (X_TASK_FILTER_DESCRIPTION = fnd_load_util.null_value) then
436: L_TASK_FILTER_DESCRIPTION := fnd_api.g_miss_char;
437: else
438: L_TASK_FILTER_DESCRIPTION := X_TASK_FILTER_DESCRIPTION;
439: end if;
440: