DBA Data[Home] [Help]

APPS.QA_ALERT_PKG dependencies on ALR_ACTION_SET_OUTPUTS

Line 453: -- Create an alr_action_set_outputs record.

449:
450:
451:
452: --
453: -- Create an alr_action_set_outputs record.
454: --
455: -- Output variable: x_return_status will be
456: -- fnd_api.g_ret_sts_success if successful
457: -- fnd_api.g_ret_sts_error if not

Line 459: PROCEDURE insert_alr_action_set_outputs(

455: -- Output variable: x_return_status will be
456: -- fnd_api.g_ret_sts_success if successful
457: -- fnd_api.g_ret_sts_error if not
458: --
459: PROCEDURE insert_alr_action_set_outputs(
460: p_application_id NUMBER,
461: p_action_set_id NUMBER,
462: p_alert_id NUMBER,
463: p_creation_date DATE,

Line 472: INSERT INTO alr_action_set_outputs(

468: x_return_status OUT NOCOPY VARCHAR2
469: ) IS
470:
471: BEGIN
472: INSERT INTO alr_action_set_outputs(
473: application_id,
474: action_set_id,
475: alert_id,
476: name,

Line 511: END insert_alr_action_set_outputs;

507:
508: WHEN OTHERS THEN
509: x_return_status := fnd_api.g_ret_sts_error;
510:
511: END insert_alr_action_set_outputs;
512:
513:
514: --
515: -- Create an alr_action_set_inputs record.