DBA Data[Home] [Help]

APPS.WMS_PAGE_TEMPLATES_PKG dependencies on FND_API

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

458: db_ludate date; -- entity update date in db
459:
460: begin
461:
462: -- Translate a true null value to fnd_api.g_miss_char
463: -- Note table handler apis should be coded to treat
464: -- fnd_api.g_miss_* as true nulls, and not as no-change.
465: if (X_TEMPLATE_DESCRIPTION = fnd_load_util.null_value) then
466: l_TEMPLATE_DESCRIPTION := fnd_api.g_miss_char;

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

460: begin
461:
462: -- Translate a true null value to fnd_api.g_miss_char
463: -- Note table handler apis should be coded to treat
464: -- fnd_api.g_miss_* as true nulls, and not as no-change.
465: if (X_TEMPLATE_DESCRIPTION = fnd_load_util.null_value) then
466: l_TEMPLATE_DESCRIPTION := fnd_api.g_miss_char;
467: else
468: l_TEMPLATE_DESCRIPTION := X_TEMPLATE_DESCRIPTION;

Line 466: l_TEMPLATE_DESCRIPTION := fnd_api.g_miss_char;

462: -- Translate a true null value to fnd_api.g_miss_char
463: -- Note table handler apis should be coded to treat
464: -- fnd_api.g_miss_* as true nulls, and not as no-change.
465: if (X_TEMPLATE_DESCRIPTION = fnd_load_util.null_value) then
466: l_TEMPLATE_DESCRIPTION := fnd_api.g_miss_char;
467: else
468: l_TEMPLATE_DESCRIPTION := X_TEMPLATE_DESCRIPTION;
469: end if;
470: