DBA Data[Home] [Help]

APPS.IGF_AP_BATCH_VER_PRC_PKG dependencies on FND_MSG_PUB

Line 1635: FND_MSG_PUB.Initialize ;

1631:
1632: -- Compute EFC Against the updated correction ISIR
1633: lv_efc_isir_rec := igf_ap_batch_ver_prc_pkg.lp_isir_rec ;
1634:
1635: FND_MSG_PUB.Initialize ;
1636:
1637: -- Call EFC Calculation with Ignore Warnings set to 'N'
1638: igf_ap_efc_calc.calculate_efc(
1639: p_isir_rec => lv_efc_isir_rec,

Line 1699: p_msg_count := FND_MSG_PUB.Count_Msg();

1695:
1696: ELSE
1697: -- Efc failed due to errors.
1698: -- PRINT ALL ERRORS
1699: p_msg_count := FND_MSG_PUB.Count_Msg();
1700:
1701: IF NVL(p_msg_count,0) > 0 THEN
1702: IF fnd_log.level_statement >= fnd_log.g_current_runtime_level THEN
1703: fnd_log.string(fnd_log.level_statement,'igf.plsql.igf_ap_batch_ver_prc_pkg.main.debug','EFC computation for the context student has failed.');

Line 1709: p_msg_text := fnd_msg_pub.get(i,'F');

1705: FND_MESSAGE.SET_NAME('IGF','IGF_AP_EFC_FAIL');
1706: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MESSAGE.GET);
1707:
1708: FOR i in 1..p_msg_count LOOP
1709: p_msg_text := fnd_msg_pub.get(i,'F');
1710: FND_FILE.PUT_LINE(FND_FILE.LOG, ' ' || TO_CHAR(i) || '.' || p_msg_text);
1711: END LOOP;
1712: END IF;
1713: IF fnd_log.level_statement >= fnd_log.g_current_runtime_level THEN