DBA Data[Home] [Help]

APPS.CN_PREPOST_PVT dependencies on CN_PMT_TRANS_PKG

Line 261: l_pmt_trans_rec CN_PMT_TRANS_PKG.pmt_trans_rec_type;

257: l_api_name CONSTANT VARCHAR2(30) := 'Create_From_CommLine';
258: l_api_version CONSTANT NUMBER := 1.0;
259: l_loading_status VARCHAR2(4000);
260: l_status VARCHAR2(4000);
261: l_pmt_trans_rec CN_PMT_TRANS_PKG.pmt_trans_rec_type;
262: l_posting_batch_rec CN_PREPOSTBATCHES.posting_batch_rec_type;
263: l_profile_value VARCHAR2(1);
264:
265: CURSOR get_comm_line_rec IS

Line 499: CN_PMT_TRANS_PKG.Begin_Record

495: AND ROWNUM = 1;
496:
497: -- if something changes, keep the reversal and create a new posting line
498: IF (SQL%notfound) THEN
499: CN_PMT_TRANS_PKG.Begin_Record
500: (x_pmt_trans_rec => l_pmt_trans_rec);
501: IF (x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
502: RAISE FND_API.G_EXC_ERROR;
503: END IF;

Line 508: CN_PMT_TRANS_PKG.Insert_Record(l_pmt_trans_rec);

504: END IF;
505: ELSE*/
506:
507: -- insert record into CN_PAYMENT_TRANSACTIONS
508: CN_PMT_TRANS_PKG.Insert_Record(l_pmt_trans_rec);
509: IF (x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
510: RAISE FND_API.G_EXC_ERROR;
511: END IF;
512: --END IF;