DBA Data[Home] [Help]

PACKAGE: APPS.RCV_SETUP_S

Source


1 PACKAGE RCV_SETUP_S AUTHID CURRENT_USER AS
2 /* $Header: RCVSTS1S.pls 115.1 2002/11/23 00:59:45 sbull ship $*/
3 
4 /*===========================================================================
5   FUNCTION NAME:	get_override_routing()
6 
7   DESCRIPTION:		Function returns Override Routing Option. If the
8 			Override Routing Option is NULL then it defaults the
9 			Option to 'N'.
10 
11 			Function references a 'FND_PROFILE.GET' procedure
12 			defined by the AOL grp to retrieve the Override
13 			Routing Option.
14 
15   PARAMETERS:		None
16 
17   RETURN VALUE:		Override Routing Option:
18 				1 =  Standard Receipt
19                 		2 =  Inspection Required
20                 		3 =  Direct Delivery
21 			or null.
22 
23 
24   DESIGN REFERENCES:	RCVRCERC.dd
25 			RCVRCMUR.dd
26 			RCVTXERT.dd
27 
28   ALGORITHM:
29 
30   NOTES:
31 
32   OPEN ISSUES:
33 
34   CLOSED ISSUES:
35 
36   CHANGE HISTORY:
37 ===========================================================================*/
38 FUNCTION get_override_routing  RETURN VARCHAR2;
39 
40 /*===========================================================================
41   FUNCTION NAME:	get_trx_proc_mode()
42 
43   DESCRIPTION:		Function returns Receiving's Transaction Processor
44  			Mode.  If Transaction Processor Mode is NULL the it
45 			defaults the mode to 'ONLINE'.
46 
47 			Function references a 'FND_PROFILE.GET' procedure
48 			defined by the AOL grp to retrieve the Receiving
49 			Transaction Processor Mode.
50 
51   PARAMETERS:		None
52 
53   RETURN VALUE:		Receiving Transaction Processor Mode:
54 				Batch
55 				Immediate
56 				On-line
57 
58   DESIGN REFERENCES:	RCVRCERC.dd
59 			RCVRCMUR.dd
60 			RCVTXECO.dd
61 			RCVTXERE.dd
62 			RCVTXERT.dd
63 
64   ALGORITHM:
65 
66 
67   NOTES:
68 
69   OPEN ISSUES:
70 
71   CLOSED ISSUES:
72 
73   CHANGE HISTORY:
74 ===========================================================================*/
75 FUNCTION get_trx_proc_mode  RETURN VARCHAR2;
76 
77 /*===========================================================================
78   FUNCTION NAME:	get_print_traveller()
79 
80   DESCRIPTION:		Function returns Print Traveller Option.  If Print
81 			Traveller Option is NULL then it defaults the Option
82 			to 'N'.
83 
84 			Function references a 'FND_PROFILE.GET' procedure
85 			defined by the AOL grp to retreive the value of the
86 			Print Traveller Option.
87 
88   PARAMETERS:		None
89 
90   RETURN VALUE:		Y = auto-print the traveller
91 			N = do not auto-print the traveller
92 
93   DESIGN REFERENCES:	RCVRCERC.dd
94 			RCVRCMUR.dd
95 			RCVTXECO.dd
96 			RCVTXERT.dd
97 
98   ALGORITHM:
99 
100   NOTES:
101 
102   OPEN ISSUES:
103 
104   CLOSED ISSUES:
105 
106   CHANGE HISTORY:
107 ===========================================================================*/
108 FUNCTION get_print_traveller  RETURN VARCHAR2;
109 /*===========================================================================
110   PROCEDURE NAME: get_org_locator_control()
111 
112   DESCRIPTION:
113 	o DEF - For the organization, get the locator control
114                 and negative_inventory_receipt_code
115   PARAMETERS:
116 
117   DESIGN REFERENCES:	RCVTXERT.dd
118 
119   ALGORITHM:
120 
121   NOTES:
122 
123   OPEN ISSUES:
124 
125   CLOSED ISSUES:
126 
127   CHANGE HISTORY:
128 ===========================================================================*/
129 
130 PROCEDURE get_org_locator_control (x_org_id           IN NUMBER,
131                                    x_locator_cc      OUT NOCOPY NUMBER,
132                                    x_negative_inv_rc OUT NOCOPY NUMBER) ;
133 
134 /*===========================================================================
135   PROCEDURE NAME:	get_receipt_number_info()
136 
137   DESCRIPTION:		Procedure gets the user defined receipt number code,
138 			manual receipt and purchase order number types from
139 			po_system parameters
140 
141   PARAMETERS:		x_user_defined_rcpt_num_code OUT (MANUAL  or AUTOMATIC)
142                         x_manual_rcpt_num_type OUT (NUMERIC or ALPHANUMERIC)
143                         x_manual_po_num_type      OUT (NUMERIC or ALPHANUMERIC)
144 
145   DESIGN REFERENCES:	RCVRCERC.dd
146 
147   ALGORITHM:
148 
149   NOTES:
150 
151   OPEN ISSUES:
152 
153   CLOSED ISSUES:
154 
155   CHANGE HISTORY:
156 ===========================================================================*/
157 PROCEDURE get_receipt_number_info (x_user_defined_rcpt_num_code  OUT NOCOPY VARCHAR2,
158                                    x_manual_rcpt_num_type  OUT NOCOPY VARCHAR2,
159                                    x_manual_po_num_type       OUT NOCOPY VARCHAR2) ;
160 
161 /*===========================================================================
162 
163   FUNCTION NAME : get_chart_of_accounts
164 
165   DESCRIPTION   :
166 
167   CLIENT/SERVER : SERVER
168 
169   LIBRARY NAME  :
170 
171   OWNER         : SUBHAJIT PURKAYASTHA
172 
173   PARAMETERS    :
174 
175   ALGORITHM     : Retreive chart of accounts id from
176                   financials_system_parameters and gl_sets_of_books table
177 
178   NOTES         :
179 
180 ===========================================================================*/
181 FUNCTION get_chart_of_accounts RETURN NUMBER;
182 
183 END RCV_SETUP_S;