DBA Data[Home] [Help]

PACKAGE: APPS.OKL_ACC_GEN_WF_PVT

Source


1 PACKAGE  OKL_ACC_GEN_WF_PVT AUTHID CURRENT_USER AS
2 /* $Header: OKLRAGWS.pls 120.2 2005/10/30 04:31:14 appldev noship $ */
3 
4 /* This function will be called from the Account Generator API to invoke
5    the workflow to generate the ccid
6 */
7 
8 SUBTYPE  acc_gen_wf_sources_rec IS OKL_ACCOUNT_GENERATOR_PUB.acc_gen_wf_sources_rec;
9 SUBTYPE acc_gen_primary_key IS OKL_ACCOUNT_GENERATOR_PUB.primary_key_tbl;
10 
11 
12 -- Changed the signature for bug 4157521
13 
14 FUNCTION start_process
15   (
16     p_acc_gen_wf_sources_rec       IN  acc_gen_wf_sources_rec,
17     p_ae_line_type	      IN  okl_acc_gen_rules.ae_line_type%TYPE,
18     p_primary_key_tbl	      IN  acc_gen_primary_key,
19     p_ae_tmpt_line_id	      IN  NUMBER DEFAULT NULL
20   )
21   RETURN NUMBER;
22 
23 
24 /*
25    This sample function will be used to get the template line CCID
26    based on the template line ID available in workflow.
27 */
28 
29   PROCEDURE sample_function (itemtype  IN VARCHAR2,
30 	      	    itemkey   IN VARCHAR2,
31 		    actid     IN NUMBER,
32 		    funcmode  IN VARCHAR2,
33 		    result    OUT NOCOPY VARCHAR2);
34 
35 
36 END OKL_ACC_GEN_WF_PVT;
37