DBA Data[Home] [Help]

APPS.CS_CORE_UTIL dependencies on FND_CLIENT_INFO

Line 1057: fnd_client_info.set_org_context(p_org_id);

1053: FROM dual;
1054:
1055: IF (p_org_id IS NOT NULL) THEN
1056: -- Set the multi-org context using p_org_id
1057: fnd_client_info.set_org_context(p_org_id);
1058: END IF;
1059:
1060: -- Validate against hr_employees_current_v, which contains all active
1061: -- employees assigned to the business group stored in

Line 1077: fnd_client_info.set_org_context(l_orig_org_id);

1073: **********/
1074:
1075: IF (p_org_id IS NOT NULL) THEN
1076: -- Restore the original multi-org context
1077: fnd_client_info.set_org_context(l_orig_org_id);
1078: END IF;
1079: EXCEPTION
1080: WHEN no_data_found THEN
1081: x_return_status := fnd_api.g_ret_sts_error;

Line 1084: fnd_client_info.set_org_context(l_orig_org_id);

1080: WHEN no_data_found THEN
1081: x_return_status := fnd_api.g_ret_sts_error;
1082: IF (p_org_id IS NOT NULL) THEN
1083: -- Restore the original multi-org context
1084: fnd_client_info.set_org_context(l_orig_org_id);
1085: END IF;
1086: add_invalid_argument_msg(p_api_name, p_employee_id, p_parameter_name);
1087: WHEN OTHERS THEN
1088: IF (p_org_id IS NOT NULL) THEN

Line 1090: fnd_client_info.set_org_context(l_orig_org_id);

1086: add_invalid_argument_msg(p_api_name, p_employee_id, p_parameter_name);
1087: WHEN OTHERS THEN
1088: IF (p_org_id IS NOT NULL) THEN
1089: -- Restore the original multi-org context
1090: fnd_client_info.set_org_context(l_orig_org_id);
1091: END IF;
1092: -- Reraise the exception so the calling subprogram can handle it
1093: RAISE;
1094: END Validate_Employee;