DBA Data[Home] [Help]

APPS.GL_AS_POST_UPG_CHK_PKG dependencies on GL_MESSAGE

Line 348: GL_MESSAGE.Func_Ent(func_name => v_func_name,

344: pv_nl := '
345: ';
346:
347: -- Log the procedure entry
348: GL_MESSAGE.Func_Ent(func_name => v_func_name,
349: log_level => pc_log_level_procedure,
350: module => v_module);
351:
352: -- Write the HTML header section

Line 888: GL_MESSAGE.Func_Succ(func_name => v_func_name,

884: -- Complete the HTML report
885: FND_FILE.put_line(FND_FILE.output, pv_nl||'');
886:
887: -- Log the success exit
888: GL_MESSAGE.Func_Succ(func_name => v_func_name,
889: log_level => pc_log_level_procedure,
890: module => v_module);
891:
892: -- Set the concurrent program completion status before exit

Line 917: GL_MESSAGE.Func_Fail(func_name => v_func_name,

913: -- Complete the HTML report
914: FND_FILE.put_line(FND_FILE.output, pv_nl||'');
915:
916: -- Log the error exit
917: GL_MESSAGE.Func_Fail(func_name => v_func_name,
918: log_level => pc_log_level_procedure,
919: module => v_module);
920: -- Set the concurrent program completion status to ERROR
921: v_return_status := FND_CONCURRENT.Set_Completion_Status

Line 936: GL_MESSAGE.Write_Fndlog_String(log_level => pc_log_leveL_unexpected,

932:
933: -- Print the error message to program log file
934: FND_FILE.put_line(FND_FILE.log, x_errbuf);
935: -- Print the error message to FND Log
936: GL_MESSAGE.Write_Fndlog_String(log_level => pc_log_leveL_unexpected,
937: module => v_module,
938: message => x_errbuf);
939:
940: -- Print the fatal error message

Line 950: GL_MESSAGE.Func_Fail(func_name => v_func_name,

946: -- Complete the HTML report
947: FND_FILE.put_line(FND_FILE.output, pv_nl||'');
948:
949: -- Log the error exit
950: GL_MESSAGE.Func_Fail(func_name => v_func_name,
951: log_level => pc_log_level_procedure,
952: module => v_module);
953: -- Set the concurrent program completion status to ERROR
954: v_return_status := FND_CONCURRENT.Set_Completion_Status

Line 976: GL_MESSAGE.Func_Ent(func_name => v_func_name,

972: v_module := 'gl.plsql.gl_as_post_upg_chk_pkg.print_table_header';
973: v_func_name := 'GL_AS_POST_UPG_CHK_PKG.Print_Table_Header';
974:
975: -- Log the procedure entry
976: GL_MESSAGE.Func_Ent(func_name => v_func_name,
977: log_level => pc_log_level_procedure,
978: module => v_module);
979:
980: IF (p_info_msg_name IS NOT NULL)

Line 1003: GL_MESSAGE.Func_Succ(func_name => v_func_name,

999: pv_nl||p_column_text||'');
1000: END IF;
1001:
1002: -- Log the success exit
1003: GL_MESSAGE.Func_Succ(func_name => v_func_name,
1004: log_level => pc_log_level_procedure,
1005: module => v_module);
1006: EXCEPTION
1007: WHEN Others THEN

Line 1013: GL_MESSAGE.Write_Fndlog_String(log_level => pc_log_leveL_unexpected,

1009:
1010: -- Print the error message to program log file
1011: FND_FILE.put_line(FND_FILE.log, SQLERRM);
1012: -- Print the error message to FND Log
1013: GL_MESSAGE.Write_Fndlog_String(log_level => pc_log_leveL_unexpected,
1014: module => v_module,
1015: message => SQLERRM);
1016: -- Log the error exit
1017: GL_MESSAGE.Func_Fail(func_name => v_func_name,

Line 1017: GL_MESSAGE.Func_Fail(func_name => v_func_name,

1013: GL_MESSAGE.Write_Fndlog_String(log_level => pc_log_leveL_unexpected,
1014: module => v_module,
1015: message => SQLERRM);
1016: -- Log the error exit
1017: GL_MESSAGE.Func_Fail(func_name => v_func_name,
1018: log_level => pc_log_level_procedure,
1019: module => v_module);
1020: RAISE PRINT_ERROR;
1021: