DBA Data[Home] [Help]

APPS.JL_BR_AR_REMIT_COLL_OCCUR dependencies on FND_API

Line 380: p_init_msg_list => FND_API.G_FALSE,

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

Line 381: p_commit => FND_API.G_FALSE,

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

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

396: 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));
397: /* Generate remittance occurrence to the document */
398: LOOP
399:
400: l_mesg := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,FND_API.G_FALSE);
401: IF l_mesg IS NULL THEN
402: EXIT;
403: ELSE
404: 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);