DBA Data[Home] [Help]

APPS.BEN_EXT_FMT dependencies on FND_MESSAGE

Line 143: fnd_message.set_name('BEN',p_err_name);

139: begin
140:
141: hr_utility.set_location('Entering'||l_proc, 5);
142: hr_utility.set_location('Error'||substr(p_err_name,1,100), 99.99);
143: fnd_message.set_name('BEN',p_err_name);
144: if P_err_no in ( 91888,92065,91924,91887,92313,92312,92678,92679 )
145: and p_token1 is not null then
146: fnd_message.set_token('DATA' , p_token1 ) ;
147: end if ;

Line 146: fnd_message.set_token('DATA' , p_token1 ) ;

142: hr_utility.set_location('Error'||substr(p_err_name,1,100), 99.99);
143: fnd_message.set_name('BEN',p_err_name);
144: if P_err_no in ( 91888,92065,91924,91887,92313,92312,92678,92679 )
145: and p_token1 is not null then
146: fnd_message.set_token('DATA' , p_token1 ) ;
147: end if ;
148: -- because the token name is required
149: -- that si hard coded as per the error number
150: -- if any new error calls this then the totken is to be added here

Line 151: -- fnd_message.set_token('FIELD','p_prvs_stat_cd');

147: end if ;
148: -- because the token name is required
149: -- that si hard coded as per the error number
150: -- if any new error calls this then the totken is to be added here
151: -- fnd_message.set_token('FIELD','p_prvs_stat_cd');
152: -- fnd_message.set_token('TYPE','BEN_PER_IN_LER_STAT_CD');
153: l_err_message := fnd_message.get ;
154: hr_utility.set_location('message'||substr(l_err_message,1,100), 99.99);
155: hr_utility.set_location('Exiting'||l_proc, 5);

Line 152: -- fnd_message.set_token('TYPE','BEN_PER_IN_LER_STAT_CD');

148: -- because the token name is required
149: -- that si hard coded as per the error number
150: -- if any new error calls this then the totken is to be added here
151: -- fnd_message.set_token('FIELD','p_prvs_stat_cd');
152: -- fnd_message.set_token('TYPE','BEN_PER_IN_LER_STAT_CD');
153: l_err_message := fnd_message.get ;
154: hr_utility.set_location('message'||substr(l_err_message,1,100), 99.99);
155: hr_utility.set_location('Exiting'||l_proc, 5);
156: return (l_err_message) ;

Line 153: l_err_message := fnd_message.get ;

149: -- that si hard coded as per the error number
150: -- if any new error calls this then the totken is to be added here
151: -- fnd_message.set_token('FIELD','p_prvs_stat_cd');
152: -- fnd_message.set_token('TYPE','BEN_PER_IN_LER_STAT_CD');
153: l_err_message := fnd_message.get ;
154: hr_utility.set_location('message'||substr(l_err_message,1,100), 99.99);
155: hr_utility.set_location('Exiting'||l_proc, 5);
156: return (l_err_message) ;
157: