DBA Data[Home] [Help]

APPS.FND_REQUEST dependencies on FND_PRINTER

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

1037: (reqrd_flag = 'Y'), curr_printer,
1038: valid_style);
1039:
1040: -- If printer and print_style were incompatible, valid_style
1041: -- is null. Also check to see if fnd_printer.get_style failed.
1042: if ((valid_style is null) or (not styl_ok)) then
1043:
1044: -- If we still intend to print, bad news.
1045: if (prtflg = 'Y') then

Line 2552: From fnd_printer

2548: if (printer is not null) then -- Verify printer
2549: begin
2550: Select printer_type
2551: Into printer_typ
2552: From fnd_printer
2553: Where printer_name = printer;
2554:
2555: exception
2556: when no_data_found then

Line 2569: From Fnd_Printer_styles

2565: if (style is not null) then -- Verify style
2566: begin
2567: Select Printer_Style_Name
2568: Into P_PRINT_STYLE
2569: From Fnd_Printer_styles
2570: Where Printer_Style_Name = style;
2571:
2572: exception
2573: when no_data_found then

Line 2586: From Fnd_Printer_Information

2582: (style is not null)) then -- Verify printer/style comination
2583: begin
2584: Select 'X'
2585: Into Dummy_fld
2586: From Fnd_Printer_Information
2587: Where Printer_Style = P_PRINT_STYLE
2588: And Printer_Type = printer_typ;
2589:
2590: exception

Line 2744: From fnd_printer

2740: if (printer is not null) then -- Verify printer
2741: begin
2742: Select printer_type
2743: Into printer_typ
2744: From fnd_printer
2745: Where printer_name = printer;
2746:
2747: exception
2748: when no_data_found then

Line 2762: From Fnd_Printer_Information

2758: (P_PRINT_STYLE is not null)) then -- Verify printer/style combo
2759: begin
2760: Select 'X'
2761: Into Dummy_fld
2762: From Fnd_Printer_Information
2763: Where Printer_Style = P_PRINT_STYLE
2764: And Printer_Type = printer_typ;
2765:
2766: exception