DBA Data[Home] [Help]

APPS.JAI_FA_ASSETS_PKG dependencies on JAI_FA_MASS_ADDITIONS

Line 19: A column invoice_line_number ie added to jai_fa_mass_additions.

15: Modified the object to remove literals from DML statements and CURSORS.
16:
17: 24-Jun-2005 rchandan for bug#4454657, Version 116.4
18: Modified the object as a part of AP LINES Impact Uptake
19: A column invoice_line_number ie added to jai_fa_mass_additions.
20: The ap_invoice_lines_all is used instead of ap_invoice_distributions_all while querying wherever applicable.
21: While calculating the apportion factor the distribution amount is taken instead of line amount.
22:
23: 10 07/12/2005 Hjujjuru for the bug 4866533 File version 120.2

Line 46: from JAI_FA_MASS_ADDITIONS a

42: is
43:
44: cursor c_ja_in_fa_mass_additions(p_parent_request_id number) is
45: select a.rowid, a.*
46: from JAI_FA_MASS_ADDITIONS a
47: where (p_parent_request_id IS NULL OR create_batch_id = p_parent_request_id)
48: and process_flag <> 'Y'
49: FOR UPDATE OF process_flag;
50:

Line 161: Records are populated onto the table JAI_FA_MASS_ADDITIONS by

157: This procedure processes all records that have not already
158: been processed earlier. This is checked by the process_flag
159: value of 'Y' for processed records.
160:
161: Records are populated onto the table JAI_FA_MASS_ADDITIONS by
162: the trigger ja_in_fa_mass_additions_boe3p after insert
163: on fa_mass_additions.
164:
165: In FA all amounts are posted in functional currency and hence 'INR'

Line 352: update JAI_FA_MASS_ADDITIONS

348: end loop; /** tax for the given invoice item line from corresponding receipt line **/
349: lv_error_message := 'Processed Successfully on / no of tax lines inserted :'
350: || to_char(sysdate) || ' / ' || to_char(ln_no_of_tax_for_inv_line);/*rchandan for bug#4428980*/
351:
352: update JAI_FA_MASS_ADDITIONS
353: set process_flag = 'Y',
354: process_message = lv_error_message,/*rchandan for bug#4428980*/
355: last_update_date = sysdate
356: where rowid = cur_rec_invoice_line.rowid;

Line 373: update JAI_FA_MASS_ADDITIONS

369: when others then
370:
371: lv_error_message := substr(sqlerrm, 1, 150);
372:
373: update JAI_FA_MASS_ADDITIONS
374: set process_flag = 'E',
375: process_message = lv_error_message,
376: last_update_date = sysdate
377: where rowid = cur_rec_invoice_line.rowid;