DBA Data[Home] [Help]

APPS.JL_BR_AR_REMIT_COLL_OCCUR dependencies on FND_API

Line 382: p_init_msg_list => FND_API.G_FALSE,

378: exit when PS%notfound;
379:
380: Ar_receipt_api_pub.create_cash
381: ( p_api_version => 1.0,
382: p_init_msg_list => FND_API.G_FALSE,
383: p_commit => FND_API.G_FALSE,
384: x_return_status => l_return_status,
385: x_msg_count => l_msg_count,
386: x_msg_data => l_msg_data,

Line 383: p_commit => FND_API.G_FALSE,

379:
380: Ar_receipt_api_pub.create_cash
381: ( p_api_version => 1.0,
382: p_init_msg_list => FND_API.G_FALSE,
383: p_commit => FND_API.G_FALSE,
384: x_return_status => l_return_status,
385: x_msg_count => l_msg_count,
386: x_msg_data => l_msg_data,
387: p_currency_code => l_currency_code,

Line 402: l_mesg := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,FND_API.G_FALSE);

398: fnd_file.put_line(FND_FILE.lOG,'After creating the receipt'||to_char(x_cash_receipt_id)||'return status'||l_return_status||'message '||l_msg_data||'message count'||to_char(l_msg_count));
399: /* Generate remittance occurrence to the document */
400: LOOP
401:
402: l_mesg := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,FND_API.G_FALSE);
403: IF l_mesg IS NULL THEN
404: EXIT;
405: ELSE
406: fnd_file.put_line(FND_FILE.lOG,'After creating the receipt'||to_char(x_cash_receipt_id)||'return status'||l_return_status||'message count'||to_char(l_msg_count)||'message '||l_mesg);