DBA Data[Home] [Help]

APPS.INV_LABEL dependencies on INV_PRINT_REQUEST

Line 2943: INV_PRINT_REQUEST.SYNC_PRINT_REQUEST(

2939: IF (l_debug = 1) THEN
2940: trace('Custom Labels Trace [INVLABPB.pls]: At Breadcrumb 4 ', TRACE_PROMPT, TRACE_LEVEL);
2941: trace('Custom Labels Trace [INVLABPB.pls]: Before calling SYNC_PRINT_REQUEST() ', TRACE_PROMPT, TRACE_LEVEL);
2942: END IF;
2943: INV_PRINT_REQUEST.SYNC_PRINT_REQUEST(
2944: p_xml_content => g_xml_content
2945: ,x_job_status => l_job_status
2946: ,x_printer_status => l_printer_status
2947: ,x_status_type => l_status_type);

Line 2993: INV_PRINT_REQUEST.WRITE_XML(

2989: IF (l_debug = 1) THEN
2990: trace('Custom Labels Trace [INVLABPB.pls]: At Breadcrumb 8 ', TRACE_PROMPT, TRACE_LEVEL);
2991: trace('Custom Labels Trace [INVLABPB.pls]: Before calling WRITE_XML() ', TRACE_PROMPT, TRACE_LEVEL);
2992: END IF;
2993: INV_PRINT_REQUEST.WRITE_XML(
2994: p_xml_content => g_xml_content
2995: ,p_request_id => l_variable_data(k).label_request_id
2996: ,x_return_status => l_return_status
2997: ,x_msg_count => l_msg_count

Line 3061: INV_PRINT_REQUEST.SYNC_PRINT_TCPIP(

3057: IF (l_debug = 1) THEN
3058: trace('Custom Labels Trace [INVLABPB.pls]: At Breadcrumb 13 ', TRACE_PROMPT, TRACE_LEVEL);
3059: trace('Custom Labels Trace [INVLABPB.pls]: Before calling SYNC_PRINT_TCPIP() ', TRACE_PROMPT, TRACE_LEVEL);
3060: END IF;
3061: INV_PRINT_REQUEST.SYNC_PRINT_TCPIP(
3062: p_xml_content => g_xml_content
3063: ,x_job_status => l_job_status
3064: ,x_printer_status => l_printer_status
3065: ,x_status_type => l_status_type

Line 3285: INV_PRINT_REQUEST.SYNC_PRINT_REQUEST(

3281: IF (l_debug = 1) THEN
3282: trace('Custom Labels Trace [INVLABPB.pls]: At Breadcrumb 19 ', TRACE_PROMPT, TRACE_LEVEL);
3283: trace('Custom Labels Trace [INVLABPB.pls]: Before calling SYNC_PRINT_REQUEST() ', TRACE_PROMPT, TRACE_LEVEL);
3284: END IF;
3285: INV_PRINT_REQUEST.SYNC_PRINT_REQUEST(
3286: p_xml_content => g_xml_content
3287: ,x_job_status => l_job_status
3288: ,x_printer_status => l_printer_status
3289: ,x_status_type => l_status_type);

Line 3334: INV_PRINT_REQUEST.WRITE_XML(

3330: IF (l_debug = 1) THEN
3331: trace('Custom Labels Trace [INVLABPB.pls]: At Breadcrumb 23 ', TRACE_PROMPT, TRACE_LEVEL);
3332: trace('Custom Labels Trace [INVLABPB.pls]: Before calling WRITE_XML() ', TRACE_PROMPT, TRACE_LEVEL);
3333: END IF;
3334: INV_PRINT_REQUEST.WRITE_XML(
3335: p_xml_content => g_xml_content
3336: ,p_request_id => l_variable_data(k).label_request_id
3337: ,x_return_status => l_return_status
3338: ,x_msg_count => l_msg_count

Line 3401: INV_PRINT_REQUEST.SYNC_PRINT_TCPIP(

3397: IF (l_debug = 1) THEN
3398: trace('Custom Labels Trace [INVLABPB.pls]: At Breadcrumb 28 ', TRACE_PROMPT, TRACE_LEVEL);
3399: trace('Custom Labels Trace [INVLABPB.pls]: Before calling SYNC_PRINT_TCPIP() ', TRACE_PROMPT, TRACE_LEVEL);
3400: END IF;
3401: INV_PRINT_REQUEST.SYNC_PRINT_TCPIP(
3402: p_xml_content => g_xml_content
3403: ,x_job_status => l_job_status
3404: ,x_printer_status => l_printer_status
3405: ,x_status_type => l_status_type

Line 3635: INV_PRINT_REQUEST.SYNC_PRINT_REQUEST(

3631: -- Synchronize Mode, send request for each label
3632: IF (l_debug = 1) THEN
3633: trace('Calling sync_print_req', TRACE_PROMPT, TRACE_LEVEL);
3634: END IF;
3635: INV_PRINT_REQUEST.SYNC_PRINT_REQUEST(
3636: p_xml_content => l_label_content
3637: , x_job_status => l_job_status
3638: , x_printer_status => l_printer_status
3639: , x_status_type => l_status_type

Line 3658: INV_PRINT_REQUEST.WRITE_XML(

3654: -- Asynchronize Mode, calling write_xml to write into a xml file
3655: IF (l_debug = 1) THEN
3656: trace('Calling WRITE_XML', TRACE_PROMPT, TRACE_LEVEL);
3657: END IF;
3658: INV_PRINT_REQUEST.WRITE_XML(
3659: p_xml_content => l_label_content
3660: , p_request_id => l_history_rec.label_request_id
3661: , x_return_status => l_return_status
3662: , x_msg_count => l_msg_count

Line 3687: INV_PRINT_REQUEST.SYNC_PRINT_TCPIP(

3683: -- Synchronize TCPIP Mode, calling SYNC_PRINT_TCPIP to print label through TCPIP mode
3684: IF (l_debug = 1) THEN
3685: trace('Calling SYNC_PRINT_TCPIP', TRACE_PROMPT, TRACE_LEVEL);
3686: END IF;
3687: INV_PRINT_REQUEST.SYNC_PRINT_TCPIP(
3688: p_xml_content => l_label_content
3689: , x_job_status => l_job_status
3690: , x_printer_status => l_printer_status
3691: , x_status_type => l_status_type

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

3693: , x_return_msg => l_msg_data
3694: );
3695:
3696: IF (l_debug = 1) THEN
3697: trace('Called INV_PRINT_REQUEST.SYNC_PRINT_TCPIP', TRACE_PROMPT, TRACE_LEVEL);
3698: trace('x_return_status='||l_return_status||',x_return_msg='||l_msg_data, TRACE_PROMPT, TRACE_LEVEL);
3699: trace('x_job_status='||l_job_status||',x_printer_status='||l_printer_status||',x_status_type='||l_status_type, TRACE_PROMPT, TRACE_LEVEL);
3700: END IF;
3701: IF nvl(l_return_status,'E') <> 'S' THEN