DBA Data[Home] [Help]

APPS.WSH_DOCUMENT_SETS dependencies on WSH_INV_INTEGRATION_GRP

Line 1035: IF (document.CONCURRENT_PROGRAM_NAME NOT IN ('WSHRDPIK' ,'WSHRDPIKX','WSHRDPIK_XML') or WSH_INV_INTEGRATION_GRP.G_PRINTERTAB.count = 0 ) then --{

1031: END IF; --}
1032:
1033: END IF ; --} if l_printer_name is null
1034:
1035: IF (document.CONCURRENT_PROGRAM_NAME NOT IN ('WSHRDPIK' ,'WSHRDPIKX','WSHRDPIK_XML') or WSH_INV_INTEGRATION_GRP.G_PRINTERTAB.count = 0 ) then --{
1036: IF l_debug_on THEN --{
1037: WSH_DEBUG_SV.logmsg(l_module_name, DOCUMENT.CONCURRENT_PROGRAM_NAME || ' and no printers setup ' );
1038: END IF; --}
1039: --

Line 1060: IF (document.CONCURRENT_PROGRAM_NAME NOT IN ('WSHRDPIK' ,'WSHRDPIKX','WSHRDPIK_XML') or WSH_INV_INTEGRATION_GRP.G_PRINTERTAB.count = 0 ) then --{

1056:
1057: -- go ahead and submit this document as a request
1058:
1059:
1060: IF (document.CONCURRENT_PROGRAM_NAME NOT IN ('WSHRDPIK' ,'WSHRDPIKX','WSHRDPIK_XML') or WSH_INV_INTEGRATION_GRP.G_PRINTERTAB.count = 0 ) then --{
1061:
1062: -- Getting language if document has MLS function associated with it
1063: IF document.mls_executable_id IS NOT NULL THEN
1064: l_nls_lang.delete;

Line 1524: WSH_DEBUG_SV.logmsg(l_module_name, ' Else Pick Slip Report the number of printers is ' || WSH_INV_INTEGRATION_GRP.G_PRINTERTAB.count );

1520: END LOOP; -- end of l_submitted loop
1521:
1522: ELSE -- It is WSHRDPIK and G_PRINTERTAB has been populated
1523: IF l_debug_on THEN --{
1524: WSH_DEBUG_SV.logmsg(l_module_name, ' Else Pick Slip Report the number of printers is ' || WSH_INV_INTEGRATION_GRP.G_PRINTERTAB.count );
1525: END IF; --}
1526: --
1527: -- Find position of 'Printer Name' in the arguments
1528:

Line 1546: FOR i in 1..WSH_INV_INTEGRATION_GRP.G_PRINTERTAB.count LOOP

1542: end if ;
1543: end loop ;
1544:
1545: --bugfix 13384185
1546: FOR i in 1..WSH_INV_INTEGRATION_GRP.G_PRINTERTAB.count LOOP
1547:
1548: IF l_debug_on THEN --{
1549: WSH_DEBUG_SV.logmsg(l_module_name, ' The value for printer name is '|| WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name );
1550: WSH_DEBUG_SV.logmsg(l_module_name, ' The value for concurrent program name is '|| WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).conc_program_name);

Line 1549: WSH_DEBUG_SV.logmsg(l_module_name, ' The value for printer name is '|| WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name );

1545: --bugfix 13384185
1546: FOR i in 1..WSH_INV_INTEGRATION_GRP.G_PRINTERTAB.count LOOP
1547:
1548: IF l_debug_on THEN --{
1549: WSH_DEBUG_SV.logmsg(l_module_name, ' The value for printer name is '|| WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name );
1550: WSH_DEBUG_SV.logmsg(l_module_name, ' The value for concurrent program name is '|| WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).conc_program_name);
1551: WSH_DEBUG_SV.logmsg(l_module_name, ' The value for document.concurrent_program_name is '|| document.concurrent_program_name);
1552: END IF; --}
1553:

Line 1550: WSH_DEBUG_SV.logmsg(l_module_name, ' The value for concurrent program name is '|| WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).conc_program_name);

1546: FOR i in 1..WSH_INV_INTEGRATION_GRP.G_PRINTERTAB.count LOOP
1547:
1548: IF l_debug_on THEN --{
1549: WSH_DEBUG_SV.logmsg(l_module_name, ' The value for printer name is '|| WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name );
1550: WSH_DEBUG_SV.logmsg(l_module_name, ' The value for concurrent program name is '|| WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).conc_program_name);
1551: WSH_DEBUG_SV.logmsg(l_module_name, ' The value for document.concurrent_program_name is '|| document.concurrent_program_name);
1552: END IF; --}
1553:
1554:

Line 1555: IF WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).conc_program_name = document.concurrent_program_name THEN

1551: WSH_DEBUG_SV.logmsg(l_module_name, ' The value for document.concurrent_program_name is '|| document.concurrent_program_name);
1552: END IF; --}
1553:
1554:
1555: IF WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).conc_program_name = document.concurrent_program_name THEN
1556:
1557: l_argument(l_printer_pos) := WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name;
1558:
1559: IF l_debug_on THEN --{

Line 1557: l_argument(l_printer_pos) := WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name;

1553:
1554:
1555: IF WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).conc_program_name = document.concurrent_program_name THEN
1556:
1557: l_argument(l_printer_pos) := WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name;
1558:
1559: IF l_debug_on THEN --{
1560: WSH_DEBUG_SV.logmsg(l_module_name, 'Setting '|| document.concurrent_program_name || ' with ' || l_copies || ' copies on printer ' || WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name );
1561: --

Line 1560: WSH_DEBUG_SV.logmsg(l_module_name, 'Setting '|| document.concurrent_program_name || ' with ' || l_copies || ' copies on printer ' || WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name );

1556:
1557: l_argument(l_printer_pos) := WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name;
1558:
1559: IF l_debug_on THEN --{
1560: WSH_DEBUG_SV.logmsg(l_module_name, 'Setting '|| document.concurrent_program_name || ' with ' || l_copies || ' copies on printer ' || WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name );
1561: --
1562: END IF; --}
1563:
1564: l_printer_setup :=

Line 1566: (printer => WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name,

1562: END IF; --}
1563:
1564: l_printer_setup :=
1565: fnd_request.set_print_options
1566: (printer => WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name,
1567: style => document.output_print_style,
1568: copies => l_copies,
1569: save_output => l_save_output,
1570: print_together => 'N');

Line 1573: WSH_DEBUG_SV.logmsg(l_module_name, 'For Printer ' || WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name || ', Set_Print_Options Returned False for Pick Slip Report!!!');

1569: save_output => l_save_output,
1570: print_together => 'N');
1571:
1572: if ( NOT l_printer_setup and l_debug_on ) then --{
1573: WSH_DEBUG_SV.logmsg(l_module_name, 'For Printer ' || WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).printer_name || ', Set_Print_Options Returned False for Pick Slip Report!!!');
1574: end if ; --}
1575:
1576: -- Getting language if document has MLS function associated with it
1577: IF document.mls_executable_id IS NOT NULL THEN

Line 1858: WSH_DEBUG_SV.logmsg(l_module_name, ' The value for document.concurrent_program_name '|| document.concurrent_program_name ||' does not match G_Printertab concurrent program '||WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).conc_program_name);

1854:
1855: ELSE -- else for document_name matching
1856: --
1857: IF l_debug_on THEN --{
1858: WSH_DEBUG_SV.logmsg(l_module_name, ' The value for document.concurrent_program_name '|| document.concurrent_program_name ||' does not match G_Printertab concurrent program '||WSH_INV_INTEGRATION_GRP.G_PRINTERTAB(i).conc_program_name);
1859: END IF;
1860: --
1861: END IF ;
1862:

Line 1865: END IF; --} if condition on WSHRDPIK and WSH_INV_INTEGRATION_GRP.G_PRINTERTAB

1861: END IF ;
1862:
1863: END LOOP ; -- Loop on G_PRINTERTAB
1864:
1865: END IF; --} if condition on WSHRDPIK and WSH_INV_INTEGRATION_GRP.G_PRINTERTAB
1866:
1867: END IF; --} If valid_params
1868:
1869: