DBA Data[Home] [Help]

APPS.OKC_K_ARTICLE_PUB dependencies on FND_MSG_PUB

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

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

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

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

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

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

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

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

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

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

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

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