DBA Data[Home] [Help]

APPS.PA_PROJECT_CORE1 dependencies on PA_INTERFACE_UTILS_PUB

Line 582: if (x_long_name is NOT NULL and x_long_name <> PA_INTERFACE_UTILS_PUB.G_PA_MISS_CHAR) then

578: This check was causing uniqueness problem in project connect as the MISS CHAR is not taken care. */
579: -- Uniqueness check for long_name name Bug#2638968
580: /*Uncommented the below code for bug 3268727 since unique long name is not taken care
581: in Self Service as it is taken care in forms*/
582: if (x_long_name is NOT NULL and x_long_name <> PA_INTERFACE_UTILS_PUB.G_PA_MISS_CHAR) then
583: x_err_stage := 'check uniqueness for long name '|| x_long_name;
584: status_code :=
585: pa_project_utils.check_unique_long_name(x_long_name,
586: null);

Line 601: if (x_long_name is NULL or x_long_name = PA_INTERFACE_UTILS_PUB.G_PA_MISS_CHAR) then

597: /*Adding the below code for bug 3268727.When the long name is null, we
598: copy the x_project_name into long_name.Hence, when the x_long_name is null, then we check uniqueness for
599: long_name with the parameter of x_long_name*/
600:
601: if (x_long_name is NULL or x_long_name = PA_INTERFACE_UTILS_PUB.G_PA_MISS_CHAR) then
602: x_err_stage := 'check uniqueness for long name '|| x_project_name;
603: status_code :=
604: pa_project_utils.check_unique_long_name(x_project_name,
605: null);