DBA Data[Home] [Help]

APPS.FND_SUBMIT dependencies on FND_PRINTER

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

926: (reqrd_flag = 'Y'), curr_printer,
927: valid_style);
928:
929: -- If printer and print_style were incompatible, valid_style
930: -- is null. Also check to see if fnd_printer.get_style failed.
931: if ((valid_style is null) or (not styl_ok)) then
932:
933: -- If we still intend to print, bad news.
934: if (prtflg = 'Y') then

Line 1615: From fnd_printer

1611: if (printer is not null) then -- Verify printer
1612: begin
1613: Select printer_type
1614: Into printer_typ
1615: From fnd_printer
1616: Where printer_name = printer;
1617:
1618: exception
1619: when no_data_found then

Line 1632: From Fnd_Printer_styles

1628: if (style is not null) then -- Verify style
1629: begin
1630: Select Printer_Style_Name
1631: Into P_PRINT_STYLE
1632: From Fnd_Printer_styles
1633: Where Printer_Style_Name = style;
1634:
1635: exception
1636: when no_data_found then

Line 1649: From Fnd_Printer_Information

1645: (style is not null)) then -- Verify printer/style comination
1646: begin
1647: Select 'X'
1648: Into Dummy_fld
1649: From Fnd_Printer_Information
1650: Where Printer_Style = P_PRINT_STYLE
1651: And Printer_Type = printer_typ;
1652:
1653: exception

Line 1738: From fnd_printer

1734: if (printer is not null) then -- Verify printer
1735: begin
1736: Select printer_type
1737: Into printer_typ
1738: From fnd_printer
1739: Where printer_name = printer;
1740:
1741: exception
1742: when no_data_found then

Line 1756: From Fnd_Printer_Information

1752: (P_PRINT_STYLE is not null)) then -- Verify printer/style combo
1753: begin
1754: Select 'X'
1755: Into Dummy_fld
1756: From Fnd_Printer_Information
1757: Where Printer_Style = P_PRINT_STYLE
1758: And Printer_Type = printer_typ;
1759:
1760: exception