DBA Data[Home] [Help]

APPS.LNS_BILLING_BATCH_PUB dependencies on STANDARD

Line 445: | P_API_VERSION IN Standard in parameter

441: | CALLS PROCEDURES/FUNCTIONS (local to this package body)
442: | LogMessage
443: |
444: | PARAMETERS
445: | P_API_VERSION IN Standard in parameter
446: | P_INIT_MSG_LIST IN Standard in parameter
447: | P_COMMIT IN Standard in parameter
448: | P_VALIDATION_LEVEL IN Standard in parameter
449: | P_LOAN_ID IN Loan

Line 446: | P_INIT_MSG_LIST IN Standard in parameter

442: | LogMessage
443: |
444: | PARAMETERS
445: | P_API_VERSION IN Standard in parameter
446: | P_INIT_MSG_LIST IN Standard in parameter
447: | P_COMMIT IN Standard in parameter
448: | P_VALIDATION_LEVEL IN Standard in parameter
449: | P_LOAN_ID IN Loan
450: | P_PAYOFF_DATE IN Pay off date

Line 447: | P_COMMIT IN Standard in parameter

443: |
444: | PARAMETERS
445: | P_API_VERSION IN Standard in parameter
446: | P_INIT_MSG_LIST IN Standard in parameter
447: | P_COMMIT IN Standard in parameter
448: | P_VALIDATION_LEVEL IN Standard in parameter
449: | P_LOAN_ID IN Loan
450: | P_PAYOFF_DATE IN Pay off date
451: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 448: | P_VALIDATION_LEVEL IN Standard in parameter

444: | PARAMETERS
445: | P_API_VERSION IN Standard in parameter
446: | P_INIT_MSG_LIST IN Standard in parameter
447: | P_COMMIT IN Standard in parameter
448: | P_VALIDATION_LEVEL IN Standard in parameter
449: | P_LOAN_ID IN Loan
450: | P_PAYOFF_DATE IN Pay off date
451: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
452: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 451: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

447: | P_COMMIT IN Standard in parameter
448: | P_VALIDATION_LEVEL IN Standard in parameter
449: | P_LOAN_ID IN Loan
450: | P_PAYOFF_DATE IN Pay off date
451: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
452: | X_MSG_COUNT OUT NOCOPY Standard out parameter
453: | X_MSG_DATA OUT NOCOPY Standard out parameter
454:
455: | KNOWN ISSUES

Line 452: | X_MSG_COUNT OUT NOCOPY Standard out parameter

448: | P_VALIDATION_LEVEL IN Standard in parameter
449: | P_LOAN_ID IN Loan
450: | P_PAYOFF_DATE IN Pay off date
451: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
452: | X_MSG_COUNT OUT NOCOPY Standard out parameter
453: | X_MSG_DATA OUT NOCOPY Standard out parameter
454:
455: | KNOWN ISSUES
456: | None

Line 453: | X_MSG_DATA OUT NOCOPY Standard out parameter

449: | P_LOAN_ID IN Loan
450: | P_PAYOFF_DATE IN Pay off date
451: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
452: | X_MSG_COUNT OUT NOCOPY Standard out parameter
453: | X_MSG_DATA OUT NOCOPY Standard out parameter
454:
455: | KNOWN ISSUES
456: | None
457: |

Line 533: -- Standard Start of API savepoint

529: LogMessage(FND_LOG.LEVEL_UNEXPECTED, 'Processing paid off loans...');
530: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Input parameters:');
531: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Loan ID: ' || P_LOAN_ID);
532: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Payoff date: ' || P_PAYOFF_DATE);
533: -- Standard Start of API savepoint
534: SAVEPOINT PROCESS_PAID_LOANS;
535:
536: -- Initialize message list IF p_init_msg_list is set to TRUE.
537: IF FND_API.to_Boolean(p_init_msg_list) THEN

Line 3912: -- Standard start of API savepoint

3908: BEGIN
3909:
3910: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
3911:
3912: -- Standard start of API savepoint
3913: SAVEPOINT PROCESS_SINGLE_LOAN_PVT;
3914: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Established savepoint');
3915:
3916: -- Standard call to check for call compatibility

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

3912: -- Standard start of API savepoint
3913: SAVEPOINT PROCESS_SINGLE_LOAN_PVT;
3914: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Established savepoint');
3915:
3916: -- Standard call to check for call compatibility
3917: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
3918: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
3919: END IF;
3920:

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

4352:
4353: -- END OF BODY OF API
4354: x_return_status := FND_API.G_RET_STS_SUCCESS;
4355:
4356: -- Standard call to get message count and if count is 1, get message info
4357: FND_MSG_PUB.Count_And_Get(
4358: p_encoded => FND_API.G_FALSE,
4359: p_count => x_msg_count,
4360: p_data => x_msg_data);

Line 4503: -- Standard start of API savepoint

4499:
4500: LogMessage(FND_LOG.LEVEL_UNEXPECTED, ' ');
4501: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
4502:
4503: -- Standard start of API savepoint
4504: SAVEPOINT SINGLE_LOAN_NEXT_DD_PVT;
4505: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Established savepoint');
4506:
4507: -- Standard call to check for call compatibility

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

4503: -- Standard start of API savepoint
4504: SAVEPOINT SINGLE_LOAN_NEXT_DD_PVT;
4505: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Established savepoint');
4506:
4507: -- Standard call to check for call compatibility
4508: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
4509: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
4510: END IF;
4511:

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

4650:
4651: -- END OF BODY OF API
4652: x_return_status := FND_API.G_RET_STS_SUCCESS;
4653:
4654: -- Standard call to get message count and if count is 1, get message info
4655: FND_MSG_PUB.Count_And_Get(
4656: p_encoded => FND_API.G_FALSE,
4657: p_count => x_msg_count,
4658: p_data => x_msg_data);

Line 4983: | P_API_VERSION IN Standard in parameter

4979: | BILL_SINGLE_LOAN
4980: | LogMessage
4981: |
4982: | PARAMETERS
4983: | P_API_VERSION IN Standard in parameter
4984: | P_INIT_MSG_LIST IN Standard in parameter
4985: | P_COMMIT IN Standard in parameter
4986: | P_VALIDATION_LEVEL IN Standard in parameter
4987: | P_LOANS_TO_BILL_TBL IN Inputs table of loans to be billed

Line 4984: | P_INIT_MSG_LIST IN Standard in parameter

4980: | LogMessage
4981: |
4982: | PARAMETERS
4983: | P_API_VERSION IN Standard in parameter
4984: | P_INIT_MSG_LIST IN Standard in parameter
4985: | P_COMMIT IN Standard in parameter
4986: | P_VALIDATION_LEVEL IN Standard in parameter
4987: | P_LOANS_TO_BILL_TBL IN Inputs table of loans to be billed
4988: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 4985: | P_COMMIT IN Standard in parameter

4981: |
4982: | PARAMETERS
4983: | P_API_VERSION IN Standard in parameter
4984: | P_INIT_MSG_LIST IN Standard in parameter
4985: | P_COMMIT IN Standard in parameter
4986: | P_VALIDATION_LEVEL IN Standard in parameter
4987: | P_LOANS_TO_BILL_TBL IN Inputs table of loans to be billed
4988: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
4989: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 4986: | P_VALIDATION_LEVEL IN Standard in parameter

4982: | PARAMETERS
4983: | P_API_VERSION IN Standard in parameter
4984: | P_INIT_MSG_LIST IN Standard in parameter
4985: | P_COMMIT IN Standard in parameter
4986: | P_VALIDATION_LEVEL IN Standard in parameter
4987: | P_LOANS_TO_BILL_TBL IN Inputs table of loans to be billed
4988: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
4989: | X_MSG_COUNT OUT NOCOPY Standard out parameter
4990: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 4988: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

4984: | P_INIT_MSG_LIST IN Standard in parameter
4985: | P_COMMIT IN Standard in parameter
4986: | P_VALIDATION_LEVEL IN Standard in parameter
4987: | P_LOANS_TO_BILL_TBL IN Inputs table of loans to be billed
4988: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
4989: | X_MSG_COUNT OUT NOCOPY Standard out parameter
4990: | X_MSG_DATA OUT NOCOPY Standard out parameter
4991: |
4992: | KNOWN ISSUES

Line 4989: | X_MSG_COUNT OUT NOCOPY Standard out parameter

4985: | P_COMMIT IN Standard in parameter
4986: | P_VALIDATION_LEVEL IN Standard in parameter
4987: | P_LOANS_TO_BILL_TBL IN Inputs table of loans to be billed
4988: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
4989: | X_MSG_COUNT OUT NOCOPY Standard out parameter
4990: | X_MSG_DATA OUT NOCOPY Standard out parameter
4991: |
4992: | KNOWN ISSUES
4993: | None

Line 4990: | X_MSG_DATA OUT NOCOPY Standard out parameter

4986: | P_VALIDATION_LEVEL IN Standard in parameter
4987: | P_LOANS_TO_BILL_TBL IN Inputs table of loans to be billed
4988: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
4989: | X_MSG_COUNT OUT NOCOPY Standard out parameter
4990: | X_MSG_DATA OUT NOCOPY Standard out parameter
4991: |
4992: | KNOWN ISSUES
4993: | None
4994: |

Line 5046: -- Standard start of API savepoint

5042: BEGIN
5043:
5044: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
5045:
5046: -- Standard start of API savepoint
5047: SAVEPOINT BILL_LOANS_EXT_PVT;
5048: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
5049:
5050: -- Standard call to check for call compatibility

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

5046: -- Standard start of API savepoint
5047: SAVEPOINT BILL_LOANS_EXT_PVT;
5048: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
5049:
5050: -- Standard call to check for call compatibility
5051: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
5052: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
5053: END IF;
5054:

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

5194:
5195: -- END OF BODY OF API
5196: x_return_status := FND_API.G_RET_STS_SUCCESS;
5197:
5198: -- Standard call to get message count and if count is 1, get message info
5199: FND_MSG_PUB.Count_And_Get(
5200: p_encoded => FND_API.G_FALSE,
5201: p_count => x_msg_count,
5202: p_data => x_msg_data);

Line 5248: | P_API_VERSION IN Standard in parameter

5244: | BILL_SINGLE_LOAN
5245: | LogMessage
5246: |
5247: | PARAMETERS
5248: | P_API_VERSION IN Standard in parameter
5249: | P_INIT_MSG_LIST IN Standard in parameter
5250: | P_COMMIT IN Standard in parameter
5251: | P_VALIDATION_LEVEL IN Standard in parameter
5252: | P_TYPE_ID IN Inputs loan type id

Line 5249: | P_INIT_MSG_LIST IN Standard in parameter

5245: | LogMessage
5246: |
5247: | PARAMETERS
5248: | P_API_VERSION IN Standard in parameter
5249: | P_INIT_MSG_LIST IN Standard in parameter
5250: | P_COMMIT IN Standard in parameter
5251: | P_VALIDATION_LEVEL IN Standard in parameter
5252: | P_TYPE_ID IN Inputs loan type id
5253: | P_PRODUCT_ID IN Inputs loan product id

Line 5250: | P_COMMIT IN Standard in parameter

5246: |
5247: | PARAMETERS
5248: | P_API_VERSION IN Standard in parameter
5249: | P_INIT_MSG_LIST IN Standard in parameter
5250: | P_COMMIT IN Standard in parameter
5251: | P_VALIDATION_LEVEL IN Standard in parameter
5252: | P_TYPE_ID IN Inputs loan type id
5253: | P_PRODUCT_ID IN Inputs loan product id
5254: | P_BORROWER_ID IN Inputs borrower id

Line 5251: | P_VALIDATION_LEVEL IN Standard in parameter

5247: | PARAMETERS
5248: | P_API_VERSION IN Standard in parameter
5249: | P_INIT_MSG_LIST IN Standard in parameter
5250: | P_COMMIT IN Standard in parameter
5251: | P_VALIDATION_LEVEL IN Standard in parameter
5252: | P_TYPE_ID IN Inputs loan type id
5253: | P_PRODUCT_ID IN Inputs loan product id
5254: | P_BORROWER_ID IN Inputs borrower id
5255: | P_LOAN_ID IN Inputs loan id

Line 5258: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

5254: | P_BORROWER_ID IN Inputs borrower id
5255: | P_LOAN_ID IN Inputs loan id
5256: | P_FROM_DAYS_TO_DD IN Inputs from days
5257: | P_TO_DAYS_TO_DD IN Inputs to days
5258: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5259: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5260: | X_MSG_DATA OUT NOCOPY Standard out parameter
5261: |
5262: | KNOWN ISSUES

Line 5259: | X_MSG_COUNT OUT NOCOPY Standard out parameter

5255: | P_LOAN_ID IN Inputs loan id
5256: | P_FROM_DAYS_TO_DD IN Inputs from days
5257: | P_TO_DAYS_TO_DD IN Inputs to days
5258: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5259: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5260: | X_MSG_DATA OUT NOCOPY Standard out parameter
5261: |
5262: | KNOWN ISSUES
5263: | None

Line 5260: | X_MSG_DATA OUT NOCOPY Standard out parameter

5256: | P_FROM_DAYS_TO_DD IN Inputs from days
5257: | P_TO_DAYS_TO_DD IN Inputs to days
5258: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5259: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5260: | X_MSG_DATA OUT NOCOPY Standard out parameter
5261: |
5262: | KNOWN ISSUES
5263: | None
5264: |

Line 5370: -- Standard start of API savepoint

5366: BEGIN
5367:
5368: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
5369:
5370: -- Standard start of API savepoint
5371: SAVEPOINT BILL_LOANS_PVT;
5372: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
5373:
5374: -- Standard call to check for call compatibility

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

5370: -- Standard start of API savepoint
5371: SAVEPOINT BILL_LOANS_PVT;
5372: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
5373:
5374: -- Standard call to check for call compatibility
5375: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
5376: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
5377: END IF;
5378:

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

5627:
5628: -- END OF BODY OF API
5629: x_return_status := FND_API.G_RET_STS_SUCCESS;
5630:
5631: -- Standard call to get message count and if count is 1, get message info
5632: FND_MSG_PUB.Count_And_Get(
5633: p_encoded => FND_API.G_FALSE,
5634: p_count => x_msg_count,
5635: p_data => x_msg_data);

Line 5680: | P_API_VERSION IN Standard in parameter

5676: | CALC_SINGLE_LOAN_NEXT_DD
5677: | LogMessage
5678: |
5679: | PARAMETERS
5680: | P_API_VERSION IN Standard in parameter
5681: | P_INIT_MSG_LIST IN Standard in parameter
5682: | P_COMMIT IN Standard in parameter
5683: | P_VALIDATION_LEVEL IN Standard in parameter
5684: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 5681: | P_INIT_MSG_LIST IN Standard in parameter

5677: | LogMessage
5678: |
5679: | PARAMETERS
5680: | P_API_VERSION IN Standard in parameter
5681: | P_INIT_MSG_LIST IN Standard in parameter
5682: | P_COMMIT IN Standard in parameter
5683: | P_VALIDATION_LEVEL IN Standard in parameter
5684: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5685: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 5682: | P_COMMIT IN Standard in parameter

5678: |
5679: | PARAMETERS
5680: | P_API_VERSION IN Standard in parameter
5681: | P_INIT_MSG_LIST IN Standard in parameter
5682: | P_COMMIT IN Standard in parameter
5683: | P_VALIDATION_LEVEL IN Standard in parameter
5684: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5685: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5686: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 5683: | P_VALIDATION_LEVEL IN Standard in parameter

5679: | PARAMETERS
5680: | P_API_VERSION IN Standard in parameter
5681: | P_INIT_MSG_LIST IN Standard in parameter
5682: | P_COMMIT IN Standard in parameter
5683: | P_VALIDATION_LEVEL IN Standard in parameter
5684: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5685: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5686: | X_MSG_DATA OUT NOCOPY Standard out parameter
5687: |

Line 5684: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

5680: | P_API_VERSION IN Standard in parameter
5681: | P_INIT_MSG_LIST IN Standard in parameter
5682: | P_COMMIT IN Standard in parameter
5683: | P_VALIDATION_LEVEL IN Standard in parameter
5684: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5685: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5686: | X_MSG_DATA OUT NOCOPY Standard out parameter
5687: |
5688: | KNOWN ISSUES

Line 5685: | X_MSG_COUNT OUT NOCOPY Standard out parameter

5681: | P_INIT_MSG_LIST IN Standard in parameter
5682: | P_COMMIT IN Standard in parameter
5683: | P_VALIDATION_LEVEL IN Standard in parameter
5684: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5685: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5686: | X_MSG_DATA OUT NOCOPY Standard out parameter
5687: |
5688: | KNOWN ISSUES
5689: | None

Line 5686: | X_MSG_DATA OUT NOCOPY Standard out parameter

5682: | P_COMMIT IN Standard in parameter
5683: | P_VALIDATION_LEVEL IN Standard in parameter
5684: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5685: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5686: | X_MSG_DATA OUT NOCOPY Standard out parameter
5687: |
5688: | KNOWN ISSUES
5689: | None
5690: |

Line 5751: -- Standard start of API savepoint

5747: BEGIN
5748:
5749: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
5750:
5751: -- Standard start of API savepoint
5752: SAVEPOINT LOANS_NEXT_DD_PVT;
5753: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Established savepoint');
5754:
5755: -- Standard call to check for call compatibility

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

5751: -- Standard start of API savepoint
5752: SAVEPOINT LOANS_NEXT_DD_PVT;
5753: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Established savepoint');
5754:
5755: -- Standard call to check for call compatibility
5756: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
5757: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
5758: END IF;
5759:

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

5816:
5817: -- END OF BODY OF API
5818: x_return_status := FND_API.G_RET_STS_SUCCESS;
5819:
5820: -- Standard call to get message count and if count is 1, get message info
5821: FND_MSG_PUB.Count_And_Get(
5822: p_encoded => FND_API.G_FALSE,
5823: p_count => x_msg_count,
5824: p_data => x_msg_data);

Line 5866: | P_API_VERSION IN Standard in parameter

5862: | CREATE_AR_CM
5863: | LogMessage
5864: |
5865: | PARAMETERS
5866: | P_API_VERSION IN Standard in parameter
5867: | P_INIT_MSG_LIST IN Standard in parameter
5868: | P_COMMIT IN Standard in parameter
5869: | P_VALIDATION_LEVEL IN Standard in parameter
5870: | P_LOAN_ID IN Inputs loan id

Line 5867: | P_INIT_MSG_LIST IN Standard in parameter

5863: | LogMessage
5864: |
5865: | PARAMETERS
5866: | P_API_VERSION IN Standard in parameter
5867: | P_INIT_MSG_LIST IN Standard in parameter
5868: | P_COMMIT IN Standard in parameter
5869: | P_VALIDATION_LEVEL IN Standard in parameter
5870: | P_LOAN_ID IN Inputs loan id
5871: | P_REBILL_FLAG IN Inputs rebill flag

Line 5868: | P_COMMIT IN Standard in parameter

5864: |
5865: | PARAMETERS
5866: | P_API_VERSION IN Standard in parameter
5867: | P_INIT_MSG_LIST IN Standard in parameter
5868: | P_COMMIT IN Standard in parameter
5869: | P_VALIDATION_LEVEL IN Standard in parameter
5870: | P_LOAN_ID IN Inputs loan id
5871: | P_REBILL_FLAG IN Inputs rebill flag
5872: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 5869: | P_VALIDATION_LEVEL IN Standard in parameter

5865: | PARAMETERS
5866: | P_API_VERSION IN Standard in parameter
5867: | P_INIT_MSG_LIST IN Standard in parameter
5868: | P_COMMIT IN Standard in parameter
5869: | P_VALIDATION_LEVEL IN Standard in parameter
5870: | P_LOAN_ID IN Inputs loan id
5871: | P_REBILL_FLAG IN Inputs rebill flag
5872: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5873: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 5872: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

5868: | P_COMMIT IN Standard in parameter
5869: | P_VALIDATION_LEVEL IN Standard in parameter
5870: | P_LOAN_ID IN Inputs loan id
5871: | P_REBILL_FLAG IN Inputs rebill flag
5872: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5873: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5874: | X_MSG_DATA OUT NOCOPY Standard out parameter
5875: |
5876: | KNOWN ISSUES

Line 5873: | X_MSG_COUNT OUT NOCOPY Standard out parameter

5869: | P_VALIDATION_LEVEL IN Standard in parameter
5870: | P_LOAN_ID IN Inputs loan id
5871: | P_REBILL_FLAG IN Inputs rebill flag
5872: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5873: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5874: | X_MSG_DATA OUT NOCOPY Standard out parameter
5875: |
5876: | KNOWN ISSUES
5877: | None

Line 5874: | X_MSG_DATA OUT NOCOPY Standard out parameter

5870: | P_LOAN_ID IN Inputs loan id
5871: | P_REBILL_FLAG IN Inputs rebill flag
5872: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5873: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5874: | X_MSG_DATA OUT NOCOPY Standard out parameter
5875: |
5876: | KNOWN ISSUES
5877: | None
5878: |

Line 5990: -- Standard start of API savepoint

5986: BEGIN
5987:
5988: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
5989:
5990: -- Standard start of API savepoint
5991: SAVEPOINT REVERSE_LAST_AMORTIZATION;
5992: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
5993:
5994: -- Standard call to check for call compatibility

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

5990: -- Standard start of API savepoint
5991: SAVEPOINT REVERSE_LAST_AMORTIZATION;
5992: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
5993:
5994: -- Standard call to check for call compatibility
5995: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
5996: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
5997: END IF;
5998:

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

6257:
6258: -- END OF BODY OF API
6259: x_return_status := FND_API.G_RET_STS_SUCCESS;
6260:
6261: -- Standard call to get message count and if count is 1, get message info
6262: FND_MSG_PUB.Count_And_Get(
6263: p_encoded => FND_API.G_FALSE,
6264: p_count => x_msg_count,
6265: p_data => x_msg_data);

Line 6304: | P_API_VERSION IN Standard in parameter

6300: |
6301: | PSEUDO CODE/LOGIC
6302: |
6303: | PARAMETERS
6304: | P_API_VERSION IN Standard in parameter
6305: | P_INIT_MSG_LIST IN Standard in parameter
6306: | P_COMMIT IN Standard in parameter
6307: | P_VALIDATION_LEVEL IN Standard in parameter
6308: | P_LOAN_ID IN Inputs loan id

Line 6305: | P_INIT_MSG_LIST IN Standard in parameter

6301: | PSEUDO CODE/LOGIC
6302: |
6303: | PARAMETERS
6304: | P_API_VERSION IN Standard in parameter
6305: | P_INIT_MSG_LIST IN Standard in parameter
6306: | P_COMMIT IN Standard in parameter
6307: | P_VALIDATION_LEVEL IN Standard in parameter
6308: | P_LOAN_ID IN Inputs loan id
6309: | P_LINE_TYPE IN PRIN or INT or FEE

Line 6306: | P_COMMIT IN Standard in parameter

6302: |
6303: | PARAMETERS
6304: | P_API_VERSION IN Standard in parameter
6305: | P_INIT_MSG_LIST IN Standard in parameter
6306: | P_COMMIT IN Standard in parameter
6307: | P_VALIDATION_LEVEL IN Standard in parameter
6308: | P_LOAN_ID IN Inputs loan id
6309: | P_LINE_TYPE IN PRIN or INT or FEE
6310: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 6307: | P_VALIDATION_LEVEL IN Standard in parameter

6303: | PARAMETERS
6304: | P_API_VERSION IN Standard in parameter
6305: | P_INIT_MSG_LIST IN Standard in parameter
6306: | P_COMMIT IN Standard in parameter
6307: | P_VALIDATION_LEVEL IN Standard in parameter
6308: | P_LOAN_ID IN Inputs loan id
6309: | P_LINE_TYPE IN PRIN or INT or FEE
6310: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6311: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 6310: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

6306: | P_COMMIT IN Standard in parameter
6307: | P_VALIDATION_LEVEL IN Standard in parameter
6308: | P_LOAN_ID IN Inputs loan id
6309: | P_LINE_TYPE IN PRIN or INT or FEE
6310: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6311: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6312: | X_MSG_DATA OUT NOCOPY Standard out parameter
6313: |
6314: | KNOWN ISSUES

Line 6311: | X_MSG_COUNT OUT NOCOPY Standard out parameter

6307: | P_VALIDATION_LEVEL IN Standard in parameter
6308: | P_LOAN_ID IN Inputs loan id
6309: | P_LINE_TYPE IN PRIN or INT or FEE
6310: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6311: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6312: | X_MSG_DATA OUT NOCOPY Standard out parameter
6313: |
6314: | KNOWN ISSUES
6315: | None

Line 6312: | X_MSG_DATA OUT NOCOPY Standard out parameter

6308: | P_LOAN_ID IN Inputs loan id
6309: | P_LINE_TYPE IN PRIN or INT or FEE
6310: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6311: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6312: | X_MSG_DATA OUT NOCOPY Standard out parameter
6313: |
6314: | KNOWN ISSUES
6315: | None
6316: |

Line 6413: -- Standard start of API savepoint

6409: BEGIN
6410:
6411: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
6412:
6413: -- Standard start of API savepoint
6414: SAVEPOINT REVERSE_LAST_AMORTIZATION;
6415: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
6416:
6417: -- Standard call to check for call compatibility

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

6413: -- Standard start of API savepoint
6414: SAVEPOINT REVERSE_LAST_AMORTIZATION;
6415: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
6416:
6417: -- Standard call to check for call compatibility
6418: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
6419: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
6420: END IF;
6421:

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

6540:
6541: -- END OF BODY OF API
6542: x_return_status := FND_API.G_RET_STS_SUCCESS;
6543:
6544: -- Standard call to get message count and if count is 1, get message info
6545: FND_MSG_PUB.Count_And_Get(
6546: p_encoded => FND_API.G_FALSE,
6547: p_count => x_msg_count,
6548: p_data => x_msg_data);

Line 6592: | P_API_VERSION IN Standard in parameter

6588: | CREATE_AR_INVOICES
6589: | LogMessage
6590: |
6591: | PARAMETERS
6592: | P_API_VERSION IN Standard in parameter
6593: | P_INIT_MSG_LIST IN Standard in parameter
6594: | P_COMMIT IN Standard in parameter
6595: | P_VALIDATION_LEVEL IN Standard in parameter
6596: | P_BILL_HEADER_REC IN Manual bill header record

Line 6593: | P_INIT_MSG_LIST IN Standard in parameter

6589: | LogMessage
6590: |
6591: | PARAMETERS
6592: | P_API_VERSION IN Standard in parameter
6593: | P_INIT_MSG_LIST IN Standard in parameter
6594: | P_COMMIT IN Standard in parameter
6595: | P_VALIDATION_LEVEL IN Standard in parameter
6596: | P_BILL_HEADER_REC IN Manual bill header record
6597: | P_BILL_LINES_TBL IN Manual bill lines

Line 6594: | P_COMMIT IN Standard in parameter

6590: |
6591: | PARAMETERS
6592: | P_API_VERSION IN Standard in parameter
6593: | P_INIT_MSG_LIST IN Standard in parameter
6594: | P_COMMIT IN Standard in parameter
6595: | P_VALIDATION_LEVEL IN Standard in parameter
6596: | P_BILL_HEADER_REC IN Manual bill header record
6597: | P_BILL_LINES_TBL IN Manual bill lines
6598: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 6595: | P_VALIDATION_LEVEL IN Standard in parameter

6591: | PARAMETERS
6592: | P_API_VERSION IN Standard in parameter
6593: | P_INIT_MSG_LIST IN Standard in parameter
6594: | P_COMMIT IN Standard in parameter
6595: | P_VALIDATION_LEVEL IN Standard in parameter
6596: | P_BILL_HEADER_REC IN Manual bill header record
6597: | P_BILL_LINES_TBL IN Manual bill lines
6598: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6599: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 6598: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

6594: | P_COMMIT IN Standard in parameter
6595: | P_VALIDATION_LEVEL IN Standard in parameter
6596: | P_BILL_HEADER_REC IN Manual bill header record
6597: | P_BILL_LINES_TBL IN Manual bill lines
6598: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6599: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6600: | X_MSG_DATA OUT NOCOPY Standard out parameter
6601: |
6602: | KNOWN ISSUES

Line 6599: | X_MSG_COUNT OUT NOCOPY Standard out parameter

6595: | P_VALIDATION_LEVEL IN Standard in parameter
6596: | P_BILL_HEADER_REC IN Manual bill header record
6597: | P_BILL_LINES_TBL IN Manual bill lines
6598: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6599: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6600: | X_MSG_DATA OUT NOCOPY Standard out parameter
6601: |
6602: | KNOWN ISSUES
6603: | None

Line 6600: | X_MSG_DATA OUT NOCOPY Standard out parameter

6596: | P_BILL_HEADER_REC IN Manual bill header record
6597: | P_BILL_LINES_TBL IN Manual bill lines
6598: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6599: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6600: | X_MSG_DATA OUT NOCOPY Standard out parameter
6601: |
6602: | KNOWN ISSUES
6603: | None
6604: |

Line 6693: -- Standard start of API savepoint

6689: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
6690:
6691: l_lines_tbl := P_BILL_LINES_TBL;
6692:
6693: -- Standard start of API savepoint
6694: SAVEPOINT CREATE_SINGLE_OFFCYCLE_BILL;
6695: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
6696:
6697: -- Standard call to check for call compatibility

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

6693: -- Standard start of API savepoint
6694: SAVEPOINT CREATE_SINGLE_OFFCYCLE_BILL;
6695: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
6696:
6697: -- Standard call to check for call compatibility
6698: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
6699: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
6700: END IF;
6701:

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

6960:
6961: -- END OF BODY OF API
6962: x_return_status := FND_API.G_RET_STS_SUCCESS;
6963:
6964: -- Standard call to get message count and if count is 1, get message info
6965: FND_MSG_PUB.Count_And_Get(
6966: p_encoded => FND_API.G_FALSE,
6967: p_count => x_msg_count,
6968: p_data => x_msg_data);

Line 7009: | P_API_VERSION IN Standard in parameter

7005: | CREATE_SINGLE_OFFCYCLE_BILL
7006: | LogMessage
7007: |
7008: | PARAMETERS
7009: | P_API_VERSION IN Standard in parameter
7010: | P_INIT_MSG_LIST IN Standard in parameter
7011: | P_COMMIT IN Standard in parameter
7012: | P_VALIDATION_LEVEL IN Standard in parameter
7013: | P_BILL_HEADERS_TBL IN Manual bill headers

Line 7010: | P_INIT_MSG_LIST IN Standard in parameter

7006: | LogMessage
7007: |
7008: | PARAMETERS
7009: | P_API_VERSION IN Standard in parameter
7010: | P_INIT_MSG_LIST IN Standard in parameter
7011: | P_COMMIT IN Standard in parameter
7012: | P_VALIDATION_LEVEL IN Standard in parameter
7013: | P_BILL_HEADERS_TBL IN Manual bill headers
7014: | P_BILL_LINES_TBL IN Manual bill lines

Line 7011: | P_COMMIT IN Standard in parameter

7007: |
7008: | PARAMETERS
7009: | P_API_VERSION IN Standard in parameter
7010: | P_INIT_MSG_LIST IN Standard in parameter
7011: | P_COMMIT IN Standard in parameter
7012: | P_VALIDATION_LEVEL IN Standard in parameter
7013: | P_BILL_HEADERS_TBL IN Manual bill headers
7014: | P_BILL_LINES_TBL IN Manual bill lines
7015: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 7012: | P_VALIDATION_LEVEL IN Standard in parameter

7008: | PARAMETERS
7009: | P_API_VERSION IN Standard in parameter
7010: | P_INIT_MSG_LIST IN Standard in parameter
7011: | P_COMMIT IN Standard in parameter
7012: | P_VALIDATION_LEVEL IN Standard in parameter
7013: | P_BILL_HEADERS_TBL IN Manual bill headers
7014: | P_BILL_LINES_TBL IN Manual bill lines
7015: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7016: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 7015: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

7011: | P_COMMIT IN Standard in parameter
7012: | P_VALIDATION_LEVEL IN Standard in parameter
7013: | P_BILL_HEADERS_TBL IN Manual bill headers
7014: | P_BILL_LINES_TBL IN Manual bill lines
7015: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7016: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7017: | X_MSG_DATA OUT NOCOPY Standard out parameter
7018: |
7019: | KNOWN ISSUES

Line 7016: | X_MSG_COUNT OUT NOCOPY Standard out parameter

7012: | P_VALIDATION_LEVEL IN Standard in parameter
7013: | P_BILL_HEADERS_TBL IN Manual bill headers
7014: | P_BILL_LINES_TBL IN Manual bill lines
7015: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7016: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7017: | X_MSG_DATA OUT NOCOPY Standard out parameter
7018: |
7019: | KNOWN ISSUES
7020: | None

Line 7017: | X_MSG_DATA OUT NOCOPY Standard out parameter

7013: | P_BILL_HEADERS_TBL IN Manual bill headers
7014: | P_BILL_LINES_TBL IN Manual bill lines
7015: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7016: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7017: | X_MSG_DATA OUT NOCOPY Standard out parameter
7018: |
7019: | KNOWN ISSUES
7020: | None
7021: |

Line 7061: -- Standard start of API savepoint

7057: BEGIN
7058:
7059: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
7060:
7061: -- Standard start of API savepoint
7062: SAVEPOINT CREATE_OFFCYCLE_BILLS;
7063: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
7064:
7065: -- Standard call to check for call compatibility

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

7061: -- Standard start of API savepoint
7062: SAVEPOINT CREATE_OFFCYCLE_BILLS;
7063: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
7064:
7065: -- Standard call to check for call compatibility
7066: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
7067: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
7068: END IF;
7069:

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

7141:
7142: -- END OF BODY OF API
7143: x_return_status := FND_API.G_RET_STS_SUCCESS;
7144:
7145: -- Standard call to get message count and if count is 1, get message info
7146: FND_MSG_PUB.Count_And_Get(
7147: p_encoded => FND_API.G_FALSE,
7148: p_count => x_msg_count,
7149: p_data => x_msg_data);

Line 7191: | P_API_VERSION IN Standard in parameter

7187: | CREATE_AR_CM
7188: | LogMessage
7189: |
7190: | PARAMETERS
7191: | P_API_VERSION IN Standard in parameter
7192: | P_INIT_MSG_LIST IN Standard in parameter
7193: | P_COMMIT IN Standard in parameter
7194: | P_VALIDATION_LEVEL IN Standard in parameter
7195: | P_AMORTIZATION_ID IN Input amortization id to reverse

Line 7192: | P_INIT_MSG_LIST IN Standard in parameter

7188: | LogMessage
7189: |
7190: | PARAMETERS
7191: | P_API_VERSION IN Standard in parameter
7192: | P_INIT_MSG_LIST IN Standard in parameter
7193: | P_COMMIT IN Standard in parameter
7194: | P_VALIDATION_LEVEL IN Standard in parameter
7195: | P_AMORTIZATION_ID IN Input amortization id to reverse
7196: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 7193: | P_COMMIT IN Standard in parameter

7189: |
7190: | PARAMETERS
7191: | P_API_VERSION IN Standard in parameter
7192: | P_INIT_MSG_LIST IN Standard in parameter
7193: | P_COMMIT IN Standard in parameter
7194: | P_VALIDATION_LEVEL IN Standard in parameter
7195: | P_AMORTIZATION_ID IN Input amortization id to reverse
7196: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7197: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 7194: | P_VALIDATION_LEVEL IN Standard in parameter

7190: | PARAMETERS
7191: | P_API_VERSION IN Standard in parameter
7192: | P_INIT_MSG_LIST IN Standard in parameter
7193: | P_COMMIT IN Standard in parameter
7194: | P_VALIDATION_LEVEL IN Standard in parameter
7195: | P_AMORTIZATION_ID IN Input amortization id to reverse
7196: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7197: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7198: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 7196: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

7192: | P_INIT_MSG_LIST IN Standard in parameter
7193: | P_COMMIT IN Standard in parameter
7194: | P_VALIDATION_LEVEL IN Standard in parameter
7195: | P_AMORTIZATION_ID IN Input amortization id to reverse
7196: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7197: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7198: | X_MSG_DATA OUT NOCOPY Standard out parameter
7199: |
7200: | KNOWN ISSUES

Line 7197: | X_MSG_COUNT OUT NOCOPY Standard out parameter

7193: | P_COMMIT IN Standard in parameter
7194: | P_VALIDATION_LEVEL IN Standard in parameter
7195: | P_AMORTIZATION_ID IN Input amortization id to reverse
7196: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7197: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7198: | X_MSG_DATA OUT NOCOPY Standard out parameter
7199: |
7200: | KNOWN ISSUES
7201: | None

Line 7198: | X_MSG_DATA OUT NOCOPY Standard out parameter

7194: | P_VALIDATION_LEVEL IN Standard in parameter
7195: | P_AMORTIZATION_ID IN Input amortization id to reverse
7196: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7197: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7198: | X_MSG_DATA OUT NOCOPY Standard out parameter
7199: |
7200: | KNOWN ISSUES
7201: | None
7202: |

Line 7289: -- Standard start of API savepoint

7285: BEGIN
7286:
7287: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
7288:
7289: -- Standard start of API savepoint
7290: SAVEPOINT REVERSE_OFFCYCLE_BILL;
7291: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
7292:
7293: -- Standard call to check for call compatibility

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

7289: -- Standard start of API savepoint
7290: SAVEPOINT REVERSE_OFFCYCLE_BILL;
7291: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
7292:
7293: -- Standard call to check for call compatibility
7294: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
7295: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
7296: END IF;
7297:

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

7443:
7444: -- END OF BODY OF API
7445: x_return_status := FND_API.G_RET_STS_SUCCESS;
7446:
7447: -- Standard call to get message count and if count is 1, get message info
7448: FND_MSG_PUB.Count_And_Get(
7449: p_encoded => FND_API.G_FALSE,
7450: p_count => x_msg_count,
7451: p_data => x_msg_data);

Line 7493: | P_API_VERSION IN Standard in parameter

7489: | init
7490: | LogMessage
7491: |
7492: | PARAMETERS
7493: | P_API_VERSION IN Standard in parameter
7494: | P_INIT_MSG_LIST IN Standard in parameter
7495: | P_COMMIT IN Standard in parameter
7496: | P_VALIDATION_LEVEL IN Standard in parameter
7497: | P_LOAN_ID IN Loan ID

Line 7494: | P_INIT_MSG_LIST IN Standard in parameter

7490: | LogMessage
7491: |
7492: | PARAMETERS
7493: | P_API_VERSION IN Standard in parameter
7494: | P_INIT_MSG_LIST IN Standard in parameter
7495: | P_COMMIT IN Standard in parameter
7496: | P_VALIDATION_LEVEL IN Standard in parameter
7497: | P_LOAN_ID IN Loan ID
7498: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 7495: | P_COMMIT IN Standard in parameter

7491: |
7492: | PARAMETERS
7493: | P_API_VERSION IN Standard in parameter
7494: | P_INIT_MSG_LIST IN Standard in parameter
7495: | P_COMMIT IN Standard in parameter
7496: | P_VALIDATION_LEVEL IN Standard in parameter
7497: | P_LOAN_ID IN Loan ID
7498: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7499: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 7496: | P_VALIDATION_LEVEL IN Standard in parameter

7492: | PARAMETERS
7493: | P_API_VERSION IN Standard in parameter
7494: | P_INIT_MSG_LIST IN Standard in parameter
7495: | P_COMMIT IN Standard in parameter
7496: | P_VALIDATION_LEVEL IN Standard in parameter
7497: | P_LOAN_ID IN Loan ID
7498: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7499: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7500: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 7498: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

7494: | P_INIT_MSG_LIST IN Standard in parameter
7495: | P_COMMIT IN Standard in parameter
7496: | P_VALIDATION_LEVEL IN Standard in parameter
7497: | P_LOAN_ID IN Loan ID
7498: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7499: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7500: | X_MSG_DATA OUT NOCOPY Standard out parameter
7501: |
7502: | KNOWN ISSUES

Line 7499: | X_MSG_COUNT OUT NOCOPY Standard out parameter

7495: | P_COMMIT IN Standard in parameter
7496: | P_VALIDATION_LEVEL IN Standard in parameter
7497: | P_LOAN_ID IN Loan ID
7498: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7499: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7500: | X_MSG_DATA OUT NOCOPY Standard out parameter
7501: |
7502: | KNOWN ISSUES
7503: | None

Line 7500: | X_MSG_DATA OUT NOCOPY Standard out parameter

7496: | P_VALIDATION_LEVEL IN Standard in parameter
7497: | P_LOAN_ID IN Loan ID
7498: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7499: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7500: | X_MSG_DATA OUT NOCOPY Standard out parameter
7501: |
7502: | KNOWN ISSUES
7503: | None
7504: |

Line 7610: -- Standard start of API savepoint

7606: BEGIN
7607:
7608: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
7609:
7610: -- Standard start of API savepoint
7611: SAVEPOINT ADJUST_ORIGINAL_RECEIVABLE;
7612: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
7613:
7614: -- Standard call to check for call compatibility

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

7610: -- Standard start of API savepoint
7611: SAVEPOINT ADJUST_ORIGINAL_RECEIVABLE;
7612: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
7613:
7614: -- Standard call to check for call compatibility
7615: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
7616: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
7617: END IF;
7618:

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

7812:
7813: -- END OF BODY OF API
7814: x_return_status := FND_API.G_RET_STS_SUCCESS;
7815:
7816: -- Standard call to get message count and if count is 1, get message info
7817: FND_MSG_PUB.Count_And_Get(
7818: p_encoded => FND_API.G_FALSE,
7819: p_count => x_msg_count,
7820: p_data => x_msg_data);

Line 7861: | P_API_VERSION IN Standard in parameter

7857: | LogMessage
7858: | CREATE_OFFCYCLE_BILLS
7859: |
7860: | PARAMETERS
7861: | P_API_VERSION IN Standard in parameter
7862: | P_INIT_MSG_LIST IN Standard in parameter
7863: | P_COMMIT IN Standard in parameter
7864: | P_VALIDATION_LEVEL IN Standard in parameter
7865: | P_LOAN_ID IN Loan ID

Line 7862: | P_INIT_MSG_LIST IN Standard in parameter

7858: | CREATE_OFFCYCLE_BILLS
7859: |
7860: | PARAMETERS
7861: | P_API_VERSION IN Standard in parameter
7862: | P_INIT_MSG_LIST IN Standard in parameter
7863: | P_COMMIT IN Standard in parameter
7864: | P_VALIDATION_LEVEL IN Standard in parameter
7865: | P_LOAN_ID IN Loan ID
7866: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 7863: | P_COMMIT IN Standard in parameter

7859: |
7860: | PARAMETERS
7861: | P_API_VERSION IN Standard in parameter
7862: | P_INIT_MSG_LIST IN Standard in parameter
7863: | P_COMMIT IN Standard in parameter
7864: | P_VALIDATION_LEVEL IN Standard in parameter
7865: | P_LOAN_ID IN Loan ID
7866: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7867: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 7864: | P_VALIDATION_LEVEL IN Standard in parameter

7860: | PARAMETERS
7861: | P_API_VERSION IN Standard in parameter
7862: | P_INIT_MSG_LIST IN Standard in parameter
7863: | P_COMMIT IN Standard in parameter
7864: | P_VALIDATION_LEVEL IN Standard in parameter
7865: | P_LOAN_ID IN Loan ID
7866: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7867: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7868: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 7866: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

7862: | P_INIT_MSG_LIST IN Standard in parameter
7863: | P_COMMIT IN Standard in parameter
7864: | P_VALIDATION_LEVEL IN Standard in parameter
7865: | P_LOAN_ID IN Loan ID
7866: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7867: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7868: | X_MSG_DATA OUT NOCOPY Standard out parameter
7869: |
7870: | KNOWN ISSUES

Line 7867: | X_MSG_COUNT OUT NOCOPY Standard out parameter

7863: | P_COMMIT IN Standard in parameter
7864: | P_VALIDATION_LEVEL IN Standard in parameter
7865: | P_LOAN_ID IN Loan ID
7866: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7867: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7868: | X_MSG_DATA OUT NOCOPY Standard out parameter
7869: |
7870: | KNOWN ISSUES
7871: | None

Line 7868: | X_MSG_DATA OUT NOCOPY Standard out parameter

7864: | P_VALIDATION_LEVEL IN Standard in parameter
7865: | P_LOAN_ID IN Loan ID
7866: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7867: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7868: | X_MSG_DATA OUT NOCOPY Standard out parameter
7869: |
7870: | KNOWN ISSUES
7871: | None
7872: |

Line 7933: -- Standard start of API savepoint

7929: X_BILLED_YN := 'N';
7930:
7931: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
7932:
7933: -- Standard start of API savepoint
7934: SAVEPOINT PREBILL_SINGLE_LOAN;
7935: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
7936:
7937: -- Standard call to check for call compatibility

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

7933: -- Standard start of API savepoint
7934: SAVEPOINT PREBILL_SINGLE_LOAN;
7935: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
7936:
7937: -- Standard call to check for call compatibility
7938: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
7939: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
7940: END IF;
7941:

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

8136: -- END OF BODY OF API
8137: x_return_status := FND_API.G_RET_STS_SUCCESS;
8138: X_BILLED_YN := 'Y';
8139:
8140: -- Standard call to get message count and if count is 1, get message info
8141: FND_MSG_PUB.Count_And_Get(
8142: p_encoded => FND_API.G_FALSE,
8143: p_count => x_msg_count,
8144: p_data => x_msg_data);

Line 8324: | P_API_VERSION IN Standard in parameter

8320: | init
8321: | LogMessage
8322: |
8323: | PARAMETERS
8324: | P_API_VERSION IN Standard in parameter
8325: | P_INIT_MSG_LIST IN Standard in parameter
8326: | P_COMMIT IN Standard in parameter
8327: | P_VALIDATION_LEVEL IN Standard in parameter
8328: | P_LOAN_ID IN Loan ID

Line 8325: | P_INIT_MSG_LIST IN Standard in parameter

8321: | LogMessage
8322: |
8323: | PARAMETERS
8324: | P_API_VERSION IN Standard in parameter
8325: | P_INIT_MSG_LIST IN Standard in parameter
8326: | P_COMMIT IN Standard in parameter
8327: | P_VALIDATION_LEVEL IN Standard in parameter
8328: | P_LOAN_ID IN Loan ID
8329: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 8326: | P_COMMIT IN Standard in parameter

8322: |
8323: | PARAMETERS
8324: | P_API_VERSION IN Standard in parameter
8325: | P_INIT_MSG_LIST IN Standard in parameter
8326: | P_COMMIT IN Standard in parameter
8327: | P_VALIDATION_LEVEL IN Standard in parameter
8328: | P_LOAN_ID IN Loan ID
8329: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
8330: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 8327: | P_VALIDATION_LEVEL IN Standard in parameter

8323: | PARAMETERS
8324: | P_API_VERSION IN Standard in parameter
8325: | P_INIT_MSG_LIST IN Standard in parameter
8326: | P_COMMIT IN Standard in parameter
8327: | P_VALIDATION_LEVEL IN Standard in parameter
8328: | P_LOAN_ID IN Loan ID
8329: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
8330: | X_MSG_COUNT OUT NOCOPY Standard out parameter
8331: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 8329: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

8325: | P_INIT_MSG_LIST IN Standard in parameter
8326: | P_COMMIT IN Standard in parameter
8327: | P_VALIDATION_LEVEL IN Standard in parameter
8328: | P_LOAN_ID IN Loan ID
8329: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
8330: | X_MSG_COUNT OUT NOCOPY Standard out parameter
8331: | X_MSG_DATA OUT NOCOPY Standard out parameter
8332: |
8333: | KNOWN ISSUES

Line 8330: | X_MSG_COUNT OUT NOCOPY Standard out parameter

8326: | P_COMMIT IN Standard in parameter
8327: | P_VALIDATION_LEVEL IN Standard in parameter
8328: | P_LOAN_ID IN Loan ID
8329: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
8330: | X_MSG_COUNT OUT NOCOPY Standard out parameter
8331: | X_MSG_DATA OUT NOCOPY Standard out parameter
8332: |
8333: | KNOWN ISSUES
8334: | None

Line 8331: | X_MSG_DATA OUT NOCOPY Standard out parameter

8327: | P_VALIDATION_LEVEL IN Standard in parameter
8328: | P_LOAN_ID IN Loan ID
8329: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
8330: | X_MSG_COUNT OUT NOCOPY Standard out parameter
8331: | X_MSG_DATA OUT NOCOPY Standard out parameter
8332: |
8333: | KNOWN ISSUES
8334: | None
8335: |

Line 8421: -- Standard start of API savepoint

8417: BEGIN
8418:
8419: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
8420:
8421: -- Standard start of API savepoint
8422: SAVEPOINT FORGIVENESS_ADJUSTMENT;
8423: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
8424:
8425: -- Standard call to check for call compatibility

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

8421: -- Standard start of API savepoint
8422: SAVEPOINT FORGIVENESS_ADJUSTMENT;
8423: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
8424:
8425: -- Standard call to check for call compatibility
8426: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
8427: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
8428: END IF;
8429:

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

8568:
8569: -- END OF BODY OF API
8570: x_return_status := FND_API.G_RET_STS_SUCCESS;
8571:
8572: -- Standard call to get message count and if count is 1, get message info
8573: FND_MSG_PUB.Count_And_Get(
8574: p_encoded => FND_API.G_FALSE,
8575: p_count => x_msg_count,
8576: p_data => x_msg_data);

Line 8618: | P_API_VERSION IN Standard in parameter

8614: | init
8615: | LogMessage
8616: |
8617: | PARAMETERS
8618: | P_API_VERSION IN Standard in parameter
8619: | P_INIT_MSG_LIST IN Standard in parameter
8620: | P_COMMIT IN Standard in parameter
8621: | P_VALIDATION_LEVEL IN Standard in parameter
8622: | P_LOAN_ID IN Loan ID

Line 8619: | P_INIT_MSG_LIST IN Standard in parameter

8615: | LogMessage
8616: |
8617: | PARAMETERS
8618: | P_API_VERSION IN Standard in parameter
8619: | P_INIT_MSG_LIST IN Standard in parameter
8620: | P_COMMIT IN Standard in parameter
8621: | P_VALIDATION_LEVEL IN Standard in parameter
8622: | P_LOAN_ID IN Loan ID
8623: | X_INVOICES_TBL OUT NOCOPY LNS_BILLING_BATCH_PUB.INVOICE_DETAILS_TBL,

Line 8620: | P_COMMIT IN Standard in parameter

8616: |
8617: | PARAMETERS
8618: | P_API_VERSION IN Standard in parameter
8619: | P_INIT_MSG_LIST IN Standard in parameter
8620: | P_COMMIT IN Standard in parameter
8621: | P_VALIDATION_LEVEL IN Standard in parameter
8622: | P_LOAN_ID IN Loan ID
8623: | X_INVOICES_TBL OUT NOCOPY LNS_BILLING_BATCH_PUB.INVOICE_DETAILS_TBL,
8624: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 8621: | P_VALIDATION_LEVEL IN Standard in parameter

8617: | PARAMETERS
8618: | P_API_VERSION IN Standard in parameter
8619: | P_INIT_MSG_LIST IN Standard in parameter
8620: | P_COMMIT IN Standard in parameter
8621: | P_VALIDATION_LEVEL IN Standard in parameter
8622: | P_LOAN_ID IN Loan ID
8623: | X_INVOICES_TBL OUT NOCOPY LNS_BILLING_BATCH_PUB.INVOICE_DETAILS_TBL,
8624: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
8625: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 8624: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

8620: | P_COMMIT IN Standard in parameter
8621: | P_VALIDATION_LEVEL IN Standard in parameter
8622: | P_LOAN_ID IN Loan ID
8623: | X_INVOICES_TBL OUT NOCOPY LNS_BILLING_BATCH_PUB.INVOICE_DETAILS_TBL,
8624: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
8625: | X_MSG_COUNT OUT NOCOPY Standard out parameter
8626: | X_MSG_DATA OUT NOCOPY Standard out parameter
8627: |
8628: | KNOWN ISSUES

Line 8625: | X_MSG_COUNT OUT NOCOPY Standard out parameter

8621: | P_VALIDATION_LEVEL IN Standard in parameter
8622: | P_LOAN_ID IN Loan ID
8623: | X_INVOICES_TBL OUT NOCOPY LNS_BILLING_BATCH_PUB.INVOICE_DETAILS_TBL,
8624: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
8625: | X_MSG_COUNT OUT NOCOPY Standard out parameter
8626: | X_MSG_DATA OUT NOCOPY Standard out parameter
8627: |
8628: | KNOWN ISSUES
8629: | None

Line 8626: | X_MSG_DATA OUT NOCOPY Standard out parameter

8622: | P_LOAN_ID IN Loan ID
8623: | X_INVOICES_TBL OUT NOCOPY LNS_BILLING_BATCH_PUB.INVOICE_DETAILS_TBL,
8624: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
8625: | X_MSG_COUNT OUT NOCOPY Standard out parameter
8626: | X_MSG_DATA OUT NOCOPY Standard out parameter
8627: |
8628: | KNOWN ISSUES
8629: | None
8630: |

Line 8702: -- Standard start of API savepoint

8698: BEGIN
8699:
8700: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
8701:
8702: -- Standard start of API savepoint
8703: SAVEPOINT GET_NEXT_INSTAL_TO_BILL;
8704: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
8705:
8706: -- Standard call to check for call compatibility

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

8702: -- Standard start of API savepoint
8703: SAVEPOINT GET_NEXT_INSTAL_TO_BILL;
8704: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
8705:
8706: -- Standard call to check for call compatibility
8707: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
8708: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
8709: END IF;
8710:

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

8955:
8956: -- END OF BODY OF API
8957: x_return_status := FND_API.G_RET_STS_SUCCESS;
8958:
8959: -- Standard call to get message count and if count is 1, get message info
8960: FND_MSG_PUB.Count_And_Get(
8961: p_encoded => FND_API.G_FALSE,
8962: p_count => x_msg_count,
8963: p_data => x_msg_data);

Line 9005: | P_API_VERSION IN Standard in parameter

9001: | init
9002: | LogMessage
9003: |
9004: | PARAMETERS
9005: | P_API_VERSION IN Standard in parameter
9006: | P_INIT_MSG_LIST IN Standard in parameter
9007: | P_COMMIT IN Standard in parameter
9008: | P_VALIDATION_LEVEL IN Standard in parameter
9009: | P_LOAN_ID IN Loan ID

Line 9006: | P_INIT_MSG_LIST IN Standard in parameter

9002: | LogMessage
9003: |
9004: | PARAMETERS
9005: | P_API_VERSION IN Standard in parameter
9006: | P_INIT_MSG_LIST IN Standard in parameter
9007: | P_COMMIT IN Standard in parameter
9008: | P_VALIDATION_LEVEL IN Standard in parameter
9009: | P_LOAN_ID IN Loan ID
9010: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL

Line 9007: | P_COMMIT IN Standard in parameter

9003: |
9004: | PARAMETERS
9005: | P_API_VERSION IN Standard in parameter
9006: | P_INIT_MSG_LIST IN Standard in parameter
9007: | P_COMMIT IN Standard in parameter
9008: | P_VALIDATION_LEVEL IN Standard in parameter
9009: | P_LOAN_ID IN Loan ID
9010: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL
9011: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 9008: | P_VALIDATION_LEVEL IN Standard in parameter

9004: | PARAMETERS
9005: | P_API_VERSION IN Standard in parameter
9006: | P_INIT_MSG_LIST IN Standard in parameter
9007: | P_COMMIT IN Standard in parameter
9008: | P_VALIDATION_LEVEL IN Standard in parameter
9009: | P_LOAN_ID IN Loan ID
9010: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL
9011: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
9012: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 9011: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

9007: | P_COMMIT IN Standard in parameter
9008: | P_VALIDATION_LEVEL IN Standard in parameter
9009: | P_LOAN_ID IN Loan ID
9010: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL
9011: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
9012: | X_MSG_COUNT OUT NOCOPY Standard out parameter
9013: | X_MSG_DATA OUT NOCOPY Standard out parameter
9014: |
9015: | KNOWN ISSUES

Line 9012: | X_MSG_COUNT OUT NOCOPY Standard out parameter

9008: | P_VALIDATION_LEVEL IN Standard in parameter
9009: | P_LOAN_ID IN Loan ID
9010: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL
9011: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
9012: | X_MSG_COUNT OUT NOCOPY Standard out parameter
9013: | X_MSG_DATA OUT NOCOPY Standard out parameter
9014: |
9015: | KNOWN ISSUES
9016: | None

Line 9013: | X_MSG_DATA OUT NOCOPY Standard out parameter

9009: | P_LOAN_ID IN Loan ID
9010: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL
9011: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
9012: | X_MSG_COUNT OUT NOCOPY Standard out parameter
9013: | X_MSG_DATA OUT NOCOPY Standard out parameter
9014: |
9015: | KNOWN ISSUES
9016: | None
9017: |

Line 9094: -- Standard start of API savepoint

9090: BEGIN
9091:
9092: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
9093:
9094: -- Standard start of API savepoint
9095: SAVEPOINT BILL_AND_PAY_NEXT_INSTAL;
9096: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
9097:
9098: -- Standard call to check for call compatibility

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

9094: -- Standard start of API savepoint
9095: SAVEPOINT BILL_AND_PAY_NEXT_INSTAL;
9096: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
9097:
9098: -- Standard call to check for call compatibility
9099: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
9100: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
9101: END IF;
9102:

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

9224:
9225: -- END OF BODY OF API
9226: x_return_status := FND_API.G_RET_STS_SUCCESS;
9227:
9228: -- Standard call to get message count and if count is 1, get message info
9229: FND_MSG_PUB.Count_And_Get(
9230: p_encoded => FND_API.G_FALSE,
9231: p_count => x_msg_count,
9232: p_data => x_msg_data);

Line 9274: | P_API_VERSION IN Standard in parameter

9270: | init
9271: | LogMessage
9272: |
9273: | PARAMETERS
9274: | P_API_VERSION IN Standard in parameter
9275: | P_INIT_MSG_LIST IN Standard in parameter
9276: | P_COMMIT IN Standard in parameter
9277: | P_VALIDATION_LEVEL IN Standard in parameter
9278: | P_LOAN_ID IN Loan ID

Line 9275: | P_INIT_MSG_LIST IN Standard in parameter

9271: | LogMessage
9272: |
9273: | PARAMETERS
9274: | P_API_VERSION IN Standard in parameter
9275: | P_INIT_MSG_LIST IN Standard in parameter
9276: | P_COMMIT IN Standard in parameter
9277: | P_VALIDATION_LEVEL IN Standard in parameter
9278: | P_LOAN_ID IN Loan ID
9279: | P_AM_SCHED_TBL IN LNS_BILLING_BATCH_PUB.AMORTIZATION_SCHED_TBL,

Line 9276: | P_COMMIT IN Standard in parameter

9272: |
9273: | PARAMETERS
9274: | P_API_VERSION IN Standard in parameter
9275: | P_INIT_MSG_LIST IN Standard in parameter
9276: | P_COMMIT IN Standard in parameter
9277: | P_VALIDATION_LEVEL IN Standard in parameter
9278: | P_LOAN_ID IN Loan ID
9279: | P_AM_SCHED_TBL IN LNS_BILLING_BATCH_PUB.AMORTIZATION_SCHED_TBL,
9280: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL

Line 9277: | P_VALIDATION_LEVEL IN Standard in parameter

9273: | PARAMETERS
9274: | P_API_VERSION IN Standard in parameter
9275: | P_INIT_MSG_LIST IN Standard in parameter
9276: | P_COMMIT IN Standard in parameter
9277: | P_VALIDATION_LEVEL IN Standard in parameter
9278: | P_LOAN_ID IN Loan ID
9279: | P_AM_SCHED_TBL IN LNS_BILLING_BATCH_PUB.AMORTIZATION_SCHED_TBL,
9280: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL
9281: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 9281: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

9277: | P_VALIDATION_LEVEL IN Standard in parameter
9278: | P_LOAN_ID IN Loan ID
9279: | P_AM_SCHED_TBL IN LNS_BILLING_BATCH_PUB.AMORTIZATION_SCHED_TBL,
9280: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL
9281: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
9282: | X_MSG_COUNT OUT NOCOPY Standard out parameter
9283: | X_MSG_DATA OUT NOCOPY Standard out parameter
9284: |
9285: | KNOWN ISSUES

Line 9282: | X_MSG_COUNT OUT NOCOPY Standard out parameter

9278: | P_LOAN_ID IN Loan ID
9279: | P_AM_SCHED_TBL IN LNS_BILLING_BATCH_PUB.AMORTIZATION_SCHED_TBL,
9280: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL
9281: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
9282: | X_MSG_COUNT OUT NOCOPY Standard out parameter
9283: | X_MSG_DATA OUT NOCOPY Standard out parameter
9284: |
9285: | KNOWN ISSUES
9286: | None

Line 9283: | X_MSG_DATA OUT NOCOPY Standard out parameter

9279: | P_AM_SCHED_TBL IN LNS_BILLING_BATCH_PUB.AMORTIZATION_SCHED_TBL,
9280: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL
9281: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
9282: | X_MSG_COUNT OUT NOCOPY Standard out parameter
9283: | X_MSG_DATA OUT NOCOPY Standard out parameter
9284: |
9285: | KNOWN ISSUES
9286: | None
9287: |

Line 9394: -- Standard start of API savepoint

9390: BEGIN
9391:
9392: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
9393:
9394: -- Standard start of API savepoint
9395: SAVEPOINT PAY_INSTALLMENTS;
9396: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
9397:
9398: -- Standard call to check for call compatibility

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

9394: -- Standard start of API savepoint
9395: SAVEPOINT PAY_INSTALLMENTS;
9396: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
9397:
9398: -- Standard call to check for call compatibility
9399: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
9400: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
9401: END IF;
9402:

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

9729:
9730: -- END OF BODY OF API
9731: x_return_status := FND_API.G_RET_STS_SUCCESS;
9732:
9733: -- Standard call to get message count and if count is 1, get message info
9734: FND_MSG_PUB.Count_And_Get(
9735: p_encoded => FND_API.G_FALSE,
9736: p_count => x_msg_count,
9737: p_data => x_msg_data);

Line 9945: | P_API_VERSION IN Standard in parameter

9941: | init
9942: | LogMessage
9943: |
9944: | PARAMETERS
9945: | P_API_VERSION IN Standard in parameter
9946: | P_INIT_MSG_LIST IN Standard in parameter
9947: | P_COMMIT IN Standard in parameter
9948: | P_VALIDATION_LEVEL IN Standard in parameter
9949: | P_LOAN_ID IN Loan ID

Line 9946: | P_INIT_MSG_LIST IN Standard in parameter

9942: | LogMessage
9943: |
9944: | PARAMETERS
9945: | P_API_VERSION IN Standard in parameter
9946: | P_INIT_MSG_LIST IN Standard in parameter
9947: | P_COMMIT IN Standard in parameter
9948: | P_VALIDATION_LEVEL IN Standard in parameter
9949: | P_LOAN_ID IN Loan ID
9950: | P_AM_SCHED_ID IN Amortization sched ID

Line 9947: | P_COMMIT IN Standard in parameter

9943: |
9944: | PARAMETERS
9945: | P_API_VERSION IN Standard in parameter
9946: | P_INIT_MSG_LIST IN Standard in parameter
9947: | P_COMMIT IN Standard in parameter
9948: | P_VALIDATION_LEVEL IN Standard in parameter
9949: | P_LOAN_ID IN Loan ID
9950: | P_AM_SCHED_ID IN Amortization sched ID
9951: | X_INVOICES_TBL OUT NOCOPY LNS_BILLING_BATCH_PUB.INVOICE_DETAILS_TBL,

Line 9948: | P_VALIDATION_LEVEL IN Standard in parameter

9944: | PARAMETERS
9945: | P_API_VERSION IN Standard in parameter
9946: | P_INIT_MSG_LIST IN Standard in parameter
9947: | P_COMMIT IN Standard in parameter
9948: | P_VALIDATION_LEVEL IN Standard in parameter
9949: | P_LOAN_ID IN Loan ID
9950: | P_AM_SCHED_ID IN Amortization sched ID
9951: | X_INVOICES_TBL OUT NOCOPY LNS_BILLING_BATCH_PUB.INVOICE_DETAILS_TBL,
9952: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 9952: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

9948: | P_VALIDATION_LEVEL IN Standard in parameter
9949: | P_LOAN_ID IN Loan ID
9950: | P_AM_SCHED_ID IN Amortization sched ID
9951: | X_INVOICES_TBL OUT NOCOPY LNS_BILLING_BATCH_PUB.INVOICE_DETAILS_TBL,
9952: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
9953: | X_MSG_COUNT OUT NOCOPY Standard out parameter
9954: | X_MSG_DATA OUT NOCOPY Standard out parameter
9955: |
9956: | KNOWN ISSUES

Line 9953: | X_MSG_COUNT OUT NOCOPY Standard out parameter

9949: | P_LOAN_ID IN Loan ID
9950: | P_AM_SCHED_ID IN Amortization sched ID
9951: | X_INVOICES_TBL OUT NOCOPY LNS_BILLING_BATCH_PUB.INVOICE_DETAILS_TBL,
9952: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
9953: | X_MSG_COUNT OUT NOCOPY Standard out parameter
9954: | X_MSG_DATA OUT NOCOPY Standard out parameter
9955: |
9956: | KNOWN ISSUES
9957: | None

Line 9954: | X_MSG_DATA OUT NOCOPY Standard out parameter

9950: | P_AM_SCHED_ID IN Amortization sched ID
9951: | X_INVOICES_TBL OUT NOCOPY LNS_BILLING_BATCH_PUB.INVOICE_DETAILS_TBL,
9952: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
9953: | X_MSG_COUNT OUT NOCOPY Standard out parameter
9954: | X_MSG_DATA OUT NOCOPY Standard out parameter
9955: |
9956: | KNOWN ISSUES
9957: | None
9958: |

Line 10031: -- Standard start of API savepoint

10027: BEGIN
10028:
10029: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
10030:
10031: -- Standard start of API savepoint
10032: SAVEPOINT GET_BILLED_INSTALLMENT;
10033: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
10034:
10035: -- Standard call to check for call compatibility

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

10031: -- Standard start of API savepoint
10032: SAVEPOINT GET_BILLED_INSTALLMENT;
10033: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
10034:
10035: -- Standard call to check for call compatibility
10036: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
10037: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
10038: END IF;
10039:

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

10101:
10102: -- END OF BODY OF API
10103: x_return_status := FND_API.G_RET_STS_SUCCESS;
10104:
10105: -- Standard call to get message count and if count is 1, get message info
10106: FND_MSG_PUB.Count_And_Get(
10107: p_encoded => FND_API.G_FALSE,
10108: p_count => x_msg_count,
10109: p_data => x_msg_data);

Line 10145: | P_API_VERSION IN Standard in parameter

10141: |
10142: | PSEUDO CODE/LOGIC
10143: |
10144: | PARAMETERS
10145: | P_API_VERSION IN Standard in parameter
10146: | P_INIT_MSG_LIST IN Standard in parameter
10147: | P_COMMIT IN Standard in parameter
10148: | P_VALIDATION_LEVEL IN Standard in parameter
10149: | P_LOAN_ID IN Loan ID

Line 10146: | P_INIT_MSG_LIST IN Standard in parameter

10142: | PSEUDO CODE/LOGIC
10143: |
10144: | PARAMETERS
10145: | P_API_VERSION IN Standard in parameter
10146: | P_INIT_MSG_LIST IN Standard in parameter
10147: | P_COMMIT IN Standard in parameter
10148: | P_VALIDATION_LEVEL IN Standard in parameter
10149: | P_LOAN_ID IN Loan ID
10150: | P_BILL_HEADERS_TBL IN LNS_BILLING_BATCH_PUB.BILL_HEADERS_TBL,

Line 10147: | P_COMMIT IN Standard in parameter

10143: |
10144: | PARAMETERS
10145: | P_API_VERSION IN Standard in parameter
10146: | P_INIT_MSG_LIST IN Standard in parameter
10147: | P_COMMIT IN Standard in parameter
10148: | P_VALIDATION_LEVEL IN Standard in parameter
10149: | P_LOAN_ID IN Loan ID
10150: | P_BILL_HEADERS_TBL IN LNS_BILLING_BATCH_PUB.BILL_HEADERS_TBL,
10151: | P_BILL_LINES_TBL IN LNS_BILLING_BATCH_PUB.BILL_LINES_TBL,

Line 10148: | P_VALIDATION_LEVEL IN Standard in parameter

10144: | PARAMETERS
10145: | P_API_VERSION IN Standard in parameter
10146: | P_INIT_MSG_LIST IN Standard in parameter
10147: | P_COMMIT IN Standard in parameter
10148: | P_VALIDATION_LEVEL IN Standard in parameter
10149: | P_LOAN_ID IN Loan ID
10150: | P_BILL_HEADERS_TBL IN LNS_BILLING_BATCH_PUB.BILL_HEADERS_TBL,
10151: | P_BILL_LINES_TBL IN LNS_BILLING_BATCH_PUB.BILL_LINES_TBL,
10152: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL

Line 10153: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

10149: | P_LOAN_ID IN Loan ID
10150: | P_BILL_HEADERS_TBL IN LNS_BILLING_BATCH_PUB.BILL_HEADERS_TBL,
10151: | P_BILL_LINES_TBL IN LNS_BILLING_BATCH_PUB.BILL_LINES_TBL,
10152: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL
10153: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
10154: | X_MSG_COUNT OUT NOCOPY Standard out parameter
10155: | X_MSG_DATA OUT NOCOPY Standard out parameter
10156: |
10157: | KNOWN ISSUES

Line 10154: | X_MSG_COUNT OUT NOCOPY Standard out parameter

10150: | P_BILL_HEADERS_TBL IN LNS_BILLING_BATCH_PUB.BILL_HEADERS_TBL,
10151: | P_BILL_LINES_TBL IN LNS_BILLING_BATCH_PUB.BILL_LINES_TBL,
10152: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL
10153: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
10154: | X_MSG_COUNT OUT NOCOPY Standard out parameter
10155: | X_MSG_DATA OUT NOCOPY Standard out parameter
10156: |
10157: | KNOWN ISSUES
10158: | None

Line 10155: | X_MSG_DATA OUT NOCOPY Standard out parameter

10151: | P_BILL_LINES_TBL IN LNS_BILLING_BATCH_PUB.BILL_LINES_TBL,
10152: | P_CASH_RECEIPTS_TBL IN LNS_BILLING_BATCH_PUB.CASH_RECEIPT_TBL
10153: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
10154: | X_MSG_COUNT OUT NOCOPY Standard out parameter
10155: | X_MSG_DATA OUT NOCOPY Standard out parameter
10156: |
10157: | KNOWN ISSUES
10158: | None
10159: |

Line 10220: -- Standard start of API savepoint

10216: BEGIN
10217:
10218: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
10219:
10220: -- Standard start of API savepoint
10221: SAVEPOINT BILL_AND_PAY_OFFCYCLE_BILLS;
10222: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
10223:
10224: -- Standard call to check for call compatibility

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

10220: -- Standard start of API savepoint
10221: SAVEPOINT BILL_AND_PAY_OFFCYCLE_BILLS;
10222: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
10223:
10224: -- Standard call to check for call compatibility
10225: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
10226: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
10227: END IF;
10228:

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

10322:
10323: -- END OF BODY OF API
10324: x_return_status := FND_API.G_RET_STS_SUCCESS;
10325:
10326: -- Standard call to get message count and if count is 1, get message info
10327: FND_MSG_PUB.Count_And_Get(
10328: p_encoded => FND_API.G_FALSE,
10329: p_count => x_msg_count,
10330: p_data => x_msg_data);

Line 10371: | P_API_VERSION IN Standard in parameter

10367: | LogMessage
10368: | CREATE_OFFCYCLE_BILLS
10369: |
10370: | PARAMETERS
10371: | P_API_VERSION IN Standard in parameter
10372: | P_INIT_MSG_LIST IN Standard in parameter
10373: | P_COMMIT IN Standard in parameter
10374: | P_VALIDATION_LEVEL IN Standard in parameter
10375: | P_LOAN_ID IN Loan ID

Line 10372: | P_INIT_MSG_LIST IN Standard in parameter

10368: | CREATE_OFFCYCLE_BILLS
10369: |
10370: | PARAMETERS
10371: | P_API_VERSION IN Standard in parameter
10372: | P_INIT_MSG_LIST IN Standard in parameter
10373: | P_COMMIT IN Standard in parameter
10374: | P_VALIDATION_LEVEL IN Standard in parameter
10375: | P_LOAN_ID IN Loan ID
10376: | X_BILLED_YN OUT NOCOPY Signifies whether loan billed

Line 10373: | P_COMMIT IN Standard in parameter

10369: |
10370: | PARAMETERS
10371: | P_API_VERSION IN Standard in parameter
10372: | P_INIT_MSG_LIST IN Standard in parameter
10373: | P_COMMIT IN Standard in parameter
10374: | P_VALIDATION_LEVEL IN Standard in parameter
10375: | P_LOAN_ID IN Loan ID
10376: | X_BILLED_YN OUT NOCOPY Signifies whether loan billed
10377: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 10374: | P_VALIDATION_LEVEL IN Standard in parameter

10370: | PARAMETERS
10371: | P_API_VERSION IN Standard in parameter
10372: | P_INIT_MSG_LIST IN Standard in parameter
10373: | P_COMMIT IN Standard in parameter
10374: | P_VALIDATION_LEVEL IN Standard in parameter
10375: | P_LOAN_ID IN Loan ID
10376: | X_BILLED_YN OUT NOCOPY Signifies whether loan billed
10377: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
10378: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 10377: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

10373: | P_COMMIT IN Standard in parameter
10374: | P_VALIDATION_LEVEL IN Standard in parameter
10375: | P_LOAN_ID IN Loan ID
10376: | X_BILLED_YN OUT NOCOPY Signifies whether loan billed
10377: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
10378: | X_MSG_COUNT OUT NOCOPY Standard out parameter
10379: | X_MSG_DATA OUT NOCOPY Standard out parameter
10380: |
10381: | KNOWN ISSUES

Line 10378: | X_MSG_COUNT OUT NOCOPY Standard out parameter

10374: | P_VALIDATION_LEVEL IN Standard in parameter
10375: | P_LOAN_ID IN Loan ID
10376: | X_BILLED_YN OUT NOCOPY Signifies whether loan billed
10377: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
10378: | X_MSG_COUNT OUT NOCOPY Standard out parameter
10379: | X_MSG_DATA OUT NOCOPY Standard out parameter
10380: |
10381: | KNOWN ISSUES
10382: | None

Line 10379: | X_MSG_DATA OUT NOCOPY Standard out parameter

10375: | P_LOAN_ID IN Loan ID
10376: | X_BILLED_YN OUT NOCOPY Signifies whether loan billed
10377: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
10378: | X_MSG_COUNT OUT NOCOPY Standard out parameter
10379: | X_MSG_DATA OUT NOCOPY Standard out parameter
10380: |
10381: | KNOWN ISSUES
10382: | None
10383: |

Line 10450: -- Standard start of API savepoint

10446:
10447:
10448: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
10449:
10450: -- Standard start of API savepoint
10451: SAVEPOINT BILL_SING_LOAN_SUBMIT_APPR_FEE;
10452: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
10453:
10454: -- Standard call to check for call compatibility

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

10450: -- Standard start of API savepoint
10451: SAVEPOINT BILL_SING_LOAN_SUBMIT_APPR_FEE;
10452: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
10453:
10454: -- Standard call to check for call compatibility
10455: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
10456: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
10457: END IF;
10458:

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

10655: -- END OF BODY OF API
10656: x_return_status := FND_API.G_RET_STS_SUCCESS;
10657: X_BILLED_YN := 'Y';
10658:
10659: -- Standard call to get message count and if count is 1, get message info
10660: FND_MSG_PUB.Count_And_Get(
10661: p_encoded => FND_API.G_FALSE,
10662: p_count => x_msg_count,
10663: p_data => x_msg_data);

Line 10857: | P_API_VERSION IN Standard in parameter

10853: | init
10854: | LogMessage
10855: |
10856: | PARAMETERS
10857: | P_API_VERSION IN Standard in parameter
10858: | P_INIT_MSG_LIST IN Standard in parameter
10859: | P_COMMIT IN Standard in parameter
10860: | P_VALIDATION_LEVEL IN Standard in parameter
10861: | P_LOAN_LINE_ID IN Loan Line ID

Line 10858: | P_INIT_MSG_LIST IN Standard in parameter

10854: | LogMessage
10855: |
10856: | PARAMETERS
10857: | P_API_VERSION IN Standard in parameter
10858: | P_INIT_MSG_LIST IN Standard in parameter
10859: | P_COMMIT IN Standard in parameter
10860: | P_VALIDATION_LEVEL IN Standard in parameter
10861: | P_LOAN_LINE_ID IN Loan Line ID
10862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 10859: | P_COMMIT IN Standard in parameter

10855: |
10856: | PARAMETERS
10857: | P_API_VERSION IN Standard in parameter
10858: | P_INIT_MSG_LIST IN Standard in parameter
10859: | P_COMMIT IN Standard in parameter
10860: | P_VALIDATION_LEVEL IN Standard in parameter
10861: | P_LOAN_LINE_ID IN Loan Line ID
10862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
10863: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 10860: | P_VALIDATION_LEVEL IN Standard in parameter

10856: | PARAMETERS
10857: | P_API_VERSION IN Standard in parameter
10858: | P_INIT_MSG_LIST IN Standard in parameter
10859: | P_COMMIT IN Standard in parameter
10860: | P_VALIDATION_LEVEL IN Standard in parameter
10861: | P_LOAN_LINE_ID IN Loan Line ID
10862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
10863: | X_MSG_COUNT OUT NOCOPY Standard out parameter
10864: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 10862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

10858: | P_INIT_MSG_LIST IN Standard in parameter
10859: | P_COMMIT IN Standard in parameter
10860: | P_VALIDATION_LEVEL IN Standard in parameter
10861: | P_LOAN_LINE_ID IN Loan Line ID
10862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
10863: | X_MSG_COUNT OUT NOCOPY Standard out parameter
10864: | X_MSG_DATA OUT NOCOPY Standard out parameter
10865: |
10866: | KNOWN ISSUES

Line 10863: | X_MSG_COUNT OUT NOCOPY Standard out parameter

10859: | P_COMMIT IN Standard in parameter
10860: | P_VALIDATION_LEVEL IN Standard in parameter
10861: | P_LOAN_LINE_ID IN Loan Line ID
10862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
10863: | X_MSG_COUNT OUT NOCOPY Standard out parameter
10864: | X_MSG_DATA OUT NOCOPY Standard out parameter
10865: |
10866: | KNOWN ISSUES
10867: | None

Line 10864: | X_MSG_DATA OUT NOCOPY Standard out parameter

10860: | P_VALIDATION_LEVEL IN Standard in parameter
10861: | P_LOAN_LINE_ID IN Loan Line ID
10862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
10863: | X_MSG_COUNT OUT NOCOPY Standard out parameter
10864: | X_MSG_DATA OUT NOCOPY Standard out parameter
10865: |
10866: | KNOWN ISSUES
10867: | None
10868: |

Line 10956: -- Standard start of API savepoint

10952: BEGIN
10953:
10954: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
10955:
10956: -- Standard start of API savepoint
10957: SAVEPOINT ADJUST_ADD_RECEIVABLE;
10958: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
10959:
10960: -- Standard call to check for call compatibility

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

10956: -- Standard start of API savepoint
10957: SAVEPOINT ADJUST_ADD_RECEIVABLE;
10958: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
10959:
10960: -- Standard call to check for call compatibility
10961: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
10962: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
10963: END IF;
10964:

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

11100:
11101: -- END OF BODY OF API
11102: x_return_status := FND_API.G_RET_STS_SUCCESS;
11103:
11104: -- Standard call to get message count and if count is 1, get message info
11105: FND_MSG_PUB.Count_And_Get(
11106: p_encoded => FND_API.G_FALSE,
11107: p_count => x_msg_count,
11108: p_data => x_msg_data);