DBA Data[Home] [Help]

APPS.WIP_REPETITIVE_ENTITY dependencies on APP_EXCEPTION

Line 23: app_exception.raise_exception;

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:
27: procedure insert_entity (p_entity_id IN OUT NOCOPY NUMBER,

Line 101: app_exception.raise_exception;

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;
105: