DBA Data[Home] [Help]

APPS.OKC_K_ARTICLE_PUB dependencies on FND_MSG_PUB

Line 982: FND_MSG_PUB.Count_And_Get(p_encoded=>'F', p_count => x_msg_count, p_data => x_msg_data );

978:
979: END IF;
980:
981: -- Standard call to get message count and if count is 1, get message info.
982: FND_MSG_PUB.Count_And_Get(p_encoded=>'F', p_count => x_msg_count, p_data => x_msg_data );
983:
984: IF (l_debug = 'Y') THEN
985: okc_debug.log('900: Leaving Process_Non_Std_Article.', 2);
986: END IF;

Line 999: FND_MSG_PUB.Count_And_Get(p_encoded=>'F', p_count => x_msg_count, p_data => x_msg_data );

995: CLOSE l_get_intent_csr;
996: END IF;
997:
998: x_return_status := G_RET_STS_ERROR ;
999: FND_MSG_PUB.Count_And_Get(p_encoded=>'F', p_count => x_msg_count, p_data => x_msg_data );
1000:
1001: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1002: IF (l_debug = 'Y') THEN
1003: okc_debug.log('400: Leaving Process_Non_Std_Article: G_EXCEPTION_UNEXPECTED_ERROR Exception', 2);

Line 1011: FND_MSG_PUB.Count_And_Get(p_encoded=>'F', p_count => x_msg_count, p_data => x_msg_data );

1007: CLOSE l_get_intent_csr;
1008: END IF;
1009:
1010: x_return_status := G_RET_STS_UNEXP_ERROR ;
1011: FND_MSG_PUB.Count_And_Get(p_encoded=>'F', p_count => x_msg_count, p_data => x_msg_data );
1012:
1013: WHEN OTHERS THEN
1014: IF (l_debug = 'Y') THEN
1015: okc_debug.log('500: Leaving Process_Non_Std_Article because of EXCEPTION: '||sqlerrm, 2);

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

1024: Dbms_Lob.freetemporary( l_txt );
1025: END IF;
1026: END IF;
1027: x_return_status := G_RET_STS_UNEXP_ERROR ;
1028: IF FND_MSG_PUB.Check_Msg_Level( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR ) THEN
1029: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME, l_api_name );
1030: END IF;
1031:
1032: FND_MSG_PUB.Count_And_Get(p_encoded=>'F', p_count => x_msg_count, p_data => x_msg_data );

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

1025: END IF;
1026: END IF;
1027: x_return_status := G_RET_STS_UNEXP_ERROR ;
1028: IF FND_MSG_PUB.Check_Msg_Level( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR ) THEN
1029: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME, l_api_name );
1030: END IF;
1031:
1032: FND_MSG_PUB.Count_And_Get(p_encoded=>'F', p_count => x_msg_count, p_data => x_msg_data );
1033:

Line 1032: FND_MSG_PUB.Count_And_Get(p_encoded=>'F', p_count => x_msg_count, p_data => x_msg_data );

1028: IF FND_MSG_PUB.Check_Msg_Level( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR ) THEN
1029: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME, l_api_name );
1030: END IF;
1031:
1032: FND_MSG_PUB.Count_And_Get(p_encoded=>'F', p_count => x_msg_count, p_data => x_msg_data );
1033:
1034: END Process_Non_Std_Article;
1035:
1036: