DBA Data[Home] [Help]

APPS.QA_ALERT_PKG dependencies on ALR_ACTION_SET_INPUTS

Line 515: -- Create an alr_action_set_inputs record.

511: END insert_alr_action_set_outputs;
512:
513:
514: --
515: -- Create an alr_action_set_inputs record.
516: --
517: -- Output variable: x_return_status will be
518: -- fnd_api.g_ret_sts_success if successful
519: -- fnd_api.g_ret_sts_error if not

Line 521: PROCEDURE insert_alr_action_set_inputs(

517: -- Output variable: x_return_status will be
518: -- fnd_api.g_ret_sts_success if successful
519: -- fnd_api.g_ret_sts_error if not
520: --
521: PROCEDURE insert_alr_action_set_inputs(
522: p_application_id NUMBER,
523: p_action_set_id NUMBER,
524: p_alert_id NUMBER,
525: p_creation_date DATE,

Line 534: INSERT INTO alr_action_set_inputs(

530: x_return_status OUT NOCOPY VARCHAR2
531: ) IS
532:
533: BEGIN
534: INSERT INTO alr_action_set_inputs(
535: application_id,
536: action_set_id,
537: alert_id,
538: name,

Line 571: END insert_alr_action_set_inputs;

567:
568: WHEN OTHERS THEN
569: x_return_status := fnd_api.g_ret_sts_error;
570:
571: END insert_alr_action_set_inputs;
572:
573:
574:
575: