DBA Data[Home] [Help]

APPS.CN_TRANSACTION_LOAD_PUB dependencies on CN_TRANSACTION_LOAD_PKG

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

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

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

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

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

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

Line 1586: cn_transaction_load_pkg.post_conc_dispatch

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

Line 1598: cn_transaction_load_pkg.void_batches

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