DBA Data[Home] [Help]

APPS.FARX_C_RR dependencies on FND_MESSAGE

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

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

Line 122: h_mesg_str := fnd_message.get;

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

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

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

Line 134: h_mesg_str := fnd_message.get;

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