DBA Data[Home] [Help]

APPS.OKC_PURGE_PVT dependencies on FND_MSG_PUB

Line 63: IF FND_MSG_PUB.Count_Msg > 0 Then

59: IF ( FND_LOG.LEVEL_UNEXPECTED >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
60: FND_LOG.STRING( FND_LOG.LEVEL_UNEXPECTED ,l_api_name,'200: Resource busy exception');
61: END IF;
62:
63: IF FND_MSG_PUB.Count_Msg > 0 Then
64: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
65: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));
66: END LOOP;
67: END IF;

Line 64: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP

60: FND_LOG.STRING( FND_LOG.LEVEL_UNEXPECTED ,l_api_name,'200: Resource busy exception');
61: END IF;
62:
63: IF FND_MSG_PUB.Count_Msg > 0 Then
64: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
65: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));
66: END LOOP;
67: END IF;
68: FND_MSG_PUB.initialize;

Line 65: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));

61: END IF;
62:
63: IF FND_MSG_PUB.Count_Msg > 0 Then
64: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
65: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));
66: END LOOP;
67: END IF;
68: FND_MSG_PUB.initialize;
69: RAISE APP_EXCEPTIONS.RECORD_LOCK_EXCEPTION;

Line 68: FND_MSG_PUB.initialize;

64: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
65: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));
66: END LOOP;
67: END IF;
68: FND_MSG_PUB.initialize;
69: RAISE APP_EXCEPTIONS.RECORD_LOCK_EXCEPTION;
70: WHEN OTHERS THEN
71:
72: retcode := 2;

Line 79: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

75: IF ( FND_LOG.LEVEL_UNEXPECTED >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
76: FND_LOG.STRING( FND_LOG.LEVEL_UNEXPECTED ,l_api_name,'200: Other exception:'||errbuf);
77: END IF;
78:
79: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
80: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
81: END IF;
82: IF FND_MSG_PUB.Count_Msg > 0 Then
83: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP

Line 80: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);

76: FND_LOG.STRING( FND_LOG.LEVEL_UNEXPECTED ,l_api_name,'200: Other exception:'||errbuf);
77: END IF;
78:
79: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
80: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
81: END IF;
82: IF FND_MSG_PUB.Count_Msg > 0 Then
83: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
84: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));

Line 82: IF FND_MSG_PUB.Count_Msg > 0 Then

78:
79: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
80: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
81: END IF;
82: IF FND_MSG_PUB.Count_Msg > 0 Then
83: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
84: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));
85: END LOOP;
86: END IF;

Line 83: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP

79: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
80: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
81: END IF;
82: IF FND_MSG_PUB.Count_Msg > 0 Then
83: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
84: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));
85: END LOOP;
86: END IF;
87: FND_MSG_PUB.initialize;

Line 84: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));

80: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
81: END IF;
82: IF FND_MSG_PUB.Count_Msg > 0 Then
83: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
84: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));
85: END LOOP;
86: END IF;
87: FND_MSG_PUB.initialize;
88:

Line 87: FND_MSG_PUB.initialize;

83: FOR I IN 1..FND_MSG_PUB.Count_Msg LOOP
84: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));
85: END LOOP;
86: END IF;
87: FND_MSG_PUB.initialize;
88:
89:
90: END purge;
91: