DBA Data[Home] [Help]

APPS.CN_PAYRUN_PVT dependencies on CN_PREPOSTBATCHES

Line 2831: l_batch_rec cn_prepostbatches.posting_batch_rec_type;

2827: l_payroll_flag cn_repositories.payroll_flag%TYPE;
2828: l_payables_ccid_level cn_repositories.payables_ccid_level%TYPE;
2829:
2830: l_pmt_trx_rec cn_pmt_trans_pkg.pmt_trans_rec_type;
2831: l_batch_rec cn_prepostbatches.posting_batch_rec_type;
2832:
2833: -- for API calls
2834: l_loading_status VARCHAR2(30);
2835: l_rowid VARCHAR2(30);

Line 3127: cn_prepostbatches.get_UID(l_posting_batch_id);

3123:
3124:
3125: -- open a transaction (used to be called posting) batch to be used
3126: -- when PMTPLN_REC payment transactions are added
3127: cn_prepostbatches.get_UID(l_posting_batch_id);
3128: l_batch_rec.posting_batch_id := l_posting_batch_id;
3129: l_batch_rec.name := 'Payment recoveries for payrun ' ||
3130: p_payrun_id ||'-'||
3131: l_posting_batch_id;

Line 3141: --cn_prepostbatches.insert_record(l_batch_rec);

3137: l_batch_rec.last_update_date := sysdate;
3138: l_batch_rec.last_update_login:= fnd_global.login_id;
3139:
3140: -- call table handler
3141: --cn_prepostbatches.insert_record(l_batch_rec);
3142: -- use old API
3143: cn_prepostbatches.Begin_Record
3144: (x_operation => 'INSERT',
3145: x_rowid => l_rowid,

Line 3143: cn_prepostbatches.Begin_Record

3139:
3140: -- call table handler
3141: --cn_prepostbatches.insert_record(l_batch_rec);
3142: -- use old API
3143: cn_prepostbatches.Begin_Record
3144: (x_operation => 'INSERT',
3145: x_rowid => l_rowid,
3146: x_posting_batch_rec => l_batch_rec,
3147: x_program_type => null,