DBA Data[Home] [Help]

PACKAGE: APPS.RCV_SETUP_S2

Source


1 PACKAGE RCV_SETUP_S2 AS
2 /* $Header: RCVSTS2S.pls 120.0 2005/06/01 21:04:37 appldev noship $*/
3 
4 /*===========================================================================
5   FUNCTION NAME: get_receiving_flags()
6 
7   DESCRIPTION:
8 	o DEF - For the organization, get the blind receiving flag
9 
10   PARAMETERS:
11 
12   DESIGN REFERENCES:	RCVTXERT.dd
13 
14   ALGORITHM:
15 
16   NOTES:
17 
18   OPEN ISSUES:
19 
20   CLOSED ISSUES:
21 
22   CHANGE HISTORY:
23 ===========================================================================*/
24 PROCEDURE get_receiving_flags (x_org_id  IN  NUMBER,
25 			     x_blind   OUT NOCOPY VARCHAR2,
26                              x_express OUT NOCOPY VARCHAR2,
27                              x_cascade OUT NOCOPY VARCHAR2,
28                              x_unordered OUT NOCOPY VARCHAR2);
29 
30 /*===========================================================================
31   PROCEDURE NAME:	get_startup_values()
32 
33   DESCRIPTION:
34 	o DEF - Get receiving defaults including:
35 		- control option for allowing routing override
36 		- transaction processing mode; default to ONLINE
37 		  if the profile is not set
38 	        - flag to determine if you should print a receipt traveller
39 		  at commit time or not
40 		- setting for auto/manual receipt number generation
41 		- determine if a receipt number is required or not
42 		- determine if receipt number should be numeric or alpha
43 		- control option for allowing express transactions
44 		- control option for allowing cascade transactions
45 		- get the org that your receiving in from
46 		  fsp_financial_system_parameters if inv is not installed
47 		  otherwise get it from user_profile which is set when
48 		  you use the change_org form
49 	o DEF - We need to add a receiving option to default whether this
50 		checkbox is set on or off when you initially bring up this
51 		window
52 
53   PARAMETERS:		x_org_id	    IN     NUMBER
54 			x_override_routing  IN OUT VARCHAR2
55                         x_transaction_mode  IN OUT VARCHAR2
56                         x_receipt_traveller IN OUT VARCHAR2
57                         x_receipt_num_code  IN OUT VARCHAR2
58                         x_receipt_num_type  IN OUT VARCHAR2
59                         x_po_num_type       IN OUT VARCHAR2
60 			x_allow_express	    IN OUT VARCHAR2
61 			x_allow_cascade	    IN OUT VARCHAR2
62                         x_coa_id            IN OUT NUMBER
63 
64   DESIGN REFERENCES:	RCVRCERC.dd
65 
66 			RCVRCMUR.dd
67 			RCVTXECO.dd
68 			RCVTXERE.dd
69 			RCVTXERT.dd
70 
71   ALGORITHM:
72 
73   NOTES:
74 
75   OPEN ISSUES:
76 
77   CLOSED ISSUES:
78 
79   CHANGE HISTORY:
80 ===========================================================================*/
81 
82 PROCEDURE get_startup_values(x_sob_id            IN OUT NOCOPY NUMBER,
83                              x_org_id            IN OUT NOCOPY NUMBER,
84                              x_org_name             OUT NOCOPY VARCHAR2,
85                              x_ussgl_value          OUT NOCOPY VARCHAR2 ,
86                              x_override_routing     OUT NOCOPY VARCHAR2,
87                              x_transaction_mode     OUT NOCOPY VARCHAR2,
88                              x_receipt_traveller    OUT NOCOPY VARCHAR2,
89                              x_period_name          OUT NOCOPY VARCHAR2,
90                              x_gl_date              OUT NOCOPY DATE,
91                              x_category_set_id      OUT NOCOPY NUMBER,
92                              x_structure_id         OUT NOCOPY NUMBER,
93                              x_receipt_num_code     OUT NOCOPY VARCHAR2,
94                              x_receipt_num_type     OUT NOCOPY VARCHAR2,
95                              x_po_num_type          OUT NOCOPY VARCHAR2,
96 			     x_allow_express	    OUT NOCOPY VARCHAR2,
97 			     x_allow_cascade	    OUT NOCOPY VARCHAR2,
98                              x_user_id              OUT NOCOPY NUMBER,
99                              x_logonid              OUT NOCOPY NUMBER,
100                              x_creation_date        OUT NOCOPY DATE,
101                              x_update_date          OUT NOCOPY DATE,
102                              x_coa_id               OUT NOCOPY NUMBER,
103                              x_org_locator_control  OUT NOCOPY NUMBER,
104                              x_negative_inv_receipt_code OUT NOCOPY NUMBER,
105                              x_gl_set_of_bks_id     OUT NOCOPY VARCHAR2,
106                              x_blind_Receiving_flag OUT NOCOPY VARCHAR2,
107 			     x_allow_unordered      OUT NOCOPY VARCHAR2);
108 
109 
110 
111 END RCV_SETUP_S2;