DBA Data[Home] [Help]

PACKAGE: APPS.FND_PRINT

Source


1 package FND_PRINT as
2 /* $Header: AFPRGPIS.pls 120.2 2005/08/19 20:14:19 ckclark ship $ */
3 
4 
5     /*
6     **  AOL Internal use only.
7     **  INITIALIZE - initialize printer, type, and style tables.
8     **
9     **  procedure INITIALIZE;
10     */
11 
12     /*
13     **  AOL Internal use only.
14     **  STYLE_INFORMATION - returns TRUE if a style with the same name
15     **                      is found. Returns width and length too.
16     **
17     **    function STYLE_INFORMATION(STYLE in varchar2,
18     **			 	WIDTH out nocopy number, LENGTH out nocopy number)
19     **				return boolean;
20     */
21 
22     /*
23     **  AOL Internal use only.
24     **  PRINTER_INFORMATION - returns TRUE if a printer's type has a
25     **                        style that is assigned to it.
26     **
27     **    function PRINTER_INFORMATION(PRINTER in varchar2,
28     **			 STYLE in varchar2) return boolean;
29     */
30 
31     /*
32     **  GET_STYLE - returns the value of a valid style that matches
33     **              the dimensions passed in, and that matches the
34     **              printer specifications.
35     ** 		    returns TRUE if successful.
36     */
37     function GET_STYLE(STYLE in  varchar2,
38  		        MINWIDTH  in number, MAXWIDTH  in number,
39 			MINLENGTH in number, MAXLENGTH in number,
40 			REQUIRED in boolean, PRINTER in varchar2,
41 			VALIDSTYLE out nocopy varchar2) return boolean;
42 
43 end FND_PRINT;