DBA Data[Home] [Help]

APPS.FA_ADJUSTMENT_PVT dependencies on FA_SRVR_MSG

Line 545: fa_srvr_msg.add_message(calling_fn => 'fa_addition_pvt.insert_asset', p_log_level_rec => p_log_level_rec);

541: X_Method_Type => l_method_type,
542: X_Success => l_success, p_log_level_rec => p_log_level_rec);
543:
544: if (l_success <= 0) then
545: fa_srvr_msg.add_message(calling_fn => 'fa_addition_pvt.insert_asset', p_log_level_rec => p_log_level_rec);
546: raise adj_err;
547: end if;
548:
549: BEGIN

Line 986: fa_srvr_msg.add_message (calling_fn => l_calling_fn, p_log_level_rec => p_log_level_rec);

982: nvl(x_asset_fin_rec_new.tracking_method,'OTHER') = 'ALLOCATE' and
983: (x_asset_deprn_rec_new.deprn_reserve - l_deprn_exp_amort_nbv - l_reserve_adjustment_amount) <> 0 then
984:
985: if not fa_cache_pkg.fazccmt (x_asset_fin_rec_new.deprn_method_code,x_asset_fin_rec_new.life_in_months,p_log_level_rec => p_log_level_rec) then
986: fa_srvr_msg.add_message (calling_fn => l_calling_fn, p_log_level_rec => p_log_level_rec);
987: raise adj_err;
988: end if;
989:
990: l_ret_code := FA_TRACK_MEMBER_PVT.TRACK_ASSETS

Line 1032: fa_srvr_msg.add_message(calling_fn => l_calling_fn, p_log_level_rec => p_log_level_rec);

1028:
1029: EXCEPTION
1030:
1031: when adj_err then
1032: fa_srvr_msg.add_message(calling_fn => l_calling_fn, p_log_level_rec => p_log_level_rec);
1033: return false;
1034:
1035: when others then
1036: fa_srvr_msg.add_sql_error

Line 1036: fa_srvr_msg.add_sql_error

1032: fa_srvr_msg.add_message(calling_fn => l_calling_fn, p_log_level_rec => p_log_level_rec);
1033: return false;
1034:
1035: when others then
1036: fa_srvr_msg.add_sql_error
1037: (calling_fn => l_calling_fn, p_log_level_rec => p_log_level_rec);
1038: return false;
1039:
1040: END do_adjustment;

Line 1360: fa_srvr_msg.add_message(

1356: if (l_no_changes_to_uom) then
1357: if (l_no_changes_to_group) and (l_no_changes_to_reduction) and (l_no_changes_to_method) then
1358: if (l_no_changes_to_dep_flag) and (l_no_changes_to_impairment)
1359: and (l_no_changes_adjusted_cost) /*bug#16426081*/ then
1360: fa_srvr_msg.add_message(
1361: calling_fn => l_calling_fn,
1362: name => 'FA_SHARED_NO_CHANGES_TO_COMMIT', p_log_level_rec => p_log_level_rec);
1363: return FALSE;
1364:

Line 1379: fa_srvr_msg.add_message(

1375: if (p_log_level_rec.statement_level) then
1376: fa_debug_pkg.add('l_calling_fn', 'No method change if depreciation_option <> ', 'GROUP', p_log_level_rec => p_log_level_rec);
1377: end if;
1378:
1379: fa_srvr_msg.add_message(
1380: calling_fn => l_calling_fn,
1381: name => 'FA_BK_NO_MULTIPLE_CHANGES', p_log_level_rec => p_log_level_rec);
1382: return FALSE;
1383: end if;

Line 1391: fa_srvr_msg.add_message(

1387: (not l_no_changes_to_group) or
1388: (not l_no_changes_to_impairment) or
1389: (not l_no_changes_adjusted_cost) or /*bug#16426081 */
1390: (not l_no_changes_to_method)) then
1391: fa_srvr_msg.add_message(
1392: calling_fn => l_calling_fn,
1393: name => 'FA_BK_NO_MULTIPLE_CHANGES', p_log_level_rec => p_log_level_rec);
1394: return FALSE;
1395: end if;

Line 1402: fa_srvr_msg.add_message(

1398: ((not l_no_changes_to_reduction) or
1399: (not l_no_changes_to_group) or
1400: (not l_no_changes_made) or
1401: (not l_no_changes_to_method)) then
1402: fa_srvr_msg.add_message(
1403: calling_fn => l_calling_fn,
1404: name => 'FA_BK_NO_MULTIPLE_CHANGES', p_log_level_rec => p_log_level_rec);
1405: return FALSE;
1406: end if;

Line 1411: fa_srvr_msg.add_message(

1407:
1408: else
1409:
1410: if (not l_no_changes_to_dep_flag) then
1411: fa_srvr_msg.add_message(
1412: calling_fn => l_calling_fn,
1413: name => 'FA_BK_NO_MULTIPLE_CHANGES', p_log_level_rec => p_log_level_rec);
1414: return FALSE;
1415: end if;

Line 1418: fa_srvr_msg.add_message(

1414: return FALSE;
1415: end if;
1416:
1417: if (not l_no_changes_to_impairment) then
1418: fa_srvr_msg.add_message(
1419: calling_fn => l_calling_fn,
1420: name => 'FA_BK_NO_MULTIPLE_CHANGES', p_log_level_rec => p_log_level_rec);
1421: return FALSE;
1422: end if;

Line 1425: fa_srvr_msg.add_message(

1421: return FALSE;
1422: end if;
1423:
1424: if (not l_no_changes_to_group) then
1425: fa_srvr_msg.add_message(
1426: calling_fn => l_calling_fn,
1427: name => 'FA_BK_NO_MULTIPLE_CHANGES', p_log_level_rec => p_log_level_rec);
1428: return FALSE;
1429: end if;

Line 1432: fa_srvr_msg.add_message(

1428: return FALSE;
1429: end if;
1430: /*bug#16426081 starts*/
1431: if (not l_no_changes_adjusted_cost) then
1432: fa_srvr_msg.add_message(
1433: calling_fn => l_calling_fn,
1434: name => 'FA_BK_NO_MULTIPLE_CHANGES', p_log_level_rec => p_log_level_rec);
1435: return FALSE;
1436: end if;