DBA Data[Home] [Help]

APPS.FARX_C_MCR dependencies on FND_MESSAGE

Line 123: fnd_message.set_name('OFA','FA_MRCL_PARAM_REQUIRED');

119:
120: BEGIN
121: /* Validate the arguments passed in. */
122: IF argument1 IS NULL THEN
123: fnd_message.set_name('OFA','FA_MRCL_PARAM_REQUIRED');
124: h_mesg_str := fnd_message.get;
125: fa_rx_conc_mesg_pkg.log(h_mesg_str);
126: raise conc_failure;
127: END IF;

Line 124: h_mesg_str := fnd_message.get;

120: BEGIN
121: /* Validate the arguments passed in. */
122: IF argument1 IS NULL THEN
123: fnd_message.set_name('OFA','FA_MRCL_PARAM_REQUIRED');
124: h_mesg_str := fnd_message.get;
125: fa_rx_conc_mesg_pkg.log(h_mesg_str);
126: raise conc_failure;
127: END IF;
128:

Line 135: fnd_message.set_name('OFA','FA_MRCL_PARAM_REQUIRED');

131: FROM fa_mass_changes
132: WHERE mass_change_id = to_number(argument1) AND rownum < 2;
133:
134: IF (h_count = 0) THEN
135: fnd_message.set_name('OFA','FA_MRCL_PARAM_REQUIRED');
136: h_mesg_str := fnd_message.get;
137: fa_rx_conc_mesg_pkg.log(h_mesg_str);
138: raise conc_failure;
139: END IF;

Line 136: h_mesg_str := fnd_message.get;

132: WHERE mass_change_id = to_number(argument1) AND rownum < 2;
133:
134: IF (h_count = 0) THEN
135: fnd_message.set_name('OFA','FA_MRCL_PARAM_REQUIRED');
136: h_mesg_str := fnd_message.get;
137: fa_rx_conc_mesg_pkg.log(h_mesg_str);
138: raise conc_failure;
139: END IF;
140: