DBA Data[Home] [Help]

APPS.HZ_IMP_PURGE_PKG dependencies on FND_MSG_PUB

Line 28: FND_MSG_PUB.ADD;

24: EXCEPTION
25: WHEN FND_API.G_EXC_ERROR THEN
26: ROLLBACK WORK;
27: FND_MESSAGE.SET_NAME( 'AR', 'HZ_IMP_DB_VER_CHECK' );
28: FND_MSG_PUB.ADD;
29: FND_MSG_PUB.Reset;
30: FOR i IN 1..FND_MSG_PUB.Count_Msg LOOP
31: l_error_message := FND_MSG_PUB.Get( p_msg_index => i,
32: p_encoded => FND_API.G_FALSE);

Line 29: FND_MSG_PUB.Reset;

25: WHEN FND_API.G_EXC_ERROR THEN
26: ROLLBACK WORK;
27: FND_MESSAGE.SET_NAME( 'AR', 'HZ_IMP_DB_VER_CHECK' );
28: FND_MSG_PUB.ADD;
29: FND_MSG_PUB.Reset;
30: FOR i IN 1..FND_MSG_PUB.Count_Msg LOOP
31: l_error_message := FND_MSG_PUB.Get( p_msg_index => i,
32: p_encoded => FND_API.G_FALSE);
33: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, l_error_message );

Line 30: FOR i IN 1..FND_MSG_PUB.Count_Msg LOOP

26: ROLLBACK WORK;
27: FND_MESSAGE.SET_NAME( 'AR', 'HZ_IMP_DB_VER_CHECK' );
28: FND_MSG_PUB.ADD;
29: FND_MSG_PUB.Reset;
30: FOR i IN 1..FND_MSG_PUB.Count_Msg LOOP
31: l_error_message := FND_MSG_PUB.Get( p_msg_index => i,
32: p_encoded => FND_API.G_FALSE);
33: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, l_error_message );
34: FND_FILE.PUT_LINE(FND_FILE.log, l_error_message );

Line 31: l_error_message := FND_MSG_PUB.Get( p_msg_index => i,

27: FND_MESSAGE.SET_NAME( 'AR', 'HZ_IMP_DB_VER_CHECK' );
28: FND_MSG_PUB.ADD;
29: FND_MSG_PUB.Reset;
30: FOR i IN 1..FND_MSG_PUB.Count_Msg LOOP
31: l_error_message := FND_MSG_PUB.Get( p_msg_index => i,
32: p_encoded => FND_API.G_FALSE);
33: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, l_error_message );
34: FND_FILE.PUT_LINE(FND_FILE.log, l_error_message );
35: END LOOP;