DBA Data[Home] [Help]

APPS.FND_REQUEST dependencies on FND_PRINT

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

1093:
1094: -- We do not need to validate print style if it's a queue
1095: -- control request or if the the style is DYNAMIC
1096: if ((qctlflg <> 'Y') and (print_style <> 'DYNAMIC')) then
1097: styl_ok := fnd_print.get_style (print_style,
1098: minwid, maxwid, minlen, maxlen,
1099: (reqrd_flag = 'Y'), curr_printer,
1100: valid_style);
1101:

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

1099: (reqrd_flag = 'Y'), curr_printer,
1100: valid_style);
1101:
1102: -- If printer and print_style were incompatible, valid_style
1103: -- is null. Also check to see if fnd_printer.get_style failed.
1104: if ((valid_style is null) or (not styl_ok)) then
1105:
1106: -- If we still intend to print, bad news.
1107: if (prtflg = 'Y') then

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

1171: if (valid_style is null) then
1172: -- if it's an Oracle Reports request, we must get
1173: -- some (valid) print style
1174: if (execcode = 'P') then
1175: styl_ok := fnd_print.get_style (print_style,
1176: minwid, maxwid,
1177: minlen, maxlen,
1178: (reqrd_flag = 'Y'),
1179: null,

Line 3111: From fnd_printer

3107: if (printer is not null) then -- Verify printer
3108: begin
3109: Select printer_type
3110: Into printer_typ
3111: From fnd_printer
3112: Where Upper(printer_name) = Upper(printer);
3113:
3114: exception
3115: when no_data_found then

Line 3128: From Fnd_Printer_styles

3124: if (style is not null) then -- Verify style
3125: begin
3126: Select Printer_Style_Name
3127: Into P_PRINT_STYLE
3128: From Fnd_Printer_styles
3129: Where Upper(Printer_Style_Name) = Upper(style);
3130:
3131: exception
3132: when no_data_found then

Line 3145: From Fnd_Printer_Information

3141: (style is not null)) then -- Verify printer/style comination
3142: begin
3143: Select 'X'
3144: Into Dummy_fld
3145: From Fnd_Printer_Information
3146: Where Upper(Printer_Style) = Upper(P_PRINT_STYLE)
3147: And Upper(Printer_Type) = Upper(printer_typ);
3148:
3149: exception

Line 3315: From fnd_printer

3311: if (printer is not null) then -- Verify printer
3312: begin
3313: Select printer_type
3314: Into printer_typ
3315: From fnd_printer
3316: Where Upper(printer_name) = Upper(printer);
3317:
3318: exception
3319: when no_data_found then

Line 3333: From Fnd_Printer_Information

3329: (P_PRINT_STYLE is not null)) then -- Verify printer/style combo
3330: begin
3331: Select 'X'
3332: Into Dummy_fld
3333: From Fnd_Printer_Information
3334: Where Upper(Printer_Style) = Upper(P_PRINT_STYLE)
3335: And Upper(Printer_Type) = Upper(printer_typ);
3336:
3337: exception