DBA Data[Home] [Help]

APPS.FND_SUBMIT dependencies on FND_PRINT

Line 924: styl_ok := fnd_print.get_style (print_style,

920:
921: -- We do not need to validate print style if it's a queue
922: -- control request or if the the style is DYNAMIC
923: if ((qctlflg <> 'Y') and (print_style <> 'DYNAMIC')) then
924: styl_ok := fnd_print.get_style (print_style,
925: minwid, maxwid, minlen, maxlen,
926: (reqrd_flag = 'Y'), curr_printer,
927: valid_style);
928:

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 983: styl_ok := fnd_print.get_style (print_style,

979: if (valid_style is null) then
980: -- if it's an Oracle Reports request, we must get
981: -- some (valid) print style
982: if (execcode = 'P') then
983: styl_ok := fnd_print.get_style (print_style,
984: minwid, maxwid,
985: minlen, maxlen,
986: (reqrd_flag = 'Y'),
987: null,

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