DBA Data[Home] [Help]

APPS.FA_MASSADD_PKG dependencies on FA_SRVR_MSG

Line 924: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);

920:
921: -- clear the debug stack for each asset
922: FA_DEBUG_PKG.Initialize;
923: -- reset the message level to prevent bogus errors
924: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);
925:
926: BEGIN -- start asset level block
927:
928: l_inv_indicator := 1;

Line 1552: fa_srvr_msg.add_message(

1548:
1549: if (l_units_to_adjust_tbl(i) < 0) and
1550: ((l_units_to_adjust_tbl(i) +
1551: l_asset_desc_rec.current_units) <0) then
1552: fa_srvr_msg.add_message(
1553: calling_fn => l_calling_fn,
1554: name => 'CUA_NEGATIVE_UNITS_NOT_ALLOWED',
1555: application => 'CUA', p_log_level_rec => g_log_level_rec);
1556: raise error_found_trx;

Line 1787: fa_srvr_msg.add_message(

1783: if (g_log_level_rec.statement_level) then
1784: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
1785: end if;
1786:
1787: fa_srvr_msg.add_message(
1788: calling_fn => NULL,
1789: name => 'FA_MAP_SUCCESS',
1790: token1 => 'MASS_ADDITION_ID',
1791: value1 => l_mass_addition_id_tbl(i),

Line 1810: fa_srvr_msg.add_message(

1806: if (g_log_level_rec.statement_level) then
1807: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
1808: end if;
1809:
1810: fa_srvr_msg.add_message(
1811: calling_fn => l_calling_fn,
1812: name => 'FA_MAP_FAILED',
1813: token1 => 'MASS_ADDITION_ID',
1814: value1 => l_mass_addition_id_tbl(i),

Line 1831: fa_srvr_msg.add_message(

1827: if (g_log_level_rec.statement_level) then
1828: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
1829: end if;
1830:
1831: fa_srvr_msg.add_message(
1832: calling_fn => l_calling_fn,
1833: name => 'FA_MAP_FAILED',
1834: token1 => 'MASS_ADDITION_ID',
1835: value1 => l_mass_addition_id_tbl(i),

Line 1920: fa_srvr_msg.add_message(

1916: commit;
1917:
1918: --Changes made as per the ER No.s 6606548 and 6606552 by Vkukutam Start
1919: if x_failure_count = 0 then
1920: fa_srvr_msg.add_message(
1921: calling_fn => l_calling_fn,
1922: name => 'FA_JP_NO_ERROR_FOUND', p_log_level_rec => g_log_level_rec);
1923:
1924:

Line 1938: fa_srvr_msg.add_message(

1934: rollback;
1935: x_return_status := 0;
1936: when init_err then
1937: rollback;
1938: fa_srvr_msg.add_message(
1939: calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1940: x_return_status := 2;
1941:
1942: when error_found then

Line 1944: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);

1940: x_return_status := 2;
1941:
1942: when error_found then
1943: rollback;
1944: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1945: x_return_status := 2;
1946:
1947: when others then
1948: rollback;

Line 1949: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);

1945: x_return_status := 2;
1946:
1947: when others then
1948: rollback;
1949: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1950: x_return_status := 2;
1951:
1952:
1953: END Do_Mass_Addition;

Line 2286: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);

2282: return true;
2283:
2284: EXCEPTION
2285: WHEN others THEN
2286: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
2287: return false;
2288:
2289: END Do_Mass_Property;
2290:

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

2660:
2661: EXCEPTION
2662: WHEN massadd_err THEN
2663: ROLLBACK;
2664: fa_srvr_msg.add_message (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
2665: X_return_status := 2;
2666:
2667: WHEN OTHERS THEN
2668: ROLLBACK;

Line 2669: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);

2665: X_return_status := 2;
2666:
2667: WHEN OTHERS THEN
2668: ROLLBACK;
2669: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
2670: x_return_status := 2;
2671:
2672:
2673: END allocate_workers;