DBA Data[Home] [Help]

APPS.GMS_PA_XFACE dependencies on GMS_AWARDS_DIST_PKG

Line 102: adl_rec.award_set_id := gms_awards_dist_pkg.get_award_set_id;

98: adl_rec.adl_status := 'A';
99: adl_rec.document_type := 'EXP';
100: adl_rec.billed_flag := 'N';
101: adl_rec.bill_hold_flag := x_flag ;
102: adl_rec.award_set_id := gms_awards_dist_pkg.get_award_set_id;
103: adl_rec.award_id := source_award_id ;
104: adl_rec.raw_cost := rev_rec.raw_cost;
105: adl_rec.last_update_date := rev_rec.last_update_date;
106: adl_rec.creation_date := rev_rec.creation_date;

Line 110: gms_awards_dist_pkg.create_adls(adl_rec);

106: adl_rec.creation_date := rev_rec.creation_date;
107: adl_rec.last_updated_by := rev_rec.last_updated_by;
108: adl_rec.created_by := rev_rec.created_by;
109: adl_rec.last_update_login := rev_rec.last_update_login;
110: gms_awards_dist_pkg.create_adls(adl_rec);
111: END LOOP;
112:
113: FOR new_rec IN new_item (x_expenditure_item_id) LOOP
114: adl_rec.expenditure_item_id := new_rec.expenditure_item_id;

Line 126: adl_rec.award_set_id := gms_awards_dist_pkg.get_award_set_id;

122: adl_rec.adl_status := 'A';
123: adl_rec.document_type := 'EXP';
124: adl_rec.billed_flag := 'N';
125: adl_rec.bill_hold_flag := x_flag ;
126: adl_rec.award_set_id := gms_awards_dist_pkg.get_award_set_id;
127: adl_rec.award_id := source_award_id;
128: adl_rec.raw_cost := new_rec.raw_cost;
129: adl_rec.last_update_date := new_rec.last_update_date;
130: adl_rec.creation_date := new_rec.creation_date;

Line 134: gms_awards_dist_pkg.create_adls(adl_rec);

130: adl_rec.creation_date := new_rec.creation_date;
131: adl_rec.last_updated_by := new_rec.last_updated_by;
132: adl_rec.created_by := new_rec.created_by;
133: adl_rec.last_update_login := new_rec.last_update_login;
134: gms_awards_dist_pkg.create_adls(adl_rec);
135: END LOOP;
136:
137: EXCEPTION
138:

Line 333: adl_rec.award_set_id := gms_awards_dist_pkg.get_award_set_id;

329: adl_rec.adl_status := 'A';
330: adl_rec.document_type := 'EXP';
331: adl_rec.billed_flag := 'N';
332: adl_rec.bill_hold_flag := x_flag ;
333: adl_rec.award_set_id := gms_awards_dist_pkg.get_award_set_id;
334: adl_rec.award_id := SOURCE_AWARD_ID;
335: adl_rec.raw_cost := rev_rec.raw_cost;
336: adl_rec.last_update_date := rev_rec.last_update_date;
337: adl_rec.creation_date := rev_rec.creation_date;

Line 341: gms_awards_dist_pkg.create_adls(adl_rec);

337: adl_rec.creation_date := rev_rec.creation_date;
338: adl_rec.last_updated_by := rev_rec.last_updated_by;
339: adl_rec.created_by := rev_rec.created_by;
340: adl_rec.last_update_login := rev_rec.last_update_login;
341: gms_awards_dist_pkg.create_adls(adl_rec);
342: END LOOP;
343:
344: FOR new_rec IN new_item (x_exp_item_id) LOOP
345: adl_rec.expenditure_item_id := new_rec.expenditure_item_id;

Line 357: adl_rec.award_set_id := gms_awards_dist_pkg.get_award_set_id;

353: adl_rec.adl_status := 'A';
354: adl_rec.document_type := 'EXP';
355: adl_rec.billed_flag := 'N';
356: adl_rec.bill_hold_flag := x_flag ;
357: adl_rec.award_set_id := gms_awards_dist_pkg.get_award_set_id;
358: adl_rec.award_id := DEST_AWARD_ID;
359: adl_rec.raw_cost := new_rec.raw_cost;
360: adl_rec.last_update_date := new_rec.last_update_date;
361: adl_rec.creation_date := new_rec.creation_date;

Line 365: gms_awards_dist_pkg.create_adls(adl_rec);

361: adl_rec.creation_date := new_rec.creation_date;
362: adl_rec.last_updated_by := new_rec.last_updated_by;
363: adl_rec.created_by := new_rec.created_by;
364: adl_rec.last_update_login := new_rec.last_update_login;
365: gms_awards_dist_pkg.create_adls(adl_rec);
366: END LOOP;
367:
368: END LOOP;
369: