DBA Data[Home] [Help]

APPS.LNS_BILLING_BATCH_PUB dependencies on STANDARD

Line 437: | P_API_VERSION IN Standard in parameter

433: | CALLS PROCEDURES/FUNCTIONS (local to this package body)
434: | LogMessage
435: |
436: | PARAMETERS
437: | P_API_VERSION IN Standard in parameter
438: | P_INIT_MSG_LIST IN Standard in parameter
439: | P_COMMIT IN Standard in parameter
440: | P_VALIDATION_LEVEL IN Standard in parameter
441: | P_LOAN_ID IN Loan

Line 438: | P_INIT_MSG_LIST IN Standard in parameter

434: | LogMessage
435: |
436: | PARAMETERS
437: | P_API_VERSION IN Standard in parameter
438: | P_INIT_MSG_LIST IN Standard in parameter
439: | P_COMMIT IN Standard in parameter
440: | P_VALIDATION_LEVEL IN Standard in parameter
441: | P_LOAN_ID IN Loan
442: | P_PAYOFF_DATE IN Pay off date

Line 439: | P_COMMIT IN Standard in parameter

435: |
436: | PARAMETERS
437: | P_API_VERSION IN Standard in parameter
438: | P_INIT_MSG_LIST IN Standard in parameter
439: | P_COMMIT IN Standard in parameter
440: | P_VALIDATION_LEVEL IN Standard in parameter
441: | P_LOAN_ID IN Loan
442: | P_PAYOFF_DATE IN Pay off date
443: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 440: | P_VALIDATION_LEVEL IN Standard in parameter

436: | PARAMETERS
437: | P_API_VERSION IN Standard in parameter
438: | P_INIT_MSG_LIST IN Standard in parameter
439: | P_COMMIT IN Standard in parameter
440: | P_VALIDATION_LEVEL IN Standard in parameter
441: | P_LOAN_ID IN Loan
442: | P_PAYOFF_DATE IN Pay off date
443: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
444: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 443: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

439: | P_COMMIT IN Standard in parameter
440: | P_VALIDATION_LEVEL IN Standard in parameter
441: | P_LOAN_ID IN Loan
442: | P_PAYOFF_DATE IN Pay off date
443: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
444: | X_MSG_COUNT OUT NOCOPY Standard out parameter
445: | X_MSG_DATA OUT NOCOPY Standard out parameter
446:
447: | KNOWN ISSUES

Line 444: | X_MSG_COUNT OUT NOCOPY Standard out parameter

440: | P_VALIDATION_LEVEL IN Standard in parameter
441: | P_LOAN_ID IN Loan
442: | P_PAYOFF_DATE IN Pay off date
443: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
444: | X_MSG_COUNT OUT NOCOPY Standard out parameter
445: | X_MSG_DATA OUT NOCOPY Standard out parameter
446:
447: | KNOWN ISSUES
448: | None

Line 445: | X_MSG_DATA OUT NOCOPY Standard out parameter

441: | P_LOAN_ID IN Loan
442: | P_PAYOFF_DATE IN Pay off date
443: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
444: | X_MSG_COUNT OUT NOCOPY Standard out parameter
445: | X_MSG_DATA OUT NOCOPY Standard out parameter
446:
447: | KNOWN ISSUES
448: | None
449: |

Line 526: -- Standard Start of API savepoint

522: LogMessage(FND_LOG.LEVEL_UNEXPECTED, 'Processing paid off loans...');
523: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Input parameters:');
524: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Loan ID: ' || P_LOAN_ID);
525: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Payoff date: ' || P_PAYOFF_DATE);
526: -- Standard Start of API savepoint
527: SAVEPOINT PROCESS_PAID_LOANS;
528:
529: -- Initialize message list IF p_init_msg_list is set to TRUE.
530: IF FND_API.to_Boolean(p_init_msg_list) THEN

Line 3590: -- Standard start of API savepoint

3586: BEGIN
3587:
3588: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
3589:
3590: -- Standard start of API savepoint
3591: SAVEPOINT PROCESS_SINGLE_LOAN_PVT;
3592: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Established savepoint');
3593:
3594: -- Standard call to check for call compatibility

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

3590: -- Standard start of API savepoint
3591: SAVEPOINT PROCESS_SINGLE_LOAN_PVT;
3592: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Established savepoint');
3593:
3594: -- Standard call to check for call compatibility
3595: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
3596: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
3597: END IF;
3598:

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

4035:
4036: -- END OF BODY OF API
4037: x_return_status := FND_API.G_RET_STS_SUCCESS;
4038:
4039: -- Standard call to get message count and if count is 1, get message info
4040: FND_MSG_PUB.Count_And_Get(
4041: p_encoded => FND_API.G_FALSE,
4042: p_count => x_msg_count,
4043: p_data => x_msg_data);

Line 4186: -- Standard start of API savepoint

4182:
4183: LogMessage(FND_LOG.LEVEL_UNEXPECTED, ' ');
4184: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
4185:
4186: -- Standard start of API savepoint
4187: SAVEPOINT SINGLE_LOAN_NEXT_DD_PVT;
4188: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Established savepoint');
4189:
4190: -- Standard call to check for call compatibility

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

4186: -- Standard start of API savepoint
4187: SAVEPOINT SINGLE_LOAN_NEXT_DD_PVT;
4188: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Established savepoint');
4189:
4190: -- Standard call to check for call compatibility
4191: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
4192: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
4193: END IF;
4194:

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

4333:
4334: -- END OF BODY OF API
4335: x_return_status := FND_API.G_RET_STS_SUCCESS;
4336:
4337: -- Standard call to get message count and if count is 1, get message info
4338: FND_MSG_PUB.Count_And_Get(
4339: p_encoded => FND_API.G_FALSE,
4340: p_count => x_msg_count,
4341: p_data => x_msg_data);

Line 4659: | P_API_VERSION IN Standard in parameter

4655: | BILL_SINGLE_LOAN
4656: | LogMessage
4657: |
4658: | PARAMETERS
4659: | P_API_VERSION IN Standard in parameter
4660: | P_INIT_MSG_LIST IN Standard in parameter
4661: | P_COMMIT IN Standard in parameter
4662: | P_VALIDATION_LEVEL IN Standard in parameter
4663: | P_BORROWER_ID IN Inputs borrower id

Line 4660: | P_INIT_MSG_LIST IN Standard in parameter

4656: | LogMessage
4657: |
4658: | PARAMETERS
4659: | P_API_VERSION IN Standard in parameter
4660: | P_INIT_MSG_LIST IN Standard in parameter
4661: | P_COMMIT IN Standard in parameter
4662: | P_VALIDATION_LEVEL IN Standard in parameter
4663: | P_BORROWER_ID IN Inputs borrower id
4664: | P_LOAN_ID IN Inputs loan id

Line 4661: | P_COMMIT IN Standard in parameter

4657: |
4658: | PARAMETERS
4659: | P_API_VERSION IN Standard in parameter
4660: | P_INIT_MSG_LIST IN Standard in parameter
4661: | P_COMMIT IN Standard in parameter
4662: | P_VALIDATION_LEVEL IN Standard in parameter
4663: | P_BORROWER_ID IN Inputs borrower id
4664: | P_LOAN_ID IN Inputs loan id
4665: | P_FROM_DAYS_TO_DD IN Inputs from days

Line 4662: | P_VALIDATION_LEVEL IN Standard in parameter

4658: | PARAMETERS
4659: | P_API_VERSION IN Standard in parameter
4660: | P_INIT_MSG_LIST IN Standard in parameter
4661: | P_COMMIT IN Standard in parameter
4662: | P_VALIDATION_LEVEL IN Standard in parameter
4663: | P_BORROWER_ID IN Inputs borrower id
4664: | P_LOAN_ID IN Inputs loan id
4665: | P_FROM_DAYS_TO_DD IN Inputs from days
4666: | P_TO_DAYS_TO_DD IN Inputs to days

Line 4667: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

4663: | P_BORROWER_ID IN Inputs borrower id
4664: | P_LOAN_ID IN Inputs loan id
4665: | P_FROM_DAYS_TO_DD IN Inputs from days
4666: | P_TO_DAYS_TO_DD IN Inputs to days
4667: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
4668: | X_MSG_COUNT OUT NOCOPY Standard out parameter
4669: | X_MSG_DATA OUT NOCOPY Standard out parameter
4670: |
4671: | KNOWN ISSUES

Line 4668: | X_MSG_COUNT OUT NOCOPY Standard out parameter

4664: | P_LOAN_ID IN Inputs loan id
4665: | P_FROM_DAYS_TO_DD IN Inputs from days
4666: | P_TO_DAYS_TO_DD IN Inputs to days
4667: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
4668: | X_MSG_COUNT OUT NOCOPY Standard out parameter
4669: | X_MSG_DATA OUT NOCOPY Standard out parameter
4670: |
4671: | KNOWN ISSUES
4672: | None

Line 4669: | X_MSG_DATA OUT NOCOPY Standard out parameter

4665: | P_FROM_DAYS_TO_DD IN Inputs from days
4666: | P_TO_DAYS_TO_DD IN Inputs to days
4667: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
4668: | X_MSG_COUNT OUT NOCOPY Standard out parameter
4669: | X_MSG_DATA OUT NOCOPY Standard out parameter
4670: |
4671: | KNOWN ISSUES
4672: | None
4673: |

Line 4772: -- Standard start of API savepoint

4768: BEGIN
4769:
4770: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
4771:
4772: -- Standard start of API savepoint
4773: SAVEPOINT BILL_LOANS_PVT;
4774: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
4775:
4776: -- Standard call to check for call compatibility

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

4772: -- Standard start of API savepoint
4773: SAVEPOINT BILL_LOANS_PVT;
4774: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
4775:
4776: -- Standard call to check for call compatibility
4777: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
4778: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
4779: END IF;
4780:

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

5013:
5014: -- END OF BODY OF API
5015: x_return_status := FND_API.G_RET_STS_SUCCESS;
5016:
5017: -- Standard call to get message count and if count is 1, get message info
5018: FND_MSG_PUB.Count_And_Get(
5019: p_encoded => FND_API.G_FALSE,
5020: p_count => x_msg_count,
5021: p_data => x_msg_data);

Line 5066: | P_API_VERSION IN Standard in parameter

5062: | CALC_SINGLE_LOAN_NEXT_DD
5063: | LogMessage
5064: |
5065: | PARAMETERS
5066: | P_API_VERSION IN Standard in parameter
5067: | P_INIT_MSG_LIST IN Standard in parameter
5068: | P_COMMIT IN Standard in parameter
5069: | P_VALIDATION_LEVEL IN Standard in parameter
5070: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 5067: | P_INIT_MSG_LIST IN Standard in parameter

5063: | LogMessage
5064: |
5065: | PARAMETERS
5066: | P_API_VERSION IN Standard in parameter
5067: | P_INIT_MSG_LIST IN Standard in parameter
5068: | P_COMMIT IN Standard in parameter
5069: | P_VALIDATION_LEVEL IN Standard in parameter
5070: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5071: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 5068: | P_COMMIT IN Standard in parameter

5064: |
5065: | PARAMETERS
5066: | P_API_VERSION IN Standard in parameter
5067: | P_INIT_MSG_LIST IN Standard in parameter
5068: | P_COMMIT IN Standard in parameter
5069: | P_VALIDATION_LEVEL IN Standard in parameter
5070: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5071: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5072: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 5069: | P_VALIDATION_LEVEL IN Standard in parameter

5065: | PARAMETERS
5066: | P_API_VERSION IN Standard in parameter
5067: | P_INIT_MSG_LIST IN Standard in parameter
5068: | P_COMMIT IN Standard in parameter
5069: | P_VALIDATION_LEVEL IN Standard in parameter
5070: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5071: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5072: | X_MSG_DATA OUT NOCOPY Standard out parameter
5073: |

Line 5070: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

5066: | P_API_VERSION IN Standard in parameter
5067: | P_INIT_MSG_LIST IN Standard in parameter
5068: | P_COMMIT IN Standard in parameter
5069: | P_VALIDATION_LEVEL IN Standard in parameter
5070: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5071: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5072: | X_MSG_DATA OUT NOCOPY Standard out parameter
5073: |
5074: | KNOWN ISSUES

Line 5071: | X_MSG_COUNT OUT NOCOPY Standard out parameter

5067: | P_INIT_MSG_LIST IN Standard in parameter
5068: | P_COMMIT IN Standard in parameter
5069: | P_VALIDATION_LEVEL IN Standard in parameter
5070: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5071: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5072: | X_MSG_DATA OUT NOCOPY Standard out parameter
5073: |
5074: | KNOWN ISSUES
5075: | None

Line 5072: | X_MSG_DATA OUT NOCOPY Standard out parameter

5068: | P_COMMIT IN Standard in parameter
5069: | P_VALIDATION_LEVEL IN Standard in parameter
5070: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5071: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5072: | X_MSG_DATA OUT NOCOPY Standard out parameter
5073: |
5074: | KNOWN ISSUES
5075: | None
5076: |

Line 5137: -- Standard start of API savepoint

5133: BEGIN
5134:
5135: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
5136:
5137: -- Standard start of API savepoint
5138: SAVEPOINT LOANS_NEXT_DD_PVT;
5139: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Established savepoint');
5140:
5141: -- Standard call to check for call compatibility

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

5137: -- Standard start of API savepoint
5138: SAVEPOINT LOANS_NEXT_DD_PVT;
5139: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Established savepoint');
5140:
5141: -- Standard call to check for call compatibility
5142: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
5143: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
5144: END IF;
5145:

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

5202:
5203: -- END OF BODY OF API
5204: x_return_status := FND_API.G_RET_STS_SUCCESS;
5205:
5206: -- Standard call to get message count and if count is 1, get message info
5207: FND_MSG_PUB.Count_And_Get(
5208: p_encoded => FND_API.G_FALSE,
5209: p_count => x_msg_count,
5210: p_data => x_msg_data);

Line 5252: | P_API_VERSION IN Standard in parameter

5248: | CREATE_AR_CM
5249: | LogMessage
5250: |
5251: | PARAMETERS
5252: | P_API_VERSION IN Standard in parameter
5253: | P_INIT_MSG_LIST IN Standard in parameter
5254: | P_COMMIT IN Standard in parameter
5255: | P_VALIDATION_LEVEL IN Standard in parameter
5256: | P_LOAN_ID IN Inputs loan id

Line 5253: | P_INIT_MSG_LIST IN Standard in parameter

5249: | LogMessage
5250: |
5251: | PARAMETERS
5252: | P_API_VERSION IN Standard in parameter
5253: | P_INIT_MSG_LIST IN Standard in parameter
5254: | P_COMMIT IN Standard in parameter
5255: | P_VALIDATION_LEVEL IN Standard in parameter
5256: | P_LOAN_ID IN Inputs loan id
5257: | P_REBILL_FLAG IN Inputs rebill flag

Line 5254: | P_COMMIT IN Standard in parameter

5250: |
5251: | PARAMETERS
5252: | P_API_VERSION IN Standard in parameter
5253: | P_INIT_MSG_LIST IN Standard in parameter
5254: | P_COMMIT IN Standard in parameter
5255: | P_VALIDATION_LEVEL IN Standard in parameter
5256: | P_LOAN_ID IN Inputs loan id
5257: | P_REBILL_FLAG IN Inputs rebill flag
5258: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 5255: | P_VALIDATION_LEVEL IN Standard in parameter

5251: | PARAMETERS
5252: | P_API_VERSION IN Standard in parameter
5253: | P_INIT_MSG_LIST IN Standard in parameter
5254: | P_COMMIT IN Standard in parameter
5255: | P_VALIDATION_LEVEL IN Standard in parameter
5256: | P_LOAN_ID IN Inputs loan id
5257: | P_REBILL_FLAG IN Inputs rebill flag
5258: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5259: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 5258: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

5254: | P_COMMIT IN Standard in parameter
5255: | P_VALIDATION_LEVEL IN Standard in parameter
5256: | P_LOAN_ID IN Inputs loan id
5257: | P_REBILL_FLAG IN Inputs rebill flag
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_VALIDATION_LEVEL IN Standard in parameter
5256: | P_LOAN_ID IN Inputs loan id
5257: | P_REBILL_FLAG IN Inputs rebill flag
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_LOAN_ID IN Inputs loan id
5257: | P_REBILL_FLAG IN Inputs rebill flag
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 5376: -- Standard start of API savepoint

5372: BEGIN
5373:
5374: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
5375:
5376: -- Standard start of API savepoint
5377: SAVEPOINT REVERSE_LAST_AMORTIZATION;
5378: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
5379:
5380: -- Standard call to check for call compatibility

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

5376: -- Standard start of API savepoint
5377: SAVEPOINT REVERSE_LAST_AMORTIZATION;
5378: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
5379:
5380: -- Standard call to check for call compatibility
5381: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
5382: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
5383: END IF;
5384:

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

5636:
5637: -- END OF BODY OF API
5638: x_return_status := FND_API.G_RET_STS_SUCCESS;
5639:
5640: -- Standard call to get message count and if count is 1, get message info
5641: FND_MSG_PUB.Count_And_Get(
5642: p_encoded => FND_API.G_FALSE,
5643: p_count => x_msg_count,
5644: p_data => x_msg_data);

Line 5683: | P_API_VERSION IN Standard in parameter

5679: |
5680: | PSEUDO CODE/LOGIC
5681: |
5682: | PARAMETERS
5683: | P_API_VERSION IN Standard in parameter
5684: | P_INIT_MSG_LIST IN Standard in parameter
5685: | P_COMMIT IN Standard in parameter
5686: | P_VALIDATION_LEVEL IN Standard in parameter
5687: | P_LOAN_ID IN Inputs loan id

Line 5684: | P_INIT_MSG_LIST IN Standard in parameter

5680: | PSEUDO CODE/LOGIC
5681: |
5682: | PARAMETERS
5683: | P_API_VERSION IN Standard in parameter
5684: | P_INIT_MSG_LIST IN Standard in parameter
5685: | P_COMMIT IN Standard in parameter
5686: | P_VALIDATION_LEVEL IN Standard in parameter
5687: | P_LOAN_ID IN Inputs loan id
5688: | P_LINE_TYPE IN PRIN or INT or FEE

Line 5685: | P_COMMIT IN Standard in parameter

5681: |
5682: | PARAMETERS
5683: | P_API_VERSION IN Standard in parameter
5684: | P_INIT_MSG_LIST IN Standard in parameter
5685: | P_COMMIT IN Standard in parameter
5686: | P_VALIDATION_LEVEL IN Standard in parameter
5687: | P_LOAN_ID IN Inputs loan id
5688: | P_LINE_TYPE IN PRIN or INT or FEE
5689: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 5686: | P_VALIDATION_LEVEL IN Standard in parameter

5682: | PARAMETERS
5683: | P_API_VERSION IN Standard in parameter
5684: | P_INIT_MSG_LIST IN Standard in parameter
5685: | P_COMMIT IN Standard in parameter
5686: | P_VALIDATION_LEVEL IN Standard in parameter
5687: | P_LOAN_ID IN Inputs loan id
5688: | P_LINE_TYPE IN PRIN or INT or FEE
5689: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5690: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 5689: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

5685: | P_COMMIT IN Standard in parameter
5686: | P_VALIDATION_LEVEL IN Standard in parameter
5687: | P_LOAN_ID IN Inputs loan id
5688: | P_LINE_TYPE IN PRIN or INT or FEE
5689: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5690: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5691: | X_MSG_DATA OUT NOCOPY Standard out parameter
5692: |
5693: | KNOWN ISSUES

Line 5690: | X_MSG_COUNT OUT NOCOPY Standard out parameter

5686: | P_VALIDATION_LEVEL IN Standard in parameter
5687: | P_LOAN_ID IN Inputs loan id
5688: | P_LINE_TYPE IN PRIN or INT or FEE
5689: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5690: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5691: | X_MSG_DATA OUT NOCOPY Standard out parameter
5692: |
5693: | KNOWN ISSUES
5694: | None

Line 5691: | X_MSG_DATA OUT NOCOPY Standard out parameter

5687: | P_LOAN_ID IN Inputs loan id
5688: | P_LINE_TYPE IN PRIN or INT or FEE
5689: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5690: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5691: | X_MSG_DATA OUT NOCOPY Standard out parameter
5692: |
5693: | KNOWN ISSUES
5694: | None
5695: |

Line 5792: -- Standard start of API savepoint

5788: BEGIN
5789:
5790: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
5791:
5792: -- Standard start of API savepoint
5793: SAVEPOINT REVERSE_LAST_AMORTIZATION;
5794: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
5795:
5796: -- Standard call to check for call compatibility

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

5792: -- Standard start of API savepoint
5793: SAVEPOINT REVERSE_LAST_AMORTIZATION;
5794: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
5795:
5796: -- Standard call to check for call compatibility
5797: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
5798: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
5799: END IF;
5800:

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

5919:
5920: -- END OF BODY OF API
5921: x_return_status := FND_API.G_RET_STS_SUCCESS;
5922:
5923: -- Standard call to get message count and if count is 1, get message info
5924: FND_MSG_PUB.Count_And_Get(
5925: p_encoded => FND_API.G_FALSE,
5926: p_count => x_msg_count,
5927: p_data => x_msg_data);

Line 5971: | P_API_VERSION IN Standard in parameter

5967: | CREATE_AR_INVOICES
5968: | LogMessage
5969: |
5970: | PARAMETERS
5971: | P_API_VERSION IN Standard in parameter
5972: | P_INIT_MSG_LIST IN Standard in parameter
5973: | P_COMMIT IN Standard in parameter
5974: | P_VALIDATION_LEVEL IN Standard in parameter
5975: | P_BILL_HEADER_REC IN Manual bill header record

Line 5972: | P_INIT_MSG_LIST IN Standard in parameter

5968: | LogMessage
5969: |
5970: | PARAMETERS
5971: | P_API_VERSION IN Standard in parameter
5972: | P_INIT_MSG_LIST IN Standard in parameter
5973: | P_COMMIT IN Standard in parameter
5974: | P_VALIDATION_LEVEL IN Standard in parameter
5975: | P_BILL_HEADER_REC IN Manual bill header record
5976: | P_BILL_LINES_TBL IN Manual bill lines

Line 5973: | P_COMMIT IN Standard in parameter

5969: |
5970: | PARAMETERS
5971: | P_API_VERSION IN Standard in parameter
5972: | P_INIT_MSG_LIST IN Standard in parameter
5973: | P_COMMIT IN Standard in parameter
5974: | P_VALIDATION_LEVEL IN Standard in parameter
5975: | P_BILL_HEADER_REC IN Manual bill header record
5976: | P_BILL_LINES_TBL IN Manual bill lines
5977: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 5974: | P_VALIDATION_LEVEL IN Standard in parameter

5970: | PARAMETERS
5971: | P_API_VERSION IN Standard in parameter
5972: | P_INIT_MSG_LIST IN Standard in parameter
5973: | P_COMMIT IN Standard in parameter
5974: | P_VALIDATION_LEVEL IN Standard in parameter
5975: | P_BILL_HEADER_REC IN Manual bill header record
5976: | P_BILL_LINES_TBL IN Manual bill lines
5977: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5978: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 5977: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

5973: | P_COMMIT IN Standard in parameter
5974: | P_VALIDATION_LEVEL IN Standard in parameter
5975: | P_BILL_HEADER_REC IN Manual bill header record
5976: | P_BILL_LINES_TBL IN Manual bill lines
5977: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5978: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5979: | X_MSG_DATA OUT NOCOPY Standard out parameter
5980: |
5981: | KNOWN ISSUES

Line 5978: | X_MSG_COUNT OUT NOCOPY Standard out parameter

5974: | P_VALIDATION_LEVEL IN Standard in parameter
5975: | P_BILL_HEADER_REC IN Manual bill header record
5976: | P_BILL_LINES_TBL IN Manual bill lines
5977: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5978: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5979: | X_MSG_DATA OUT NOCOPY Standard out parameter
5980: |
5981: | KNOWN ISSUES
5982: | None

Line 5979: | X_MSG_DATA OUT NOCOPY Standard out parameter

5975: | P_BILL_HEADER_REC IN Manual bill header record
5976: | P_BILL_LINES_TBL IN Manual bill lines
5977: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
5978: | X_MSG_COUNT OUT NOCOPY Standard out parameter
5979: | X_MSG_DATA OUT NOCOPY Standard out parameter
5980: |
5981: | KNOWN ISSUES
5982: | None
5983: |

Line 6061: -- Standard start of API savepoint

6057: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
6058:
6059: l_lines_tbl := P_BILL_LINES_TBL;
6060:
6061: -- Standard start of API savepoint
6062: SAVEPOINT CREATE_SINGLE_OFFCYCLE_BILL;
6063: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
6064:
6065: -- Standard call to check for call compatibility

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

6061: -- Standard start of API savepoint
6062: SAVEPOINT CREATE_SINGLE_OFFCYCLE_BILL;
6063: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
6064:
6065: -- Standard call to check for call compatibility
6066: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
6067: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
6068: END IF;
6069:

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

6334:
6335: -- END OF BODY OF API
6336: x_return_status := FND_API.G_RET_STS_SUCCESS;
6337:
6338: -- Standard call to get message count and if count is 1, get message info
6339: FND_MSG_PUB.Count_And_Get(
6340: p_encoded => FND_API.G_FALSE,
6341: p_count => x_msg_count,
6342: p_data => x_msg_data);

Line 6383: | P_API_VERSION IN Standard in parameter

6379: | CREATE_SINGLE_OFFCYCLE_BILL
6380: | LogMessage
6381: |
6382: | PARAMETERS
6383: | P_API_VERSION IN Standard in parameter
6384: | P_INIT_MSG_LIST IN Standard in parameter
6385: | P_COMMIT IN Standard in parameter
6386: | P_VALIDATION_LEVEL IN Standard in parameter
6387: | P_BILL_HEADERS_TBL IN Manual bill headers

Line 6384: | P_INIT_MSG_LIST IN Standard in parameter

6380: | LogMessage
6381: |
6382: | PARAMETERS
6383: | P_API_VERSION IN Standard in parameter
6384: | P_INIT_MSG_LIST IN Standard in parameter
6385: | P_COMMIT IN Standard in parameter
6386: | P_VALIDATION_LEVEL IN Standard in parameter
6387: | P_BILL_HEADERS_TBL IN Manual bill headers
6388: | P_BILL_LINES_TBL IN Manual bill lines

Line 6385: | P_COMMIT IN Standard in parameter

6381: |
6382: | PARAMETERS
6383: | P_API_VERSION IN Standard in parameter
6384: | P_INIT_MSG_LIST IN Standard in parameter
6385: | P_COMMIT IN Standard in parameter
6386: | P_VALIDATION_LEVEL IN Standard in parameter
6387: | P_BILL_HEADERS_TBL IN Manual bill headers
6388: | P_BILL_LINES_TBL IN Manual bill lines
6389: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 6386: | P_VALIDATION_LEVEL IN Standard in parameter

6382: | PARAMETERS
6383: | P_API_VERSION IN Standard in parameter
6384: | P_INIT_MSG_LIST IN Standard in parameter
6385: | P_COMMIT IN Standard in parameter
6386: | P_VALIDATION_LEVEL IN Standard in parameter
6387: | P_BILL_HEADERS_TBL IN Manual bill headers
6388: | P_BILL_LINES_TBL IN Manual bill lines
6389: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6390: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 6389: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

6385: | P_COMMIT IN Standard in parameter
6386: | P_VALIDATION_LEVEL IN Standard in parameter
6387: | P_BILL_HEADERS_TBL IN Manual bill headers
6388: | P_BILL_LINES_TBL IN Manual bill lines
6389: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6390: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6391: | X_MSG_DATA OUT NOCOPY Standard out parameter
6392: |
6393: | KNOWN ISSUES

Line 6390: | X_MSG_COUNT OUT NOCOPY Standard out parameter

6386: | P_VALIDATION_LEVEL IN Standard in parameter
6387: | P_BILL_HEADERS_TBL IN Manual bill headers
6388: | P_BILL_LINES_TBL IN Manual bill lines
6389: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6390: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6391: | X_MSG_DATA OUT NOCOPY Standard out parameter
6392: |
6393: | KNOWN ISSUES
6394: | None

Line 6391: | X_MSG_DATA OUT NOCOPY Standard out parameter

6387: | P_BILL_HEADERS_TBL IN Manual bill headers
6388: | P_BILL_LINES_TBL IN Manual bill lines
6389: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6390: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6391: | X_MSG_DATA OUT NOCOPY Standard out parameter
6392: |
6393: | KNOWN ISSUES
6394: | None
6395: |

Line 6435: -- Standard start of API savepoint

6431: BEGIN
6432:
6433: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
6434:
6435: -- Standard start of API savepoint
6436: SAVEPOINT CREATE_OFFCYCLE_BILLS;
6437: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
6438:
6439: -- Standard call to check for call compatibility

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

6435: -- Standard start of API savepoint
6436: SAVEPOINT CREATE_OFFCYCLE_BILLS;
6437: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
6438:
6439: -- Standard call to check for call compatibility
6440: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
6441: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
6442: END IF;
6443:

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

6515:
6516: -- END OF BODY OF API
6517: x_return_status := FND_API.G_RET_STS_SUCCESS;
6518:
6519: -- Standard call to get message count and if count is 1, get message info
6520: FND_MSG_PUB.Count_And_Get(
6521: p_encoded => FND_API.G_FALSE,
6522: p_count => x_msg_count,
6523: p_data => x_msg_data);

Line 6565: | P_API_VERSION IN Standard in parameter

6561: | CREATE_AR_CM
6562: | LogMessage
6563: |
6564: | PARAMETERS
6565: | P_API_VERSION IN Standard in parameter
6566: | P_INIT_MSG_LIST IN Standard in parameter
6567: | P_COMMIT IN Standard in parameter
6568: | P_VALIDATION_LEVEL IN Standard in parameter
6569: | P_AMORTIZATION_ID IN Input amortization id to reverse

Line 6566: | P_INIT_MSG_LIST IN Standard in parameter

6562: | LogMessage
6563: |
6564: | PARAMETERS
6565: | P_API_VERSION IN Standard in parameter
6566: | P_INIT_MSG_LIST IN Standard in parameter
6567: | P_COMMIT IN Standard in parameter
6568: | P_VALIDATION_LEVEL IN Standard in parameter
6569: | P_AMORTIZATION_ID IN Input amortization id to reverse
6570: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 6567: | P_COMMIT IN Standard in parameter

6563: |
6564: | PARAMETERS
6565: | P_API_VERSION IN Standard in parameter
6566: | P_INIT_MSG_LIST IN Standard in parameter
6567: | P_COMMIT IN Standard in parameter
6568: | P_VALIDATION_LEVEL IN Standard in parameter
6569: | P_AMORTIZATION_ID IN Input amortization id to reverse
6570: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6571: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 6568: | P_VALIDATION_LEVEL IN Standard in parameter

6564: | PARAMETERS
6565: | P_API_VERSION IN Standard in parameter
6566: | P_INIT_MSG_LIST IN Standard in parameter
6567: | P_COMMIT IN Standard in parameter
6568: | P_VALIDATION_LEVEL IN Standard in parameter
6569: | P_AMORTIZATION_ID IN Input amortization id to reverse
6570: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6571: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6572: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 6570: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

6566: | P_INIT_MSG_LIST IN Standard in parameter
6567: | P_COMMIT IN Standard in parameter
6568: | P_VALIDATION_LEVEL IN Standard in parameter
6569: | P_AMORTIZATION_ID IN Input amortization id to reverse
6570: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6571: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6572: | X_MSG_DATA OUT NOCOPY Standard out parameter
6573: |
6574: | KNOWN ISSUES

Line 6571: | X_MSG_COUNT OUT NOCOPY Standard out parameter

6567: | P_COMMIT IN Standard in parameter
6568: | P_VALIDATION_LEVEL IN Standard in parameter
6569: | P_AMORTIZATION_ID IN Input amortization id to reverse
6570: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6571: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6572: | X_MSG_DATA OUT NOCOPY Standard out parameter
6573: |
6574: | KNOWN ISSUES
6575: | None

Line 6572: | X_MSG_DATA OUT NOCOPY Standard out parameter

6568: | P_VALIDATION_LEVEL IN Standard in parameter
6569: | P_AMORTIZATION_ID IN Input amortization id to reverse
6570: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6571: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6572: | X_MSG_DATA OUT NOCOPY Standard out parameter
6573: |
6574: | KNOWN ISSUES
6575: | None
6576: |

Line 6662: -- Standard start of API savepoint

6658: BEGIN
6659:
6660: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
6661:
6662: -- Standard start of API savepoint
6663: SAVEPOINT REVERSE_OFFCYCLE_BILL;
6664: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
6665:
6666: -- Standard call to check for call compatibility

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

6662: -- Standard start of API savepoint
6663: SAVEPOINT REVERSE_OFFCYCLE_BILL;
6664: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
6665:
6666: -- Standard call to check for call compatibility
6667: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
6668: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
6669: END IF;
6670:

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

6807:
6808: -- END OF BODY OF API
6809: x_return_status := FND_API.G_RET_STS_SUCCESS;
6810:
6811: -- Standard call to get message count and if count is 1, get message info
6812: FND_MSG_PUB.Count_And_Get(
6813: p_encoded => FND_API.G_FALSE,
6814: p_count => x_msg_count,
6815: p_data => x_msg_data);

Line 6857: | P_API_VERSION IN Standard in parameter

6853: | init
6854: | LogMessage
6855: |
6856: | PARAMETERS
6857: | P_API_VERSION IN Standard in parameter
6858: | P_INIT_MSG_LIST IN Standard in parameter
6859: | P_COMMIT IN Standard in parameter
6860: | P_VALIDATION_LEVEL IN Standard in parameter
6861: | P_LOAN_ID IN Loan ID

Line 6858: | P_INIT_MSG_LIST IN Standard in parameter

6854: | LogMessage
6855: |
6856: | PARAMETERS
6857: | P_API_VERSION IN Standard in parameter
6858: | P_INIT_MSG_LIST IN Standard in parameter
6859: | P_COMMIT IN Standard in parameter
6860: | P_VALIDATION_LEVEL IN Standard in parameter
6861: | P_LOAN_ID IN Loan ID
6862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 6859: | P_COMMIT IN Standard in parameter

6855: |
6856: | PARAMETERS
6857: | P_API_VERSION IN Standard in parameter
6858: | P_INIT_MSG_LIST IN Standard in parameter
6859: | P_COMMIT IN Standard in parameter
6860: | P_VALIDATION_LEVEL IN Standard in parameter
6861: | P_LOAN_ID IN Loan ID
6862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6863: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 6860: | P_VALIDATION_LEVEL IN Standard in parameter

6856: | PARAMETERS
6857: | P_API_VERSION IN Standard in parameter
6858: | P_INIT_MSG_LIST IN Standard in parameter
6859: | P_COMMIT IN Standard in parameter
6860: | P_VALIDATION_LEVEL IN Standard in parameter
6861: | P_LOAN_ID IN Loan ID
6862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6863: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6864: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 6862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

6858: | P_INIT_MSG_LIST IN Standard in parameter
6859: | P_COMMIT IN Standard in parameter
6860: | P_VALIDATION_LEVEL IN Standard in parameter
6861: | P_LOAN_ID IN Loan ID
6862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6863: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6864: | X_MSG_DATA OUT NOCOPY Standard out parameter
6865: |
6866: | KNOWN ISSUES

Line 6863: | X_MSG_COUNT OUT NOCOPY Standard out parameter

6859: | P_COMMIT IN Standard in parameter
6860: | P_VALIDATION_LEVEL IN Standard in parameter
6861: | P_LOAN_ID IN Loan ID
6862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6863: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6864: | X_MSG_DATA OUT NOCOPY Standard out parameter
6865: |
6866: | KNOWN ISSUES
6867: | None

Line 6864: | X_MSG_DATA OUT NOCOPY Standard out parameter

6860: | P_VALIDATION_LEVEL IN Standard in parameter
6861: | P_LOAN_ID IN Loan ID
6862: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
6863: | X_MSG_COUNT OUT NOCOPY Standard out parameter
6864: | X_MSG_DATA OUT NOCOPY Standard out parameter
6865: |
6866: | KNOWN ISSUES
6867: | None
6868: |

Line 6972: -- Standard start of API savepoint

6968: BEGIN
6969:
6970: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
6971:
6972: -- Standard start of API savepoint
6973: SAVEPOINT ADJUST_ORIGINAL_RECEIVABLE;
6974: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
6975:
6976: -- Standard call to check for call compatibility

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

6972: -- Standard start of API savepoint
6973: SAVEPOINT ADJUST_ORIGINAL_RECEIVABLE;
6974: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
6975:
6976: -- Standard call to check for call compatibility
6977: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
6978: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
6979: END IF;
6980:

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

7166:
7167: -- END OF BODY OF API
7168: x_return_status := FND_API.G_RET_STS_SUCCESS;
7169:
7170: -- Standard call to get message count and if count is 1, get message info
7171: FND_MSG_PUB.Count_And_Get(
7172: p_encoded => FND_API.G_FALSE,
7173: p_count => x_msg_count,
7174: p_data => x_msg_data);

Line 7215: | P_API_VERSION IN Standard in parameter

7211: | LogMessage
7212: | CREATE_OFFCYCLE_BILLS
7213: |
7214: | PARAMETERS
7215: | P_API_VERSION IN Standard in parameter
7216: | P_INIT_MSG_LIST IN Standard in parameter
7217: | P_COMMIT IN Standard in parameter
7218: | P_VALIDATION_LEVEL IN Standard in parameter
7219: | P_LOAN_ID IN Loan ID

Line 7216: | P_INIT_MSG_LIST IN Standard in parameter

7212: | CREATE_OFFCYCLE_BILLS
7213: |
7214: | PARAMETERS
7215: | P_API_VERSION IN Standard in parameter
7216: | P_INIT_MSG_LIST IN Standard in parameter
7217: | P_COMMIT IN Standard in parameter
7218: | P_VALIDATION_LEVEL IN Standard in parameter
7219: | P_LOAN_ID IN Loan ID
7220: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 7217: | P_COMMIT IN Standard in parameter

7213: |
7214: | PARAMETERS
7215: | P_API_VERSION IN Standard in parameter
7216: | P_INIT_MSG_LIST IN Standard in parameter
7217: | P_COMMIT IN Standard in parameter
7218: | P_VALIDATION_LEVEL IN Standard in parameter
7219: | P_LOAN_ID IN Loan ID
7220: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7221: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 7218: | P_VALIDATION_LEVEL IN Standard in parameter

7214: | PARAMETERS
7215: | P_API_VERSION IN Standard in parameter
7216: | P_INIT_MSG_LIST IN Standard in parameter
7217: | P_COMMIT IN Standard in parameter
7218: | P_VALIDATION_LEVEL IN Standard in parameter
7219: | P_LOAN_ID IN Loan ID
7220: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7221: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7222: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 7220: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

7216: | P_INIT_MSG_LIST IN Standard in parameter
7217: | P_COMMIT IN Standard in parameter
7218: | P_VALIDATION_LEVEL IN Standard in parameter
7219: | P_LOAN_ID IN Loan ID
7220: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7221: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7222: | X_MSG_DATA OUT NOCOPY Standard out parameter
7223: |
7224: | KNOWN ISSUES

Line 7221: | X_MSG_COUNT OUT NOCOPY Standard out parameter

7217: | P_COMMIT IN Standard in parameter
7218: | P_VALIDATION_LEVEL IN Standard in parameter
7219: | P_LOAN_ID IN Loan ID
7220: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7221: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7222: | X_MSG_DATA OUT NOCOPY Standard out parameter
7223: |
7224: | KNOWN ISSUES
7225: | None

Line 7222: | X_MSG_DATA OUT NOCOPY Standard out parameter

7218: | P_VALIDATION_LEVEL IN Standard in parameter
7219: | P_LOAN_ID IN Loan ID
7220: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7221: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7222: | X_MSG_DATA OUT NOCOPY Standard out parameter
7223: |
7224: | KNOWN ISSUES
7225: | None
7226: |

Line 7287: -- Standard start of API savepoint

7283: X_BILLED_YN := 'N';
7284:
7285: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
7286:
7287: -- Standard start of API savepoint
7288: SAVEPOINT PREBILL_SINGLE_LOAN;
7289: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
7290:
7291: -- Standard call to check for call compatibility

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

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

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

7479: -- END OF BODY OF API
7480: x_return_status := FND_API.G_RET_STS_SUCCESS;
7481: X_BILLED_YN := 'Y';
7482:
7483: -- Standard call to get message count and if count is 1, get message info
7484: FND_MSG_PUB.Count_And_Get(
7485: p_encoded => FND_API.G_FALSE,
7486: p_count => x_msg_count,
7487: p_data => x_msg_data);

Line 7528: | P_API_VERSION IN Standard in parameter

7524: | init
7525: | LogMessage
7526: |
7527: | PARAMETERS
7528: | P_API_VERSION IN Standard in parameter
7529: | P_INIT_MSG_LIST IN Standard in parameter
7530: | P_COMMIT IN Standard in parameter
7531: | P_VALIDATION_LEVEL IN Standard in parameter
7532: | P_LOAN_ID IN Loan ID

Line 7529: | P_INIT_MSG_LIST IN Standard in parameter

7525: | LogMessage
7526: |
7527: | PARAMETERS
7528: | P_API_VERSION IN Standard in parameter
7529: | P_INIT_MSG_LIST IN Standard in parameter
7530: | P_COMMIT IN Standard in parameter
7531: | P_VALIDATION_LEVEL IN Standard in parameter
7532: | P_LOAN_ID IN Loan ID
7533: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

Line 7530: | P_COMMIT IN Standard in parameter

7526: |
7527: | PARAMETERS
7528: | P_API_VERSION IN Standard in parameter
7529: | P_INIT_MSG_LIST IN Standard in parameter
7530: | P_COMMIT IN Standard in parameter
7531: | P_VALIDATION_LEVEL IN Standard in parameter
7532: | P_LOAN_ID IN Loan ID
7533: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7534: | X_MSG_COUNT OUT NOCOPY Standard out parameter

Line 7531: | P_VALIDATION_LEVEL IN Standard in parameter

7527: | PARAMETERS
7528: | P_API_VERSION IN Standard in parameter
7529: | P_INIT_MSG_LIST IN Standard in parameter
7530: | P_COMMIT IN Standard in parameter
7531: | P_VALIDATION_LEVEL IN Standard in parameter
7532: | P_LOAN_ID IN Loan ID
7533: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7534: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7535: | X_MSG_DATA OUT NOCOPY Standard out parameter

Line 7533: | X_RETURN_STATUS OUT NOCOPY Standard out parameter

7529: | P_INIT_MSG_LIST IN Standard in parameter
7530: | P_COMMIT IN Standard in parameter
7531: | P_VALIDATION_LEVEL IN Standard in parameter
7532: | P_LOAN_ID IN Loan ID
7533: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7534: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7535: | X_MSG_DATA OUT NOCOPY Standard out parameter
7536: |
7537: | KNOWN ISSUES

Line 7534: | X_MSG_COUNT OUT NOCOPY Standard out parameter

7530: | P_COMMIT IN Standard in parameter
7531: | P_VALIDATION_LEVEL IN Standard in parameter
7532: | P_LOAN_ID IN Loan ID
7533: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7534: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7535: | X_MSG_DATA OUT NOCOPY Standard out parameter
7536: |
7537: | KNOWN ISSUES
7538: | None

Line 7535: | X_MSG_DATA OUT NOCOPY Standard out parameter

7531: | P_VALIDATION_LEVEL IN Standard in parameter
7532: | P_LOAN_ID IN Loan ID
7533: | X_RETURN_STATUS OUT NOCOPY Standard out parameter
7534: | X_MSG_COUNT OUT NOCOPY Standard out parameter
7535: | X_MSG_DATA OUT NOCOPY Standard out parameter
7536: |
7537: | KNOWN ISSUES
7538: | None
7539: |

Line 7624: -- Standard start of API savepoint

7620: BEGIN
7621:
7622: LogMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME || '.' || l_api_name || ' +');
7623:
7624: -- Standard start of API savepoint
7625: SAVEPOINT FORGIVENESS_ADJUSTMENT;
7626: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
7627:
7628: -- Standard call to check for call compatibility

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

7624: -- Standard start of API savepoint
7625: SAVEPOINT FORGIVENESS_ADJUSTMENT;
7626: LogMessage(FND_LOG.LEVEL_STATEMENT, 'Savepoint is established');
7627:
7628: -- Standard call to check for call compatibility
7629: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
7630: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
7631: END IF;
7632:

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

7759:
7760: -- END OF BODY OF API
7761: x_return_status := FND_API.G_RET_STS_SUCCESS;
7762:
7763: -- Standard call to get message count and if count is 1, get message info
7764: FND_MSG_PUB.Count_And_Get(
7765: p_encoded => FND_API.G_FALSE,
7766: p_count => x_msg_count,
7767: p_data => x_msg_data);