DBA Data[Home] [Help]

APPS.EAM_MATERIAL_REQUEST_PVT dependencies on MFG_LOOKUPS

Line 382: from mfg_lookups

378: fnd_file.put_line(which => fnd_file.output, buff => fnd_message.get);
379:
380: select meaning
381: into l_outBuffer
382: from mfg_lookups
383: where lookup_type = 'SYS_YES_NO'
384: and lookup_code = p_use_pickset_indicator;
385:
386: fnd_message.set_name('WIP', 'WIP_PICKING_USE_PICKSETS');

Line 391: from mfg_lookups

387: fnd_file.put_line(which => fnd_file.output, buff => ' ' || fnd_message.get || ' ' || l_outBuffer);
388: /* Added as part of Enhancement#2578514*/
389: select meaning
390: into l_outBuffer
391: from mfg_lookups
392: where lookup_type = 'SYS_YES_NO'
393: and lookup_code = p_print_pickslips;
394:
395: fnd_message.set_name('WIP', 'WIP_PICKING_PRINT_PICKSLIPS');

Line 411: from mfg_lookups

407:
408: /* Added as part of Enhancement#2578514*/
409: select meaning
410: into l_outBuffer
411: from mfg_lookups
412: where lookup_type = 'SYS_YES_NO'
413: and lookup_code = p_plan_tasks;
414:
415: fnd_message.set_name('WIP', 'WIP_PICKING_PLAN_TASKS');

Line 431: from mfg_lookups

427: fnd_file.put_line(which => fnd_file.output, buff => ' ' || fnd_message.get || ' ' || p_days_forward);
428:
429: select meaning
430: into l_outBuffer
431: from mfg_lookups
432: where lookup_type = 'WIP_ENTITY'
433: and lookup_code = p_wip_entity_type;
434:
435: fnd_message.set_name('WIP', 'WIP_PICKING_MFG_MODE');

Line 445: from mfg_lookups

441: if(p_wip_entity_type = wip_constants.discrete) then
442: --Start - Bug 5932126 (FP of 5880558): Added following code to print new parameter for job type
443: select meaning
444: into l_outBuffer
445: from mfg_lookups
446: where lookup_type = 'WIP_ENTITIES'
447: and lookup_code = p_job_type ;
448:
449: fnd_message.set_name('WIP', 'WIP_PICKING_JOB_TYPE');