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: else
536:
537: -- Default it from 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: end if;

Line 552: from wip_eam_parameters where

548:
549: -- In case no other case has returned a WAC, then default it from
550: -- the eam parameters.
551: select default_eam_class into x_class_code
552: from wip_eam_parameters where
553: organization_id = p_org_id;
554: return;
555:
556: EXCEPTION

Line 564: from wip_eam_parameters where

560: x_msg_data := SQLERRM;
561: x_return_status := 'E';
562: -- Default it from eam parameters.
563: select default_eam_class into x_class_code
564: from wip_eam_parameters where
565: organization_id = p_org_id;
566:
567: END DEFAULT_ACC_CLASS;
568: