DBA Data[Home] [Help]

APPS.INV_LABEL dependencies on INV_PRINT_REQUEST

Line 2873: INV_PRINT_REQUEST.SYNC_PRINT_REQUEST(

2869: IF (l_debug = 1) THEN
2870: trace('Custom Labels Trace [INVLABPB.pls]: At Breadcrumb 4 ', TRACE_PROMPT, TRACE_LEVEL);
2871: trace('Custom Labels Trace [INVLABPB.pls]: Before calling SYNC_PRINT_REQUEST() ', TRACE_PROMPT, TRACE_LEVEL);
2872: END IF;
2873: INV_PRINT_REQUEST.SYNC_PRINT_REQUEST(
2874: p_xml_content => g_xml_content
2875: ,x_job_status => l_job_status
2876: ,x_printer_status => l_printer_status
2877: ,x_status_type => l_status_type);

Line 2923: INV_PRINT_REQUEST.WRITE_XML(

2919: IF (l_debug = 1) THEN
2920: trace('Custom Labels Trace [INVLABPB.pls]: At Breadcrumb 8 ', TRACE_PROMPT, TRACE_LEVEL);
2921: trace('Custom Labels Trace [INVLABPB.pls]: Before calling WRITE_XML() ', TRACE_PROMPT, TRACE_LEVEL);
2922: END IF;
2923: INV_PRINT_REQUEST.WRITE_XML(
2924: p_xml_content => g_xml_content
2925: ,p_request_id => l_variable_data(k).label_request_id
2926: ,x_return_status => l_return_status
2927: ,x_msg_count => l_msg_count

Line 2991: INV_PRINT_REQUEST.SYNC_PRINT_TCPIP(

2987: IF (l_debug = 1) THEN
2988: trace('Custom Labels Trace [INVLABPB.pls]: At Breadcrumb 13 ', TRACE_PROMPT, TRACE_LEVEL);
2989: trace('Custom Labels Trace [INVLABPB.pls]: Before calling SYNC_PRINT_TCPIP() ', TRACE_PROMPT, TRACE_LEVEL);
2990: END IF;
2991: INV_PRINT_REQUEST.SYNC_PRINT_TCPIP(
2992: p_xml_content => g_xml_content
2993: ,x_job_status => l_job_status
2994: ,x_printer_status => l_printer_status
2995: ,x_status_type => l_status_type

Line 3213: INV_PRINT_REQUEST.SYNC_PRINT_REQUEST(

3209: IF (l_debug = 1) THEN
3210: trace('Custom Labels Trace [INVLABPB.pls]: At Breadcrumb 19 ', TRACE_PROMPT, TRACE_LEVEL);
3211: trace('Custom Labels Trace [INVLABPB.pls]: Before calling SYNC_PRINT_REQUEST() ', TRACE_PROMPT, TRACE_LEVEL);
3212: END IF;
3213: INV_PRINT_REQUEST.SYNC_PRINT_REQUEST(
3214: p_xml_content => g_xml_content
3215: ,x_job_status => l_job_status
3216: ,x_printer_status => l_printer_status
3217: ,x_status_type => l_status_type);

Line 3262: INV_PRINT_REQUEST.WRITE_XML(

3258: IF (l_debug = 1) THEN
3259: trace('Custom Labels Trace [INVLABPB.pls]: At Breadcrumb 23 ', TRACE_PROMPT, TRACE_LEVEL);
3260: trace('Custom Labels Trace [INVLABPB.pls]: Before calling WRITE_XML() ', TRACE_PROMPT, TRACE_LEVEL);
3261: END IF;
3262: INV_PRINT_REQUEST.WRITE_XML(
3263: p_xml_content => g_xml_content
3264: ,p_request_id => l_variable_data(k).label_request_id
3265: ,x_return_status => l_return_status
3266: ,x_msg_count => l_msg_count

Line 3329: INV_PRINT_REQUEST.SYNC_PRINT_TCPIP(

3325: IF (l_debug = 1) THEN
3326: trace('Custom Labels Trace [INVLABPB.pls]: At Breadcrumb 28 ', TRACE_PROMPT, TRACE_LEVEL);
3327: trace('Custom Labels Trace [INVLABPB.pls]: Before calling SYNC_PRINT_TCPIP() ', TRACE_PROMPT, TRACE_LEVEL);
3328: END IF;
3329: INV_PRINT_REQUEST.SYNC_PRINT_TCPIP(
3330: p_xml_content => g_xml_content
3331: ,x_job_status => l_job_status
3332: ,x_printer_status => l_printer_status
3333: ,x_status_type => l_status_type

Line 3562: INV_PRINT_REQUEST.SYNC_PRINT_REQUEST(

3558: -- Synchronize Mode, send request for each label
3559: IF (l_debug = 1) THEN
3560: trace('Calling sync_print_req', TRACE_PROMPT, TRACE_LEVEL);
3561: END IF;
3562: INV_PRINT_REQUEST.SYNC_PRINT_REQUEST(
3563: p_xml_content => l_label_content
3564: , x_job_status => l_job_status
3565: , x_printer_status => l_printer_status
3566: , x_status_type => l_status_type

Line 3585: INV_PRINT_REQUEST.WRITE_XML(

3581: -- Asynchronize Mode, calling write_xml to write into a xml file
3582: IF (l_debug = 1) THEN
3583: trace('Calling WRITE_XML', TRACE_PROMPT, TRACE_LEVEL);
3584: END IF;
3585: INV_PRINT_REQUEST.WRITE_XML(
3586: p_xml_content => l_label_content
3587: , p_request_id => l_history_rec.label_request_id
3588: , x_return_status => l_return_status
3589: , x_msg_count => l_msg_count

Line 3614: INV_PRINT_REQUEST.SYNC_PRINT_TCPIP(

3610: -- Synchronize TCPIP Mode, calling SYNC_PRINT_TCPIP to print label through TCPIP mode
3611: IF (l_debug = 1) THEN
3612: trace('Calling SYNC_PRINT_TCPIP', TRACE_PROMPT, TRACE_LEVEL);
3613: END IF;
3614: INV_PRINT_REQUEST.SYNC_PRINT_TCPIP(
3615: p_xml_content => l_label_content
3616: , x_job_status => l_job_status
3617: , x_printer_status => l_printer_status
3618: , x_status_type => l_status_type

Line 3624: trace('Called INV_PRINT_REQUEST.SYNC_PRINT_TCPIP', TRACE_PROMPT, TRACE_LEVEL);

3620: , x_return_msg => l_msg_data
3621: );
3622:
3623: IF (l_debug = 1) THEN
3624: trace('Called INV_PRINT_REQUEST.SYNC_PRINT_TCPIP', TRACE_PROMPT, TRACE_LEVEL);
3625: trace('x_return_status='||l_return_status||',x_return_msg='||l_msg_data, TRACE_PROMPT, TRACE_LEVEL);
3626: trace('x_job_status='||l_job_status||',x_printer_status='||l_printer_status||',x_status_type='||l_status_type, TRACE_PROMPT, TRACE_LEVEL);
3627: END IF;
3628: IF nvl(l_return_status,'E') <> 'S' THEN