DBA Data[Home] [Help]

APPS.AMS_CAMPAIGNRULES_PVT dependencies on AMS_SOURCECODE_PVT

Line 467: x_source_code := AMS_SourceCode_PVT.get_new_source_code(

463: -- generate a new source code if global flag is updated and
464: -- source code is not cascaded to schedules
465: IF p_global_flag <> l_global_flag
466: THEN
467: x_source_code := AMS_SourceCode_PVT.get_new_source_code(
468: p_object_type => 'CAMP',
469: p_custsetup_id => l_custom_setup_id,
470: p_global_flag => p_global_flag
471: );

Line 515: AMS_SourceCode_PVT.revoke_sourcecode(

511: END IF;
512: -- end soagrawa
513:
514: -- otherwise revoke the old one and add the new one to ams_source_codes
515: AMS_SourceCode_PVT.revoke_sourcecode(
516: p_api_version => 1.0,
517: p_init_msg_list => FND_API.g_false,
518: p_commit => FND_API.g_false,
519: p_validation_level => FND_API.g_valid_level_full,

Line 532: AMS_SourceCode_PVT.create_sourcecode(

528: IF x_return_status <> FND_API.g_ret_sts_success THEN
529: RAISE FND_API.g_exc_error;
530: END IF;
531:
532: AMS_SourceCode_PVT.create_sourcecode(
533: p_api_version => 1.0,
534: p_init_msg_list => FND_API.g_false,
535: p_commit => FND_API.g_false,
536: p_validation_level => FND_API.g_valid_level_full,

Line 1957: x_source_code := AMS_SourceCode_PVT.get_new_source_code(

1953: AMS_Utility_PVT.error_message('AMS_CSCH_CODE_NOT_CASCADE');
1954: END IF;
1955: ELSE
1956: IF p_source_code IS NULL THEN
1957: x_source_code := AMS_SourceCode_PVT.get_new_source_code(
1958: 'CSCH', l_setup_id, l_global_flag);
1959: ELSIF AMS_SourceCode_PVT.is_source_code_unique(p_source_code) = FND_API.g_false
1960: THEN
1961: x_return_status := FND_API.g_ret_sts_error;

Line 1959: ELSIF AMS_SourceCode_PVT.is_source_code_unique(p_source_code) = FND_API.g_false

1955: ELSE
1956: IF p_source_code IS NULL THEN
1957: x_source_code := AMS_SourceCode_PVT.get_new_source_code(
1958: 'CSCH', l_setup_id, l_global_flag);
1959: ELSIF AMS_SourceCode_PVT.is_source_code_unique(p_source_code) = FND_API.g_false
1960: THEN
1961: x_return_status := FND_API.g_ret_sts_error;
1962: AMS_Utility_PVT.error_message('AMS_CAMP_DUPLICATE_CODE');
1963: END IF;

Line 2074: -- AMS_SourceCode_PVT.revoke_sourcecode(

2070: -- x_return_status := FND_API.g_ret_sts_error;
2071: -- RETURN;
2072: -- END IF;
2073:
2074: -- AMS_SourceCode_PVT.revoke_sourcecode(
2075: -- p_api_version => 1.0,
2076: -- p_init_msg_list => FND_API.g_false,
2077: -- p_commit => FND_API.g_false,
2078: -- p_validation_level => FND_API.g_valid_level_full,

Line 2091: -- AMS_SourceCode_PVT.create_sourcecode(

2087: -- IF x_return_status <> FND_API.g_ret_sts_success THEN
2088: -- RAISE FND_API.g_exc_error;
2089: -- END IF;
2090:
2091: -- AMS_SourceCode_PVT.create_sourcecode(
2092: -- p_api_version => 1.0,
2093: -- p_init_msg_list => FND_API.g_false,
2094: -- p_commit => FND_API.g_false,
2095: -- p_validation_level => FND_API.g_valid_level_full,

Line 2825: AMS_SourceCode_PVT.create_sourcecode(

2821: l_msg_data VARCHAR2(2000);
2822:
2823: BEGIN
2824:
2825: AMS_SourceCode_PVT.create_sourcecode(
2826: p_api_version => 1.0,
2827: p_init_msg_list => FND_API.g_false,
2828: p_commit => FND_API.g_false,
2829: p_validation_level => FND_API.g_valid_level_full,

Line 3402: AMS_SourceCode_PVT.modify_sourcecode(

3398: x_return_status := FND_API.g_ret_sts_error;
3399: RETURN;
3400: END IF;
3401:
3402: AMS_SourceCode_PVT.modify_sourcecode(
3403: p_source_code => p_source_code,
3404: p_object_type => p_source_code_for,
3405: p_object_id => p_source_code_for_id,
3406: p_sourcecode_id => l_sourcecode_id,