DBA Data[Home] [Help]

APPS.CN_TRANSACTION_LOAD_PUB dependencies on CN_TRANSACTION_LOAD_PKG

Line 1358: cn_transaction_load_pkg.check_api_data(p_start_date => p_start_date,

1354: l_skip_credit_flag := NVL(Fnd_Profile.VALUE('CN_SKIP_CREDIT_ALLOCATION'), 'Y');
1355: END IF;
1356:
1357: -- Check Data in API table
1358: cn_transaction_load_pkg.check_api_data(p_start_date => p_start_date,
1359: p_end_date => p_end_date,
1360: p_org_id => p_org_id);
1361:
1362:

Line 1538: cn_transaction_load_pkg.assign(p_logical_batch_id => l_logical_batch_id, p_org_id => p_org_id);

1534: -- populate the physical_batch_id in cn_process_batches
1535:
1536:
1537:
1538: cn_transaction_load_pkg.assign(p_logical_batch_id => l_logical_batch_id, p_org_id => p_org_id);
1539:
1540: -- Call load worker for each physical batch
1541: -- for regular loader, we call conc_dispatch to submit concurrent procedure.
1542: -- But for this public API the loader will do the job sequentially.

Line 1546: cn_transaction_load_pkg.pre_conc_dispatch(p_salesrep_id => p_salesrep_id,

1542: -- But for this public API the loader will do the job sequentially.
1543:
1544: commit;
1545:
1546: cn_transaction_load_pkg.pre_conc_dispatch(p_salesrep_id => p_salesrep_id,
1547: p_start_date => p_start_date,
1548: p_end_date => p_end_date,
1549: p_org_id => p_org_id);
1550:

Line 1584: cn_transaction_load_pkg.post_conc_dispatch

1580: END IF;
1581:
1582: commit;
1583:
1584: cn_transaction_load_pkg.post_conc_dispatch
1585: (p_salesrep_id => p_salesrep_id,
1586: p_start_date => p_start_date,
1587: p_end_date => p_end_date,
1588: p_org_id => p_org_id);

Line 1596: cn_transaction_load_pkg.void_batches

1592: IF l_process_rec_cnt > 0
1593: THEN
1594:
1595: -- Mark the processed batches for deletion
1596: cn_transaction_load_pkg.void_batches
1597: (p_physical_batch_id => null,
1598: p_logical_batch_id => l_logical_batch_id);
1599: END IF;
1600: