DBA Data[Home] [Help]

APPS.BEN_EXT_FMT dependencies on FND_MESSAGE

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

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

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

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

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

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

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

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

Line 154: l_err_message := fnd_message.get ;

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