DBA Data[Home] [Help]

APPS.HZ_IMP_DNB_POSTPROC_PKG dependencies on FND_MESSAGE

Line 161: --l_error_message := FND_MESSAGE.get;

157: FND_FILE.PUT_LINE(FND_FILE.LOG, 'batchid:'||p_batchid);
158: FND_MSG_PUB.Reset;
159: --FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
160: FOR i IN 1..l_msg_count LOOP
161: --l_error_message := FND_MESSAGE.get;
162: l_error_message := FND_MSG_PUB.Get(
163: p_msg_index => i,
164: p_encoded => FND_API.G_FALSE);
165: errbuf := l_error_message;

Line 179: --l_error_message := FND_MESSAGE.get;

175: FND_FILE.PUT_LINE(FND_FILE.LOG, 'batchid:'||p_batchid);
176: FND_MSG_PUB.Reset;
177: --FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
178: FOR i IN 1..l_msg_count LOOP
179: --l_error_message := FND_MESSAGE.get;
180: l_error_message := FND_MSG_PUB.Get(
181: p_msg_index => i,
182: p_encoded => FND_API.G_FALSE);
183: errbuf := l_error_message;

Line 190: FND_MESSAGE.SET_NAME('AR', 'HZ_API_OTHERS_EXCEP');

186: FND_FILE.close;
187: WHEN OTHERS THEN
188: ROLLBACK TO dnb_adapter_pp;
189: retcode := 2;
190: FND_MESSAGE.SET_NAME('AR', 'HZ_API_OTHERS_EXCEP');
191: FND_MESSAGE.SET_TOKEN('ERROR', SQLERRM);
192: FND_FILE.PUT_LINE(FND_FILE.LOG, 'SQLERRM: ' || SQLERRM);
193: FND_FILE.PUT_LINE(FND_FILE.LOG, 'batchid:'||p_batchid);
194: FND_MSG_PUB.Reset;

Line 191: FND_MESSAGE.SET_TOKEN('ERROR', SQLERRM);

187: WHEN OTHERS THEN
188: ROLLBACK TO dnb_adapter_pp;
189: retcode := 2;
190: FND_MESSAGE.SET_NAME('AR', 'HZ_API_OTHERS_EXCEP');
191: FND_MESSAGE.SET_TOKEN('ERROR', SQLERRM);
192: FND_FILE.PUT_LINE(FND_FILE.LOG, 'SQLERRM: ' || SQLERRM);
193: FND_FILE.PUT_LINE(FND_FILE.LOG, 'batchid:'||p_batchid);
194: FND_MSG_PUB.Reset;
195: FOR i IN 1..FND_MSG_PUB.Count_Msg LOOP