DBA Data[Home] [Help]

APPS.FND_SUBMIT dependencies on FND_PRINTER

Line 904: -- is null. Also check to see if fnd_printer.get_style failed.

900: (reqrd_flag = 'Y'), curr_printer,
901: valid_style);
902:
903: -- If printer and print_style were incompatible, valid_style
904: -- is null. Also check to see if fnd_printer.get_style failed.
905: if ((valid_style is null) or (not styl_ok)) then
906:
907: -- If we still intend to print, bad news.
908: if (prtflg = 'Y') then

Line 1539: From fnd_printer

1535: if (printer is not null) then -- Verify printer
1536: begin
1537: Select printer_type
1538: Into printer_typ
1539: From fnd_printer
1540: Where printer_name = printer;
1541:
1542: exception
1543: when no_data_found then

Line 1556: From Fnd_Printer_styles

1552: if (style is not null) then -- Verify style
1553: begin
1554: Select Printer_Style_Name
1555: Into P_PRINT_STYLE
1556: From Fnd_Printer_styles
1557: Where Printer_Style_Name = style;
1558:
1559: exception
1560: when no_data_found then

Line 1573: From Fnd_Printer_Information

1569: (style is not null)) then -- Verify printer/style comination
1570: begin
1571: Select 'X'
1572: Into Dummy_fld
1573: From Fnd_Printer_Information
1574: Where Printer_Style = P_PRINT_STYLE
1575: And Printer_Type = printer_typ;
1576:
1577: exception

Line 1662: From fnd_printer

1658: if (printer is not null) then -- Verify printer
1659: begin
1660: Select printer_type
1661: Into printer_typ
1662: From fnd_printer
1663: Where printer_name = printer;
1664:
1665: exception
1666: when no_data_found then

Line 1680: From Fnd_Printer_Information

1676: (P_PRINT_STYLE is not null)) then -- Verify printer/style combo
1677: begin
1678: Select 'X'
1679: Into Dummy_fld
1680: From Fnd_Printer_Information
1681: Where Printer_Style = P_PRINT_STYLE
1682: And Printer_Type = printer_typ;
1683:
1684: exception