DBA Data[Home] [Help]

APPS.PA_FP_CI_MERGE dependencies on PA_UTILS

Line 123: PA_UTILS.ADD_MESSAGE

119: x_msg_count := 0;
120: --------dbms_output.put_line('FP_CI_LINK_CONTROL_ITEMS - 1');
121: --Check for nulls for mandatory parameters
122: IF p_s_fp_version_id IS NULL THEN
123: PA_UTILS.ADD_MESSAGE
124: ( p_app_short_name => 'PA',
125: p_msg_name => 'PA_FP_CI_NULL_PARAM_PASSED');
126:
127: /*PA_UTILS.ADD_MESSAGE

Line 127: /*PA_UTILS.ADD_MESSAGE

123: PA_UTILS.ADD_MESSAGE
124: ( p_app_short_name => 'PA',
125: p_msg_name => 'PA_FP_CI_NULL_PARAM_PASSED');
126:
127: /*PA_UTILS.ADD_MESSAGE
128: ( p_app_short_name => 'PA',
129: p_msg_name => 'The source budget version id passed is null');
130: */
131:

Line 145: PA_UTILS.ADD_MESSAGE

141: RETURN;
142: END IF;
143:
144: IF p_t_fp_version_id IS NULL THEN
145: PA_UTILS.ADD_MESSAGE
146: ( p_app_short_name => 'PA',
147: p_msg_name => 'PA_FP_CI_NULL_PARAM_PASSED');
148: /*PA_UTILS.ADD_MESSAGE
149: ( p_app_short_name => 'PA',

Line 148: /*PA_UTILS.ADD_MESSAGE

144: IF p_t_fp_version_id IS NULL THEN
145: PA_UTILS.ADD_MESSAGE
146: ( p_app_short_name => 'PA',
147: p_msg_name => 'PA_FP_CI_NULL_PARAM_PASSED');
148: /*PA_UTILS.ADD_MESSAGE
149: ( p_app_short_name => 'PA',
150: p_msg_name => 'The target budget version id passed is null');
151: */
152: IF p_pa_debug_mode = 'Y' THEN

Line 165: PA_UTILS.ADD_MESSAGE

161: RETURN;
162: END IF;
163:
164: IF p_project_id IS NULL THEN
165: PA_UTILS.ADD_MESSAGE
166: ( p_app_short_name => 'PA',
167: p_msg_name => 'PA_FP_CI_NULL_PARAM_PASSED');
168: /*PA_UTILS.ADD_MESSAGE
169: ( p_app_short_name => 'PA',

Line 168: /*PA_UTILS.ADD_MESSAGE

164: IF p_project_id IS NULL THEN
165: PA_UTILS.ADD_MESSAGE
166: ( p_app_short_name => 'PA',
167: p_msg_name => 'PA_FP_CI_NULL_PARAM_PASSED');
168: /*PA_UTILS.ADD_MESSAGE
169: ( p_app_short_name => 'PA',
170: p_msg_name => 'The project id passed is null');
171: */
172: IF p_pa_debug_mode = 'Y' THEN

Line 191: PA_UTILS.ADD_MESSAGE

187: IF l_debug_mode = 'Y' THEN
188: pa_debug.g_err_stage:='Invalid p_version_type passed is '||p_version_type;
189: pa_debug.write(L_module_name,pa_debug.g_err_stage,5);
190: END IF;
191: PA_UTILS.ADD_MESSAGE
192: ( p_app_short_name => 'PA',
193: p_msg_name => 'PA_FP_CI_NULL_PARAM_PASSED');
194: x_return_status := FND_API.G_RET_STS_ERROR;
195: --------dbms_output.put_line('FP_CI_LINK_CONTROL_ITEMS -*** 4');

Line 217: PA_UTILS.ADD_MESSAGE

213: WHERE bv.budget_version_id = p_s_fp_version_id
214: AND bv.project_id = p_project_id;
215: EXCEPTION
216: WHEN NO_DATA_FOUND THEN
217: PA_UTILS.ADD_MESSAGE
218: ( p_app_short_name => 'PA',
219: p_msg_name => 'PA_FP_CI_NO_CI_ID_FOUND');
220: --------dbms_output.put_line('FP_CI_LINK_CONTROL_ITEMS - 5****');
221: x_return_status := FND_API.G_RET_STS_ERROR;

Line 449: PA_UTILS.ADD_MESSAGE

445: x_msg_count := 0;
446: --------dbms_output.put_line('FP_CI_UPDATE_EST_AMOUNTS - 1');
447: --Check for nulls for mandatory parameters
448: IF p_source_version_id IS NULL THEN
449: PA_UTILS.ADD_MESSAGE
450: ( p_app_short_name => 'PA',
451: p_msg_name => 'PA_FP_CI_NULL_PARAM_PASSED');
452: IF p_pa_debug_mode = 'Y' THEN
453: PA_DEBUG.g_err_stage := 'The source budget version id passed is null';

Line 461: PA_UTILS.ADD_MESSAGE

457: RETURN;
458: END IF;
459:
460: IF p_target_version_id IS NULL THEN
461: PA_UTILS.ADD_MESSAGE
462: ( p_app_short_name => 'PA',
463: p_msg_name => 'PA_FP_CI_NULL_PARAM_PASSED');
464: IF p_pa_debug_mode = 'Y' THEN
465: PA_DEBUG.g_err_stage := 'The target budget version id passed is null';

Line 473: PA_UTILS.ADD_MESSAGE

469: RETURN;
470: END IF;
471:
472: IF p_project_id IS NULL THEN
473: PA_UTILS.ADD_MESSAGE
474: ( p_app_short_name => 'PA',
475: p_msg_name => 'PA_FP_CI_NULL_PARAM_PASSED');
476: IF p_pa_debug_mode = 'Y' THEN
477: PA_DEBUG.g_err_stage := 'The project id passed is null';

Line 494: PA_UTILS.ADD_MESSAGE

490: bv.project_id = p_project_id
491: AND bv.budget_version_id = p_target_version_id;
492: EXCEPTION
493: WHEN NO_DATA_FOUND THEN
494: PA_UTILS.ADD_MESSAGE
495: ( p_app_short_name => 'PA',
496: p_msg_name => 'PA_FP_CI_NO_VERSION_DATA_FOUND');
497: ------dbms_output.put_line('FP_CI_UPDATE_EST_AMOUNTS - 2***');
498: x_return_status := FND_API.G_RET_STS_ERROR;

Line 531: PA_UTILS.ADD_MESSAGE

527: AND bv.budget_version_id = p_source_version_id;
528:
529: EXCEPTION
530: WHEN NO_DATA_FOUND THEN
531: PA_UTILS.ADD_MESSAGE
532: ( p_app_short_name => 'PA',
533: p_msg_name => 'PA_FP_CI_NO_VERSION_DATA_FOUND');
534: ------dbms_output.put_line('FP_CI_UPDATE_EST_AMOUNTS - 2***');
535: x_return_status := FND_API.G_RET_STS_ERROR;

Line 723: PA_UTILS.Add_Message ( p_app_short_name => 'PA',

719: x_msg_count := 0;
720: --------dbms_output.put_line('FP_CI_UPDATE_IMPACT - 1');
721: --Checking for a valid implementation date
722: IF (p_implementation_date > SYSDATE) THEN
723: PA_UTILS.Add_Message ( p_app_short_name => 'PA',
724: p_msg_name => 'PA_FP_CI_INV_IMPACT_DATE'
725: );
726: x_return_status := FND_API.G_RET_STS_ERROR;
727: RETURN;

Line 732: PA_UTILS.Add_Message ( p_app_short_name => 'PA',

728: END IF;
729:
730: --Checking if control item id is null
731: IF p_ci_id IS NULL THEN
732: PA_UTILS.Add_Message ( p_app_short_name => 'PA',
733: p_msg_name => 'PA_FP_CI_NULL_CI_ID'
734: );
735: x_return_status := FND_API.G_RET_STS_ERROR;
736: RETURN;

Line 741: PA_UTILS.Add_Message ( p_app_short_name => 'PA',

737: END IF;
738:
739: IF p_impact_type_code IS NULL OR
740: p_impact_type_code NOT IN ('FINPLAN_COST', 'FINPLAN_REVENUE', 'FINPLAN_BOTH') THEN
741: PA_UTILS.Add_Message ( p_app_short_name => 'PA',
742: p_msg_name => 'PA_FP_INV_PARAM_PASSED',
743: p_token1=>'PROCEDURENAME',
744: p_value1=>'FP_CI_UPDATE_IMPACT'
745: );

Line 1171: PA_UTILS.ADD_MESSAGE

1167: AND (NVL(bv.approved_rev_plan_type_flag,'N') = 'Y'
1168: OR NVL(bv.approved_cost_plan_type_flag,'N') = 'Y');
1169: EXCEPTION
1170: WHEN NO_DATA_FOUND THEN
1171: PA_UTILS.ADD_MESSAGE
1172: ( p_app_short_name => 'PA',
1173: p_msg_name => 'PA_FP_CI_C_INV_VER_TYPE_MATCH');
1174: ------dbms_output.put_line('FP_CI_CHECK_COPY_POSSIBLE - 2***');
1175: x_return_status := FND_API.G_RET_STS_ERROR;

Line 1922: PA_UTILS.ADD_MESSAGE

1918: pa_debug.write(l_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL5);
1919: pa_debug.g_err_stage:= 'p_target_version_id = '|| p_target_version_id;
1920: pa_debug.write(l_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL5);
1921: END IF;
1922: PA_UTILS.ADD_MESSAGE
1923: (p_app_short_name => 'PA',
1924: p_msg_name => 'PA_FP_INV_PARAM_PASSED');
1925: IF p_pa_debug_mode = 'Y' THEN
1926: pa_debug.g_err_stage:= 'Invalid Arguments Passed';

Line 1939: PA_UTILS.ADD_MESSAGE

1935: IF p_pa_debug_mode = 'Y' THEN
1936: pa_debug.g_err_stage:= 'p_calling_context = '|| p_calling_context;
1937: pa_debug.write(l_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL5);
1938: END IF;
1939: PA_UTILS.ADD_MESSAGE
1940: (p_app_short_name => 'PA',
1941: p_msg_name => 'PA_FP_INV_PARAM_PASSED',
1942: p_token1 => 'PROCEDURENAME',
1943: p_value1 => 'PAFPCIMB.copy_merged_ctrl_items',

Line 2297: PA_UTILS.ADD_MESSAGE

2293: pa_debug.g_err_stage:= 'p_targ_version_type = '|| p_targ_version_type;
2294: pa_debug.write(l_module_name,pa_debug.g_err_stage,
2295: PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL5);
2296: END IF;
2297: PA_UTILS.ADD_MESSAGE
2298: (p_app_short_name => 'PA',
2299: p_msg_name => 'PA_FP_INV_PARAM_PASSED',
2300: p_token1 => 'PROCEDURENAME',
2301: p_value1 => 'PAFPCIMB.FP_CI_MANUAL_MERGE');

Line 2330: PA_UTILS.ADD_MESSAGE(p_app_short_name => 'PA',

2326: ELSE
2327:
2328: --This is the case where the impact is fully implemented. In this case the api should not have been called
2329: --at all. Hence throw error.
2330: PA_UTILS.ADD_MESSAGE(p_app_short_name => 'PA',
2331: p_msg_name => 'PA_FP_INV_PARAM_PASSED',
2332: p_token1 => 'PROCEDURENAME',
2333: p_value1 => 'PAFPCIMB.FP_CI_MANUAL_MERGE',
2334: p_token2 => 'STAGE',

Line 2355: PA_UTILS.ADD_MESSAGE

2351: pa_debug.g_err_stage:= 'p_ci_all_version_id = '|| p_ci_all_version_id;
2352: pa_debug.write(l_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL5);
2353:
2354: END IF;
2355: PA_UTILS.ADD_MESSAGE
2356: (p_app_short_name => 'PA',
2357: p_msg_name => 'PA_FP_INV_PARAM_PASSED',
2358: p_token1 => 'PROCEDURENAME',
2359: p_value1 => 'PAFPCIMB.FP_CI_MANUAL_MERGE');

Line 2435: PA_UTILS.ADD_MESSAGE

2431: pa_debug.g_err_stage:= 'p_ci_all_version_id = '|| p_ci_all_version_id;
2432: pa_debug.write(l_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL5);
2433:
2434: END IF;
2435: PA_UTILS.ADD_MESSAGE
2436: (p_app_short_name => 'PA',
2437: p_msg_name => 'PA_FP_INV_PARAM_PASSED',
2438: p_token1 => 'PROCEDURENAME',
2439: p_value1 => 'PAFPCIMB.FP_CI_MANUAL_MERGE');

Line 10514: PA_UTILS.ADD_MESSAGE(p_app_short_name => 'PA',

10510:
10511: pa_debug.g_err_stage:= 'p_context passed is '|| p_context;
10512: pa_debug.write(l_module_name,pa_debug.g_err_stage,5);
10513: END IF;
10514: PA_UTILS.ADD_MESSAGE(p_app_short_name => 'PA',
10515: p_msg_name => 'PA_FP_INV_PARAM_PASSED',
10516: p_token1 => 'PROCEDURENAME',
10517: p_value1 => l_module_name);
10518: RAISE PA_FP_CONSTANTS_PKG.Invalid_Arg_Exc;

Line 10548: PA_UTILS.ADD_MESSAGE(p_app_short_name => 'PA',

10544: pa_debug.write(l_module_name,pa_debug.g_err_stage,5);
10545:
10546: END IF;
10547:
10548: PA_UTILS.ADD_MESSAGE(p_app_short_name => 'PA',
10549: p_msg_name => 'PA_FP_INV_PARAM_PASSED',
10550: p_token1 => 'PROCEDURENAME',
10551: p_value1 => l_module_name);
10552: RAISE PA_FP_CONSTANTS_PKG.Invalid_Arg_Exc;

Line 10587: PA_UTILS.ADD_MESSAGE

10583: pa_debug.write(l_module_name,pa_debug.g_err_stage,5);
10584:
10585: END IF;
10586:
10587: PA_UTILS.ADD_MESSAGE
10588: (p_app_short_name => 'PA',
10589: p_msg_name => 'PA_FP_INV_PARAM_PASSED',
10590: p_token1 => 'PROCEDURENAME',
10591: p_value1 => l_module_name);

Line 10613: PA_UTILS.ADD_MESSAGE

10609: pa_debug.write(l_module_name,pa_debug.g_err_stage,5);
10610:
10611: END IF;
10612:
10613: PA_UTILS.ADD_MESSAGE
10614: (p_app_short_name => 'PA',
10615: p_msg_name => 'PA_FP_INV_PARAM_PASSED',
10616: p_token1 => 'PROCEDURENAME',
10617: p_value1 => l_module_name);

Line 10635: PA_UTILS.ADD_MESSAGE

10631: pa_debug.write(l_module_name,pa_debug.g_err_stage,5);
10632:
10633: END IF;
10634:
10635: PA_UTILS.ADD_MESSAGE
10636: (p_app_short_name => 'PA',
10637: p_msg_name => 'PA_FP_INV_PARAM_PASSED',
10638: p_token1 => 'PROCEDURENAME',
10639: p_value1 => l_module_name);

Line 10716: PA_UTILS.ADD_MESSAGE

10712: pa_debug.g_err_stage:= 'p_ci_id_tbl('||i||') IS '|| p_ci_id_tbl(i);
10713: pa_debug.write(l_module_name,pa_debug.g_err_stage,3);
10714:
10715: END IF;
10716: PA_UTILS.ADD_MESSAGE
10717: (p_app_short_name => 'PA',
10718: p_msg_name => 'PA_FP_INV_PARAM_PASSED',
10719: p_token1 => 'PROCEDURENAME',
10720: p_value1 => l_module_name);

Line 10799: PA_UTILS.ADD_MESSAGE

10795: pa_debug.write(l_module_name,pa_debug.g_err_stage,3);
10796: END IF;
10797:
10798: IF l_ci_type_class_code='CHANGE_ORDER' THEN
10799: PA_UTILS.ADD_MESSAGE
10800: (p_app_short_name => 'PA',
10801: p_msg_name => 'PA_FP_IMPL_CO_REJ_CODES_EXST',
10802: p_token1 => 'CI_NUMBER',
10803: p_value1 => l_ci_number);

Line 10806: PA_UTILS.ADD_MESSAGE

10802: p_token1 => 'CI_NUMBER',
10803: p_value1 => l_ci_number);
10804: ELSE
10805:
10806: PA_UTILS.ADD_MESSAGE
10807: (p_app_short_name => 'PA',
10808: p_msg_name => 'PA_FP_IMPL_CR_REJ_CODES_EXST',
10809: p_token1 => 'CI_NUMBER',
10810: p_value1 => l_ci_number);

Line 10834: PA_UTILS.ADD_MESSAGE

10830: END IF;
10831:
10832: If px_partial_impl_rev_amt is null Then
10833:
10834: PA_UTILS.ADD_MESSAGE
10835: (p_app_short_name => 'PA',
10836: p_msg_name => 'PA_CI_PAR_REV_IMPL_AMT_NULL');
10837:
10838: IF l_debug_mode = 'Y' THEN

Line 10887: PA_UTILS.ADD_MESSAGE

10883: If l_total_amount = 0 Then
10884:
10885: If(px_partial_impl_rev_amt<>0) Then
10886: --Error
10887: PA_UTILS.ADD_MESSAGE
10888: (p_app_short_name => 'PA',
10889: p_msg_name => 'PA_CI_PAR_REV_AMT_NOT_ZERO');
10890:
10891: IF l_debug_mode = 'Y' THEN

Line 10926: PA_UTILS.ADD_MESSAGE

10922: If l_total_amount >0 Then
10923:
10924: If px_partial_impl_rev_amt <0 Then
10925: --Error;
10926: PA_UTILS.ADD_MESSAGE
10927: (p_app_short_name => 'PA',
10928: p_msg_name => 'PA_CI_PAR_REV_AMT_NOT_POS');
10929:
10930: IF l_debug_mode = 'Y' THEN

Line 10950: PA_UTILS.ADD_MESSAGE

10946: END IF;
10947:
10948: If px_partial_impl_rev_amt>l_remaining_amount Then
10949: --Error;
10950: PA_UTILS.ADD_MESSAGE
10951: (p_app_short_name => 'PA',
10952: p_msg_name => 'PA_CI_PAR_REV_IMPL_AMT_GREATER');
10953:
10954: IF l_debug_mode = 'Y' THEN

Line 10975: PA_UTILS.ADD_MESSAGE

10971: If l_total_amount<0 Then
10972:
10973: If px_partial_impl_rev_amt>0 Then
10974: --Error;
10975: PA_UTILS.ADD_MESSAGE
10976: (p_app_short_name => 'PA',
10977: p_msg_name => 'PA_CI_PAR_REV_AMT_NOT_NEG');
10978:
10979: IF l_debug_mode = 'Y' THEN

Line 10999: PA_UTILS.ADD_MESSAGE

10995: END IF;
10996:
10997: If abs(px_partial_impl_rev_amt)>abs(l_remaining_amount) Then
10998: --Error;
10999: PA_UTILS.ADD_MESSAGE
11000: (p_app_short_name => 'PA',
11001: p_msg_name => 'PA_CI_PAR_REV_IMPL_AMT_GREATER');
11002:
11003: IF l_debug_mode = 'Y' THEN

Line 11111: PA_UTILS.ADD_MESSAGE

11107: pa_debug.g_err_stage:= 'CWV doest not exist.adding msg to stack';
11108: pa_debug.write(l_module_name,pa_debug.g_err_stage,3);
11109: END IF;
11110:
11111: PA_UTILS.ADD_MESSAGE
11112: (p_app_short_name => 'PA',
11113: p_msg_name => 'PA_FP_CI_MRG_NO_CW_VER',
11114: p_token1 => 'PLAN_TYPE',
11115: p_value1 => l_fin_plan_type_name);

Line 11158: PA_UTILS.ADD_MESSAGE

11154: ( p_project_id => l_project_id
11155: ,p_targ_app_cost_flag => l_app_cost_plan_type_flag
11156: ,p_targ_app_rev_flag => l_app_rev_plan_type_flag) = 'N' THEN
11157:
11158: PA_UTILS.ADD_MESSAGE
11159: (p_app_short_name => 'PA',
11160: p_msg_name => 'PA_FP_CANT_INCL_CO_UANPP_AMT');
11161:
11162:

Line 11172: PA_UTILS.ADD_MESSAGE

11168:
11169: IF p_context='IMPL_FIN_IMPACT' OR
11170: p_context='PARTIAL_REV' THEN
11171:
11172: PA_UTILS.ADD_MESSAGE
11173: (p_app_short_name => 'PA',
11174: p_msg_name => 'PA_FP_MERGE_SUBMIT',
11175: p_token1 => 'PLAN_TYPE',
11176: p_value1 => l_fin_plan_type_name);

Line 11180: PA_UTILS.ADD_MESSAGE

11176: p_value1 => l_fin_plan_type_name);
11177:
11178: ELSIF p_context ='INCLUDE' THEN
11179:
11180: PA_UTILS.ADD_MESSAGE
11181: (p_app_short_name => 'PA',
11182: p_msg_name => 'PA_FP_MERGE_ALL_SUBMIT');
11183:
11184:

Line 11198: PA_UTILS.ADD_MESSAGE

11194: pa_debug.g_err_stage:= 'Version is locked for conc processing';
11195: pa_debug.write(l_module_name,pa_debug.g_err_stage,3);
11196: END IF;
11197:
11198: PA_UTILS.ADD_MESSAGE
11199: (p_app_short_name => 'PA',
11200: p_msg_name => 'PA_FP_LOCKED_BY_PROCESSING');
11201:
11202: l_error_occurred_flag := 'Y';

Line 11210: PA_UTILS.ADD_MESSAGE

11206: pa_debug.g_err_stage:= 'Conc process for version has failed';
11207: pa_debug.write(l_module_name,pa_debug.g_err_stage,3);
11208: END IF;
11209:
11210: PA_UTILS.ADD_MESSAGE
11211: (p_app_short_name => 'PA',
11212: p_msg_name => 'PA_FP_WA_CONC_PRC_FAILURE_MSG');
11213:
11214: l_error_occurred_flag := 'Y';

Line 11227: PA_UTILS.ADD_MESSAGE

11223: pa_debug.g_err_stage:= 'Partial Implementation is not allowed into a target ALL version';
11224: pa_debug.write(l_module_name,pa_debug.g_err_stage,3);
11225: END IF;
11226:
11227: PA_UTILS.ADD_MESSAGE
11228: (p_app_short_name => 'PA',
11229: p_msg_name => 'PA_FP_NO_PART_INTO_TRG_ALL_PT',
11230: p_token1 => 'PLAN_TYPE',
11231: p_value1 => l_fin_plan_type_name);

Line 11368: PA_UTILS.ADD_MESSAGE( p_app_short_name => 'PA',

11364: if ((x_ci_cost_version_id_tbl(i) IS NOT NULL AND l_ci_cost_res_cls_flag <> l_targ_resource_cls_flag)
11365: OR (x_ci_rev_version_id_tbl(i) IS NOT NULL AND l_ci_rev_res_cls_flag <> l_targ_resource_cls_flag)
11366: OR (x_ci_all_version_id_tbl(i) IS NOT NULL AND l_ci_all_res_cls_flag <> l_targ_resource_cls_flag))
11367: then
11368: PA_UTILS.ADD_MESSAGE( p_app_short_name => 'PA',
11369: p_msg_name => 'PA_PS_FP_SOU_TAR_PRL_NOT_EQUAL');
11370: RAISE PA_FP_CONSTANTS_PKG.Invalid_Arg_Exc;
11371: end if;
11372: --CBS 12.2 enhancement changes end here

Line 11455: PA_UTILS.ADD_MESSAGE

11451: pa_debug.write(l_module_name,pa_debug.g_err_stage,3);
11452: END IF;
11453: IF p_context = 'IMPL_FIN_IMPACT' THEN
11454:
11455: PA_UTILS.ADD_MESSAGE
11456: (p_app_short_name => 'PA',
11457: p_msg_name => 'PA_FP_ALL_CO_REQ_FOR_ALL_PT',
11458: p_token1 => 'PLAN_TYPE',
11459: p_value1 => l_fin_plan_type_name_tbl(j));

Line 11463: PA_UTILS.ADD_MESSAGE

11459: p_value1 => l_fin_plan_type_name_tbl(j));
11460:
11461: ELSIF p_context = 'INCLUDE' THEN
11462:
11463: PA_UTILS.ADD_MESSAGE
11464: (p_app_short_name => 'PA',
11465: p_msg_name => 'PA_FP_ALL_CO_REQ_FOR_VER');
11466:
11467: /*SELECT cit.name INTO l_ci_name

Line 11477: PA_UTILS.ADD_MESSAGE

11473: l_ci_name := l_ci_name ||' ('|| x_ci_number(i) || ')';
11474:
11475: IF l_cost_impl_flag <> 'Y' THEN
11476:
11477: PA_UTILS.ADD_MESSAGE
11478: (p_app_short_name => 'PA',
11479: p_msg_name => 'PA_FP_NO_REV_INTO_TRG_ALL_CO',
11480: p_token1 => 'CHG_ORDER',
11481: p_value1 => l_ci_name);

Line 11485: PA_UTILS.ADD_MESSAGE

11481: p_value1 => l_ci_name);
11482:
11483: ELSE
11484:
11485: PA_UTILS.ADD_MESSAGE
11486: (p_app_short_name => 'PA',
11487: p_msg_name => 'PA_FP_NO_COST_INTO_TRG_ALL_CO',
11488: p_token1 => 'CHG_ORDER',
11489: p_value1 => l_ci_name);

Line 12753: PA_UTILS.Get_Encoded_Msg(p_index => l_msg_counter,

12749: IF l_debug_mode = 'Y' THEN
12750: pa_debug.g_err_stage:='Inside l_msg_counter IN REVERSE l_msg_counter : '||l_msg_counter;
12751: pa_debug.write(l_module_name,pa_debug.g_err_stage,3);
12752: END IF;
12753: PA_UTILS.Get_Encoded_Msg(p_index => l_msg_counter,
12754: p_msg_out => l_encoded_msg);
12755: fnd_message.set_encoded(l_encoded_msg);
12756: l_decoded_msg := fnd_message.get;
12757: l_translated_msg := nvl(l_decoded_msg, l_encoded_msg);

Line 13004: PA_UTILS.Get_Encoded_Msg(p_index => l_msg_counter,

13000: --will be displayed on the OA pages
13001: l_msg_count := fnd_msg_pub.count_msg;
13002: FOR l_msg_counter IN REVERSE 1..l_msg_count LOOP
13003:
13004: PA_UTILS.Get_Encoded_Msg(p_index => l_msg_counter,
13005: p_msg_out => l_encoded_msg);
13006: fnd_message.set_encoded(l_encoded_msg);
13007: l_decoded_msg := fnd_message.get;
13008: l_translated_msg := nvl(l_decoded_msg, l_encoded_msg);

Line 13065: PA_UTILS.ADD_MESSAGE

13061: IF l_plan_type_collection IS NOT NULL THEN
13062: l_plan_type_collection:= '[' || l_plan_type_collection || ']';
13063:
13064: --iff only new supplier region is enabled
13065: PA_UTILS.ADD_MESSAGE
13066: (p_app_short_name => 'PA',
13067: p_msg_name => 'PA_COST_OR_REV_IMPACT_MISSING');
13068:
13069: PA_UTILS.ADD_MESSAGE

Line 13069: PA_UTILS.ADD_MESSAGE

13065: PA_UTILS.ADD_MESSAGE
13066: (p_app_short_name => 'PA',
13067: p_msg_name => 'PA_COST_OR_REV_IMPACT_MISSING');
13068:
13069: PA_UTILS.ADD_MESSAGE
13070: (p_app_short_name => 'PA',
13071: --p_msg_name => 'PA_FP_IMPL_SUCC_PLAN_TYPE',--For bug 3829002
13072: p_msg_name => 'PA_FP_IMPL_OPT_SUCC_IMPL',
13073: p_token1 => 'SUCC_PTS',

Line 13099: PA_UTILS.ADD_MESSAGE

13095: IF l_ci_number_collection IS NOT NULL THEN
13096: l_ci_number_collection:= '[' || l_ci_number_collection || ']';
13097:
13098:
13099: PA_UTILS.ADD_MESSAGE
13100: (p_app_short_name => 'PA',
13101: p_msg_name => 'PA_FP_INCL_SUCC_CHG_DOC',
13102: p_token1 => 'SUCC_CIS',
13103: p_value1 => l_ci_number_collection );

Line 13111: PA_UTILS.ADD_MESSAGE

13107:
13108: ELSIF l_partial_impl_succeeded='Y' THEN
13109:
13110: --dbms_output.put_line('M7');
13111: PA_UTILS.ADD_MESSAGE
13112: (p_app_short_name => 'PA',
13113: p_msg_name => 'PA_FP_PARTIAL_IMPL_SUCC');
13114: END IF;
13115:

Line 13129: PA_UTILS.Get_Encoded_Msg(p_index => l_msg_counter,

13125: --will be displayed on the OA pages
13126: l_msg_count := fnd_msg_pub.count_msg;
13127: FOR l_msg_counter IN REVERSE 1..l_msg_count LOOP
13128:
13129: PA_UTILS.Get_Encoded_Msg(p_index => l_msg_counter,
13130: p_msg_out => l_encoded_msg);
13131: fnd_message.set_encoded(l_encoded_msg);
13132: l_decoded_msg := fnd_message.get;
13133: l_translated_msg := nvl(l_decoded_msg, l_encoded_msg);