DBA Data[Home] [Help]

APPS.OTA_LP_XMLP_PKG dependencies on FND_MESSAGE

Line 59: fnd_message.set_name('OTA', 'OTA_467206_LP_REPORT_PARAM_ERR');

55: error_msg varchar2(4000);
56: BEGIN
57: IF ((P_LP_ID IS NULL and P_LEARNER_ID IS NULL) or (P_LP_ID IS NOT NULL and P_LEARNER_ID IS NOT NULL)) THEN
58:
59: fnd_message.set_name('OTA', 'OTA_467206_LP_REPORT_PARAM_ERR');
60: error_msg := fnd_message.get;
61: RAISE_application_error(-20101, error_msg);
62: RETURN(FALSE);
63:

Line 60: error_msg := fnd_message.get;

56: BEGIN
57: IF ((P_LP_ID IS NULL and P_LEARNER_ID IS NULL) or (P_LP_ID IS NOT NULL and P_LEARNER_ID IS NOT NULL)) THEN
58:
59: fnd_message.set_name('OTA', 'OTA_467206_LP_REPORT_PARAM_ERR');
60: error_msg := fnd_message.get;
61: RAISE_application_error(-20101, error_msg);
62: RETURN(FALSE);
63:
64: END IF;