DBA Data[Home] [Help]

APPS.PA_PAFPEXRP_XMLP_PKG dependencies on FND_MESSAGE

Line 6: FND_MESSAGE.SET_NAME ('PA',rejection_code);

2: /* $Header: PAFPEXRPB.pls 120.1 2008/06/16 10:57:07 krreddy noship $ */
3: function cf_rejection_descriptionformul(rejection_code in varchar2) return char is
4: l_meaning varchar2(2000);
5: begin
6: FND_MESSAGE.SET_NAME ('PA',rejection_code);
7: l_meaning := FND_MESSAGE.GET;
8: return(l_meaning);
9: exception when no_data_found then
10: return(rejection_code);

Line 7: l_meaning := FND_MESSAGE.GET;

3: function cf_rejection_descriptionformul(rejection_code in varchar2) return char is
4: l_meaning varchar2(2000);
5: begin
6: FND_MESSAGE.SET_NAME ('PA',rejection_code);
7: l_meaning := FND_MESSAGE.GET;
8: return(l_meaning);
9: exception when no_data_found then
10: return(rejection_code);
11: end;