DBA Data[Home] [Help]

APPS.WIP_EAM_UTILS dependencies on WIP_EAM_PARAMETERS

Line 198: from wip_eam_parameters where

194: end if;
195:
196: -- 2.3 From EAM Parameters
197: select default_eam_class into x_class_code
198: from wip_eam_parameters where
199: organization_id = p_org_id;
200: return;
201:
202: -- Rebuild Work Orders

Line 286: from wip_eam_parameters where

282: else
283:
284: -- Default it from Eam Parameters
285: select default_eam_class into x_class_code
286: from wip_eam_parameters where
287: organization_id = p_org_id;
288: return;
289:
290: end if;

Line 299: from wip_eam_parameters where

295:
296: -- In case no other case has returned a WAC, then default it from
297: -- the eam parameters.
298: select default_eam_class into x_class_code
299: from wip_eam_parameters where
300: organization_id = p_org_id;
301: return;
302:
303: EXCEPTION

Line 311: from wip_eam_parameters where

307: x_msg_data := SQLERRM;
308: x_return_status := 'E';
309: -- Default it from eam parameters.
310: select default_eam_class into x_class_code
311: from wip_eam_parameters where
312: organization_id = p_org_id;
313:
314: END DEFAULT_ACC_CLASS;
315:

Line 453: from wip_eam_parameters where

449: end if;
450:
451: -- 2.3 From EAM Parameters
452: select default_eam_class into x_class_code
453: from wip_eam_parameters where
454: organization_id = p_org_id;
455: return;
456:
457: -- Rebuild Work Orders

Line 539: from wip_eam_parameters where

535: -- For Non serial controlled
536: -- In case no other case has returned a WAC, then default it from
537: -- the eam parameters.
538: select default_eam_class into x_class_code
539: from wip_eam_parameters where
540: organization_id = p_org_id;
541: return;
542:
543: EXCEPTION

Line 551: from wip_eam_parameters where

547: x_msg_data := SQLERRM;
548: x_return_status := 'E';
549: -- Default it from eam parameters.
550: select default_eam_class into x_class_code
551: from wip_eam_parameters where
552: organization_id = p_org_id;
553:
554: END DEFAULT_ACC_CLASS;
555: