DBA Data[Home] [Help]

APPS.GMS_AWARDS_DIST_PKG dependencies on GMS_AWARD_DISTRIBUTIONS

Line 28: -- CREATE_ADLS : Create Adls, Insert a new record into GMS_AWARD_DISTRIBUTIONS

24: -- ---------------------------------------------------
25: FUNCTION get_award_set_id return NUMBER ;
26:
27: -- ----------------------------------------------------------------------------
28: -- CREATE_ADLS : Create Adls, Insert a new record into GMS_AWARD_DISTRIBUTIONS
29: -- Table. The input parameter to this is gms_award_distributions%ROWTYPE.
30: -- ----------------------------------------------------------------------------
31: PROCEDURE create_adls( p_adls_rec gms_award_distributions%ROWTYPE ) ;
32:

Line 29: -- Table. The input parameter to this is gms_award_distributions%ROWTYPE.

25: FUNCTION get_award_set_id return NUMBER ;
26:
27: -- ----------------------------------------------------------------------------
28: -- CREATE_ADLS : Create Adls, Insert a new record into GMS_AWARD_DISTRIBUTIONS
29: -- Table. The input parameter to this is gms_award_distributions%ROWTYPE.
30: -- ----------------------------------------------------------------------------
31: PROCEDURE create_adls( p_adls_rec gms_award_distributions%ROWTYPE ) ;
32:
33:

Line 31: PROCEDURE create_adls( p_adls_rec gms_award_distributions%ROWTYPE ) ;

27: -- ----------------------------------------------------------------------------
28: -- CREATE_ADLS : Create Adls, Insert a new record into GMS_AWARD_DISTRIBUTIONS
29: -- Table. The input parameter to this is gms_award_distributions%ROWTYPE.
30: -- ----------------------------------------------------------------------------
31: PROCEDURE create_adls( p_adls_rec gms_award_distributions%ROWTYPE ) ;
32:
33:
34: -- ----------------------------------------------------------------------------
35: -- UPDATE_ADLS : UPDATE_Adls, this is defined to update record into

Line 36: -- gms_award_distributions table.

32:
33:
34: -- ----------------------------------------------------------------------------
35: -- UPDATE_ADLS : UPDATE_Adls, this is defined to update record into
36: -- gms_award_distributions table.
37: -- ----------------------------------------------------------------------------
38: PROCEDURE update_adls( p_adls_rec gms_award_distributions%ROWTYPE ) ;
39:
40:

Line 38: PROCEDURE update_adls( p_adls_rec gms_award_distributions%ROWTYPE ) ;

34: -- ----------------------------------------------------------------------------
35: -- UPDATE_ADLS : UPDATE_Adls, this is defined to update record into
36: -- gms_award_distributions table.
37: -- ----------------------------------------------------------------------------
38: PROCEDURE update_adls( p_adls_rec gms_award_distributions%ROWTYPE ) ;
39:
40:
41: -- ---------------------------------------------------------------------
42: -- API to delete gms_award_distribution record.

Line 98: -- on GMS_AWARD_DISTRIBUTIONS

94: -- PROCEDURE update_billable_flag (p_expenditure_item_id in number)
95: -- This procedure will initialize the billable flag
96: -- in PA_EXPENDITURE_ITEMS_ALL
97: -- Called from trigger GMS_UPDATE_EI_BILLABLE_FLAG
98: -- on GMS_AWARD_DISTRIBUTIONS
99: -- this Procedure is created as direct update of
100: -- other products tables directly from trigger leads to warning in
101: -- adpatch
102: -- --------------------------------------------------------------