DBA Data[Home] [Help]

APPS.WIP_REPETITIVE_ENTITY dependencies on FND_MESSAGE

Line 22: fnd_message.set_name('WIP', 'WIP_DUP_NAME_DISC_REP');

18: open chck_discrete;
19: fetch chck_discrete into temp;
20: close chck_discrete;
21: if (temp = 'x') then
22: fnd_message.set_name('WIP', 'WIP_DUP_NAME_DISC_REP');
23: app_exception.raise_exception;
24: end if;
25: end check_discrete;
26:

Line 100: fnd_message.set_name('WIP', 'WIP_ONE_LEADTIME_LINE');

96: open C;
97: fetch C into temp;
98: close C;
99: if (temp <> 0) then
100: fnd_message.set_name('WIP', 'WIP_ONE_LEADTIME_LINE');
101: app_exception.raise_exception;
102: end if;
103:
104: end validate_primary_line;