DBA Data[Home] [Help]

APPS.MSD_CS_DEFN_CLMN_LOAD_DATA dependencies on FND_MESSAGE

Line 101: fnd_message.set_name('MSD', 'MSD_CS_LOAD_INVALID_DEFN');

97: fetch c1 into l_cs_definition_id;
98: close c1;
99: --
100: if l_cs_definition_id is null then
101: fnd_message.set_name('MSD', 'MSD_CS_LOAD_INVALID_DEFN');
102: fnd_message.raise_error;
103: end if;
104: --
105: open c2(l_cs_definition_id, p_table_column);

Line 102: fnd_message.raise_error;

98: close c1;
99: --
100: if l_cs_definition_id is null then
101: fnd_message.set_name('MSD', 'MSD_CS_LOAD_INVALID_DEFN');
102: fnd_message.raise_error;
103: end if;
104: --
105: open c2(l_cs_definition_id, p_table_column);
106: fetch c2 into db_luby, db_ludate;

Line 187: fnd_message.set_name('MSD', 'MSD_CS_LOAD_INVALID_DEFN');

183: fetch c1 into l_cs_definition_id;
184: close c1;
185: --
186: if l_cs_definition_id is null then
187: fnd_message.set_name('MSD', 'MSD_CS_LOAD_INVALID_DEFN');
188: fnd_message.raise_error;
189: end if;
190: -- Translate char last_update_date to date
191: f_ludate := nvl(to_date(p_last_update_date, 'YYYY/MM/DD'), sysdate);

Line 188: fnd_message.raise_error;

184: close c1;
185: --
186: if l_cs_definition_id is null then
187: fnd_message.set_name('MSD', 'MSD_CS_LOAD_INVALID_DEFN');
188: fnd_message.raise_error;
189: end if;
190: -- Translate char last_update_date to date
191: f_ludate := nvl(to_date(p_last_update_date, 'YYYY/MM/DD'), sysdate);
192: --