DBA Data[Home] [Help]

APPS.FA_ASSET_DESC_PUB dependencies on FA_SRVR_MSG

Line 91: FA_SRVR_MSG.Init_Server_Message;

87:
88:
89: if (FND_API.To_Boolean(p_init_msg_list)) then
90: -- Initialize error message stack.
91: FA_SRVR_MSG.Init_Server_Message;
92:
93: -- Initialize debug message stack.
94: FA_DEBUG_PKG.Initialize;
95: end if;

Line 105: fa_srvr_msg.add_message(

101: ,p_log_level_rec => g_log_level_rec);
102: end if;
103:
104: if (px_asset_hdr_rec.asset_id is NULL) then
105: fa_srvr_msg.add_message(
106: calling_fn => l_calling_fn,
107: name => 'FA_ASSET_MAINT_WRONG_PARAM',
108: p_log_level_rec => g_log_level_rec);
109: raise pub_error;

Line 312: fa_srvr_msg.add_message(calling_fn => l_calling_fn,

308: p_book_type_code => px_asset_hdr_rec.book_type_code,
309: p_asset_id => px_asset_hdr_rec.asset_id,
310: x_override_flag => l_override_flag)) then
311:
312: fa_srvr_msg.add_message(calling_fn => l_calling_fn,
313: p_log_level_rec => g_log_level_rec);
314: raise pub_error;
315: end if;
316:

Line 318: fa_srvr_msg.add_message(

314: raise pub_error;
315: end if;
316:
317: if (l_override_flag = 'N') then
318: fa_srvr_msg.add_message(
319: calling_fn => l_calling_fn,
320: name => 'FA_OVERRIDE_NOT_ALLOWED',
321: token1 => 'SERIAL NUMBER',
322: p_log_level_rec => g_log_level_rec);

Line 370: fa_srvr_msg.add_message(

366: p_asset_id => px_asset_hdr_rec.asset_id,
367: x_override_flag => l_override_flag
368: )) then
369:
370: fa_srvr_msg.add_message(
371: calling_fn => l_calling_fn,
372: p_log_level_rec => g_log_level_rec);
373: raise pub_error;
374: end if;

Line 377: fa_srvr_msg.add_message(

373: raise pub_error;
374: end if;
375:
376: if (l_override_flag = 'N') then
377: fa_srvr_msg.add_message(
378: calling_fn => l_calling_fn,
379: name => 'FA_OVERRIDE_NOT_ALLOWED',
380: token1 => 'ASSET KEY',
381: p_log_level_rec => g_log_level_rec);

Line 573: fa_srvr_msg.add_message(

569: p_book_type_code => px_asset_hdr_rec.book_type_code,
570: p_asset_id => px_asset_hdr_rec.asset_id,
571: x_override_flag => l_override_flag
572: )) then
573: fa_srvr_msg.add_message(
574: calling_fn => l_calling_fn,
575: p_log_level_rec => g_log_level_rec);
576: raise pub_error;
577: end if;

Line 580: fa_srvr_msg.add_message(

576: raise pub_error;
577: end if;
578:
579: if (l_override_flag = 'N') then
580: fa_srvr_msg.add_message(
581: calling_fn => l_calling_fn,
582: name => 'FA_OVERRIDE_NOT_ALLOWED',
583: token1 => 'LEASE NUMBER',
584: p_log_level_rec => g_log_level_rec);

Line 1120: fa_srvr_msg.add_message

1116: when pub_error then
1117:
1118: ROLLBACK TO do_desc_update;
1119:
1120: fa_srvr_msg.add_message
1121: (calling_fn => 'fa_asset_desc_pub.update_desc',
1122: p_log_level_rec => g_log_level_rec);
1123:
1124: FND_MSG_PUB.count_and_get (

Line 1135: fa_srvr_msg.add_sql_error

1131: when others then
1132:
1133: ROLLBACK TO do_desc_update;
1134:
1135: fa_srvr_msg.add_sql_error
1136: (calling_fn => 'fa_asset_desc_pub.update_desc'
1137: ,p_log_level_rec => g_log_level_rec);
1138:
1139: FND_MSG_PUB.count_and_get (

Line 1391: FA_SRVR_MSG.Add_Message(

1387: return TRUE;
1388:
1389: EXCEPTION
1390: when update_error then
1391: FA_SRVR_MSG.Add_Message(
1392: Calling_Fn => l_calling_fn
1393: ,p_log_level_rec => p_log_level_rec);
1394:
1395: return FALSE;

Line 1397: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn

1393: ,p_log_level_rec => p_log_level_rec);
1394:
1395: return FALSE;
1396: when others then
1397: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn
1398: ,p_log_level_rec => p_log_level_rec);
1399: return FALSE;
1400:
1401: END update_row;

Line 1459: fa_srvr_msg.init_server_message;

1455:
1456: -- Initialize message list if p_init_msg_list is set to TRUE.
1457: if (fnd_api.to_boolean(p_init_msg_list)) then
1458: -- initialize error message stack.
1459: fa_srvr_msg.init_server_message;
1460:
1461: -- initialize debug message stack.
1462: fa_debug_pkg.initialize;
1463: end if;

Line 1483: fa_srvr_msg.add_message

1479: fetch c_corp_book into px_asset_hdr_rec.book_type_code;
1480: close c_corp_book;
1481:
1482: if px_asset_hdr_rec.book_type_code is null then
1483: fa_srvr_msg.add_message
1484: (calling_fn => l_calling_fn,
1485: name => 'FA_EXP_GET_ASSET_INFO'
1486: ,p_log_level_rec => g_log_level_rec);
1487: raise inv_err;

Line 2008: fa_srvr_msg.add_message

2004: -- set back to original environment when the procedure is finished
2005: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);
2006: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);
2007:
2008: fa_srvr_msg.add_message
2009: (calling_fn => l_calling_fn,
2010: p_log_level_rec => g_log_level_rec);
2011:
2012: FND_MSG_PUB.count_and_get (

Line 2027: fa_srvr_msg.add_sql_error

2023: -- set back to original environment when the procedure is finished
2024: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);
2025: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);
2026:
2027: fa_srvr_msg.add_sql_error
2028: (calling_fn => l_calling_fn
2029: ,p_log_level_rec => g_log_level_rec);
2030:
2031: FND_MSG_PUB.count_and_get (

Line 2089: fa_srvr_msg.init_server_message;

2085:
2086: -- Initialize message list if p_init_msg_list is set to TRUE.
2087: if (fnd_api.to_boolean(p_init_msg_list)) then
2088: -- initialize error message stack.
2089: fa_srvr_msg.init_server_message;
2090:
2091: -- initialize debug message stack.
2092: fa_debug_pkg.initialize;
2093: end if;

Line 2735: fa_srvr_msg.add_message

2731: -- set back to original environment when the procedure is finished
2732: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);
2733: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);
2734:
2735: fa_srvr_msg.add_message
2736: (calling_fn => l_calling_fn,
2737: p_log_level_rec => g_log_level_rec);
2738:
2739: FND_MSG_PUB.count_and_get (

Line 2754: fa_srvr_msg.add_sql_error

2750: -- set back to original environment when the procedure is finished
2751: fnd_profile.put('GL_SET_OF_BKS_ID', px_asset_hdr_rec.set_of_books_id);
2752: fnd_client_info.set_currency_context (px_asset_hdr_rec.set_of_books_id);
2753:
2754: fa_srvr_msg.add_sql_error
2755: (calling_fn => l_calling_fn
2756: ,p_log_level_rec => g_log_level_rec);
2757:
2758: FND_MSG_PUB.count_and_get (

Line 2787: fa_srvr_msg.add_message(

2783: /*
2784: if not fa_cache_pkg.fazcat(
2785: X_cat_id => px_asset_cat_rec.category_id
2786: ,p_log_level_rec => p_log_level_rec) then
2787: fa_srvr_msg.add_message(
2788: calling_fn => 'fa_asset_desc_pub.initialize_category_df',
2789: p_log_level_rec => p_log_level_rec);
2790: return FALSE;
2791: end if;

Line 2794: fa_srvr_msg.add_message(

2790: return FALSE;
2791: end if;
2792: */
2793: if not fa_cache_pkg.fazsys then
2794: fa_srvr_msg.add_message(
2795: calling_fn => 'fa_asset_desc_pub.initialize_category_df',
2796: p_log_level_rec => p_log_level_rec);
2797: return FALSE;
2798: end if;

Line 2813: fa_srvr_msg.add_message(

2809: p_delimiter => l_delimiter,
2810: p_segment_array => l_segment_array,
2811: p_concat_string => l_concat_string
2812: ,p_log_level_rec => p_log_level_rec) then
2813: fa_srvr_msg.add_message(
2814: calling_fn => 'fa_asset_desc_pub.initialize_category_df',
2815: p_log_level_rec => p_log_level_rec);
2816: return FALSE;
2817: end if;

Line 2919: fa_srvr_msg.add_sql_error(calling_fn => 'fa_asset_desc_pub.initialize_category_df'

2915: return (TRUE);
2916: EXCEPTION
2917:
2918: WHEN OTHERS THEN
2919: fa_srvr_msg.add_sql_error(calling_fn => 'fa_asset_desc_pub.initialize_category_df'
2920: ,p_log_level_rec => p_log_level_rec);
2921: return FALSE;
2922:
2923: END;