2421:
2422:
2423: select meaning
2424: into l_outBuffer
2425: from mfg_lookups
2426: where lookup_type = 'SYS_YES_NO'
2427: and lookup_code = p_use_pickset_indicator;
2428:
2429: fnd_message.set_name('WIP', 'WIP_PICKING_USE_PICKSETS');
2430: fnd_file.put_line(which => fnd_file.output, buff => ' ' || fnd_message.get || ' ' || l_outBuffer);
2431: /* Added as part of Enhancement#2578514*/
2432: select meaning
2433: into l_outBuffer
2434: from mfg_lookups
2435: where lookup_type = 'SYS_YES_NO'
2436: and lookup_code = p_print_pickslips;
2437:
2438: fnd_message.set_name('WIP', 'WIP_PICKING_PRINT_PICKSLIPS');
2450:
2451: /* Added as part of Enhancement#2578514*/
2452: select meaning
2453: into l_outBuffer
2454: from mfg_lookups
2455: where lookup_type = 'SYS_YES_NO'
2456: and lookup_code = p_plan_tasks;
2457:
2458: fnd_message.set_name('WIP', 'WIP_PICKING_PLAN_TASKS');
2471: fnd_file.put_line(which => fnd_file.output, buff => ' ' || fnd_message.get || ' ' || p_days_forward);
2472:
2473: select meaning
2474: into l_outBuffer
2475: from mfg_lookups
2476: where lookup_type = 'WIP_ENTITY'
2477: and lookup_code = p_wip_entity_type;
2478:
2479: fnd_message.set_name('WIP', 'WIP_PICKING_MFG_MODE');
2483: if(p_wip_entity_type = wip_constants.discrete) then
2484: /*Start - Bug 5932126 (FP of 5880558): Added following code to print new parameter for job type*/
2485: select meaning
2486: into l_outBuffer
2487: from mfg_lookups
2488: where lookup_type = 'WIP_ENTITIES'
2489: and lookup_code = p_job_type ;
2490:
2491: fnd_message.set_name('WIP', 'WIP_PICKING_JOB_TYPE');