DBA Data[Home] [Help]

APPS.LNS_APPROVAL_ACTION_PUB dependencies on STANDARD

Line 572: -- standard start of API savepoint

568: BEGIN
569: l_last_api_called := '';
570: l_approval_action_rec := p_approval_action_rec;
571: logMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME, l_api_name || ' - Begin');
572: -- standard start of API savepoint
573: SAVEPOINT create_approval_action;
574:
575: -- initialize message list if p_init_msg_list is set to TRUE.
576: IF FND_API.to_Boolean(p_init_msg_list) THEN

Line 1404: -- standard start of API savepoint

1400: BEGIN
1401: l_approval_action_rec := p_approval_action_rec;
1402: logMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME, 'Begin Update_approval_action procedure');
1403:
1404: -- standard start of API savepoint
1405: SAVEPOINT update_approval_action;
1406:
1407: -- initialize message list if p_init_msg_list is set to TRUE.
1408: IF FND_API.to_Boolean(p_init_msg_list) THEN

Line 1511: -- standard start of API savepoint

1507: BEGIN
1508: l_action_id := p_action_id;
1509: logMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME, 'Begin Delete_approval_action procedure');
1510:
1511: -- standard start of API savepoint
1512: SAVEPOINT delete_approval_action;
1513:
1514: -- initialize message list if p_init_msg_list is set to TRUE.
1515: IF FND_API.to_Boolean(p_init_msg_list) THEN

Line 1576: | P_API_VERSION IN Standard in parameter

1572: | init
1573: | LogMessage
1574: |
1575: | PARAMETERS
1576: | P_API_VERSION IN Standard in parameter
1577: | P_INIT_MSG_LIST IN Standard in parameter
1578: | P_COMMIT IN Standard in parameter
1579: | P_VALIDATION_LEVEL IN Standard in parameter
1580: | P_LOAN_LINE_ID IN Loan Line ID

Line 1577: | P_INIT_MSG_LIST IN Standard in parameter

1573: | LogMessage
1574: |
1575: | PARAMETERS
1576: | P_API_VERSION IN Standard in parameter
1577: | P_INIT_MSG_LIST IN Standard in parameter
1578: | P_COMMIT IN Standard in parameter
1579: | P_VALIDATION_LEVEL IN Standard in parameter
1580: | P_LOAN_LINE_ID IN Loan Line ID
1581: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 1578: | P_COMMIT IN Standard in parameter

1574: |
1575: | PARAMETERS
1576: | P_API_VERSION IN Standard in parameter
1577: | P_INIT_MSG_LIST IN Standard in parameter
1578: | P_COMMIT IN Standard in parameter
1579: | P_VALIDATION_LEVEL IN Standard in parameter
1580: | P_LOAN_LINE_ID IN Loan Line ID
1581: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
1582: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 1579: | P_VALIDATION_LEVEL IN Standard in parameter

1575: | PARAMETERS
1576: | P_API_VERSION IN Standard in parameter
1577: | P_INIT_MSG_LIST IN Standard in parameter
1578: | P_COMMIT IN Standard in parameter
1579: | P_VALIDATION_LEVEL IN Standard in parameter
1580: | P_LOAN_LINE_ID IN Loan Line ID
1581: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
1582: | X_MSG_COUNT OUT NOCOPY Standard out parameter
1583: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 1581: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

1577: | P_INIT_MSG_LIST IN Standard in parameter
1578: | P_COMMIT IN Standard in parameter
1579: | P_VALIDATION_LEVEL IN Standard in parameter
1580: | P_LOAN_LINE_ID IN Loan Line ID
1581: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
1582: | X_MSG_COUNT OUT NOCOPY Standard out parameter
1583: | X_MSG_DATA OUT NOCOPY Standard out parameter
1584: |
1585: | KNOWN ISSUES

Line 1582: | X_MSG_COUNT OUT NOCOPY Standard out parameter

1578: | P_COMMIT IN Standard in parameter
1579: | P_VALIDATION_LEVEL IN Standard in parameter
1580: | P_LOAN_LINE_ID IN Loan Line ID
1581: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
1582: | X_MSG_COUNT OUT NOCOPY Standard out parameter
1583: | X_MSG_DATA OUT NOCOPY Standard out parameter
1584: |
1585: | KNOWN ISSUES
1586: | None

Line 1583: | X_MSG_DATA OUT NOCOPY Standard out parameter

1579: | P_VALIDATION_LEVEL IN Standard in parameter
1580: | P_LOAN_LINE_ID IN Loan Line ID
1581: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
1582: | X_MSG_COUNT OUT NOCOPY Standard out parameter
1583: | X_MSG_DATA OUT NOCOPY Standard out parameter
1584: |
1585: | KNOWN ISSUES
1586: | None
1587: |

Line 1670: -- Standard start of API savepoint

1666: BEGIN
1667:
1668: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME, G_PKG_NAME || '.' || l_api_name || ' +');
1669:
1670: -- Standard start of API savepoint
1671: SAVEPOINT APPROVE_ADD_RECEIVABLE;
1672: LogMessage(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME, 'Savepoint is established');
1673:
1674: -- Standard call to check for call compatibility

Line 1674: -- Standard call to check for call compatibility

1670: -- Standard start of API savepoint
1671: SAVEPOINT APPROVE_ADD_RECEIVABLE;
1672: LogMessage(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME, 'Savepoint is established');
1673:
1674: -- Standard call to check for call compatibility
1675: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
1676: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1677: END IF;
1678:

Line 1810: -- Standard call to get message count and if count is 1, get message info

1806: x_return_status := FND_API.G_RET_STS_SUCCESS;
1807:
1808: LogMessage(FND_LOG.LEVEL_UNEXPECTED, G_PKG_NAME, 'Successfully approved additional receivable ' || l_trx_number);
1809:
1810: -- Standard call to get message count and if count is 1, get message info
1811: FND_MSG_PUB.Count_And_Get(
1812: p_encoded => FND_API.G_FALSE,
1813: p_count => x_msg_count,
1814: p_data => x_msg_data);

Line 1855: | P_API_VERSION IN Standard in parameter

1851: | init
1852: | LogMessage
1853: |
1854: | PARAMETERS
1855: | P_API_VERSION IN Standard in parameter
1856: | P_INIT_MSG_LIST IN Standard in parameter
1857: | P_COMMIT IN Standard in parameter
1858: | P_VALIDATION_LEVEL IN Standard in parameter
1859: | P_LOAN_AMOUNT_ADJ_ID IN Loan amount adjutsment ID

Line 1856: | P_INIT_MSG_LIST IN Standard in parameter

1852: | LogMessage
1853: |
1854: | PARAMETERS
1855: | P_API_VERSION IN Standard in parameter
1856: | P_INIT_MSG_LIST IN Standard in parameter
1857: | P_COMMIT IN Standard in parameter
1858: | P_VALIDATION_LEVEL IN Standard in parameter
1859: | P_LOAN_AMOUNT_ADJ_ID IN Loan amount adjutsment ID
1860: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 1857: | P_COMMIT IN Standard in parameter

1853: |
1854: | PARAMETERS
1855: | P_API_VERSION IN Standard in parameter
1856: | P_INIT_MSG_LIST IN Standard in parameter
1857: | P_COMMIT IN Standard in parameter
1858: | P_VALIDATION_LEVEL IN Standard in parameter
1859: | P_LOAN_AMOUNT_ADJ_ID IN Loan amount adjutsment ID
1860: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
1861: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 1858: | P_VALIDATION_LEVEL IN Standard in parameter

1854: | PARAMETERS
1855: | P_API_VERSION IN Standard in parameter
1856: | P_INIT_MSG_LIST IN Standard in parameter
1857: | P_COMMIT IN Standard in parameter
1858: | P_VALIDATION_LEVEL IN Standard in parameter
1859: | P_LOAN_AMOUNT_ADJ_ID IN Loan amount adjutsment ID
1860: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
1861: | X_MSG_COUNT OUT NOCOPY Standard out parameter
1862: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 1860: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

1856: | P_INIT_MSG_LIST IN Standard in parameter
1857: | P_COMMIT IN Standard in parameter
1858: | P_VALIDATION_LEVEL IN Standard in parameter
1859: | P_LOAN_AMOUNT_ADJ_ID IN Loan amount adjutsment ID
1860: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
1861: | X_MSG_COUNT OUT NOCOPY Standard out parameter
1862: | X_MSG_DATA OUT NOCOPY Standard out parameter
1863: |
1864: | KNOWN ISSUES

Line 1861: | X_MSG_COUNT OUT NOCOPY Standard out parameter

1857: | P_COMMIT IN Standard in parameter
1858: | P_VALIDATION_LEVEL IN Standard in parameter
1859: | P_LOAN_AMOUNT_ADJ_ID IN Loan amount adjutsment ID
1860: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
1861: | X_MSG_COUNT OUT NOCOPY Standard out parameter
1862: | X_MSG_DATA OUT NOCOPY Standard out parameter
1863: |
1864: | KNOWN ISSUES
1865: | None

Line 1862: | X_MSG_DATA OUT NOCOPY Standard out parameter

1858: | P_VALIDATION_LEVEL IN Standard in parameter
1859: | P_LOAN_AMOUNT_ADJ_ID IN Loan amount adjutsment ID
1860: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
1861: | X_MSG_COUNT OUT NOCOPY Standard out parameter
1862: | X_MSG_DATA OUT NOCOPY Standard out parameter
1863: |
1864: | KNOWN ISSUES
1865: | None
1866: |

Line 1941: -- Standard start of API savepoint

1937: BEGIN
1938:
1939: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME, G_PKG_NAME || '.' || l_api_name || ' +');
1940:
1941: -- Standard start of API savepoint
1942: SAVEPOINT APPROVE_LOAN_AM_ADJ;
1943: LogMessage(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME, 'Savepoint is established');
1944:
1945: -- Standard call to check for call compatibility

Line 1945: -- Standard call to check for call compatibility

1941: -- Standard start of API savepoint
1942: SAVEPOINT APPROVE_LOAN_AM_ADJ;
1943: LogMessage(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME, 'Savepoint is established');
1944:
1945: -- Standard call to check for call compatibility
1946: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
1947: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1948: END IF;
1949:

Line 2013: -- Standard call to get message count and if count is 1, get message info

2009: x_return_status := FND_API.G_RET_STS_SUCCESS;
2010:
2011: LogMessage(FND_LOG.LEVEL_UNEXPECTED, G_PKG_NAME, 'Successfully loan amount adjustment ' || l_DESCRIPTION);
2012:
2013: -- Standard call to get message count and if count is 1, get message info
2014: FND_MSG_PUB.Count_And_Get(
2015: p_encoded => FND_API.G_FALSE,
2016: p_count => x_msg_count,
2017: p_data => x_msg_data);