DBA Data[Home] [Help]

APPS.FND_MLS_SUBMIT dependencies on FND_PRINTER

Line 940: From fnd_printer

936: if (printer is not null) then -- Verify printer
937: begin
938: Select printer_type
939: Into printer_typ
940: From fnd_printer
941: Where printer_name = printer;
942:
943: exception
944: when no_data_found then

Line 958: From Fnd_Printer_Information

954: (P_PRINT_STYLE is not null)) then -- Verify printer/style combo
955: begin
956: Select 'X'
957: Into Dummy_fld
958: From Fnd_Printer_Information
959: Where Printer_Style = P_PRINT_STYLE
960: And Printer_Type = printer_typ;
961:
962: exception

Line 1110: From fnd_printer

1106: if (printer is not null) then -- Verify printer
1107: begin
1108: Select printer_type
1109: Into printer_typ
1110: From fnd_printer
1111: Where printer_name = printer;
1112:
1113: exception
1114: when no_data_found then

Line 1127: From Fnd_Printer_styles

1123: if (style is not null) then -- Verify style
1124: begin
1125: Select Printer_Style_Name
1126: Into P_PRINT_STYLE
1127: From Fnd_Printer_styles
1128: Where Printer_Style_Name = style;
1129:
1130: exception
1131: when no_data_found then

Line 1144: From Fnd_Printer_Information

1140: (style is not null)) then -- Verify printer/style comination
1141: begin
1142: Select 'X'
1143: Into Dummy_fld
1144: From Fnd_Printer_Information
1145: Where Printer_Style = P_PRINT_STYLE
1146: And Printer_Type = printer_typ;
1147:
1148: exception