DBA Data[Home] [Help]

APPS.OKS_RENEW_CONTRACT_PVT dependencies on STANDARD

Line 4029: --standard api initilization and checks

4025: IF (FND_LOG.level_procedure >= FND_LOG.g_current_runtime_level) THEN
4026: FND_LOG.string(FND_LOG.level_procedure, l_mod_name || '.begin', 'p_chr_id=' || p_chr_id ||' ,p_date='|| p_date ||' ,p_validation_level='|| p_validation_level);
4027: END IF;
4028:
4029: --standard api initilization and checks
4030: IF NOT FND_API.compatible_api_call (l_api_version, p_api_version, l_api_name, G_PKG_NAME)THEN
4031: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
4032: END IF;
4033: IF FND_API.to_boolean(p_init_msg_list ) THEN

Line 4625: --standard api initilization and checks

4621: FND_LOG.string(FND_LOG.level_procedure, l_mod_name || '.begin', 'p_chr_id=' || p_chr_id);
4622: END IF;
4623: END IF;
4624:
4625: --standard api initilization and checks
4626: SAVEPOINT update_invoice_text_PVT;
4627: IF NOT FND_API.compatible_api_call (l_api_version, p_api_version, l_api_name, G_PKG_NAME)THEN
4628: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
4629: END IF;

Line 4742: --standard check of p_commit

4738: l_inv_txt_tbl.delete;
4739: l_sl_id_tbl.delete;
4740: l_cle_id_tbl.delete;
4741:
4742: --standard check of p_commit
4743: IF FND_API.to_boolean( p_commit ) THEN
4744: COMMIT;
4745: END IF;
4746: IF (FND_LOG.level_procedure >= FND_LOG.g_current_runtime_level) THEN

Line 4864: --standard api initilization and checks

4860: IF (FND_LOG.level_procedure >= FND_LOG.g_current_runtime_level) THEN
4861: FND_LOG.string(FND_LOG.level_procedure, l_mod_name || '.begin', 'p_chr_id=' || p_chr_id||' ,p_hdesk_user_id='||p_hdesk_user_id);
4862: END IF;
4863:
4864: --standard api initilization and checks
4865: IF NOT FND_API.compatible_api_call (l_api_version, p_api_version, l_api_name, G_PKG_NAME)THEN
4866: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
4867: END IF;
4868: IF FND_API.to_boolean(p_init_msg_list ) THEN

Line 5041: 4. Comply with current Oracle Applications coding and logging standards

5037: It will be redesigned to do the following
5038: 1. Improve performance
5039: 2. Reduce dependence on OKC code
5040: 3. Incorporate functional design changes for R12
5041: 4. Comply with current Oracle Applications coding and logging standards
5042: 5. Ease of maintenance
5043:
5044: Parameters
5045: p_chr_id : id of the contract being renewed, mandatory

Line 5054: x_return_status : S, E, U - standard values

5050: p_new_duration : duration for renewed contract, optional
5051: p_new_uom_code : period for the renewed contract, optional
5052: p_renewal_called_from_ui : 'Y' - called from UI, N - called from Events
5053: x_chr_id : id of the renewed contract
5054: x_return_status : S, E, U - standard values
5055:
5056: Defaulting rules
5057: 1. If p_new_contract_number is not passed, uses the source contract_number
5058: 2. If p_new_contract_modifier is not passed, generated this as

Line 5161: --standard api initilization and checks

5157: fnd_file.put_line(FND_FILE.LOG,'---------------------------------------------------------- ');
5158: fnd_file.put_line(FND_FILE.LOG,' ');
5159:
5160:
5161: --standard api initilization and checks
5162: SAVEPOINT renew_contract_PVT;
5163: IF NOT FND_API.compatible_api_call (l_api_version, p_api_version, l_api_name, G_PKG_NAME)THEN
5164: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
5165: END IF;

Line 5832: --standard check of p_commit

5828: IF (l_warnings) THEN
5829: x_return_status := OKC_API.G_RET_STS_WARNING;
5830: END IF;
5831:
5832: --standard check of p_commit
5833: IF FND_API.to_boolean( p_commit ) THEN
5834: COMMIT;
5835: END IF;
5836: