DBA Data[Home] [Help]

PACKAGE: APPS.GCS_LEX_MAP_GL_APPLY_PKG

Source


1 PACKAGE GCS_LEX_MAP_GL_APPLY_PKG AUTHID CURRENT_USER AS
2 /* $Header: gcsgllxs.pls 115.5 2003/10/15 18:46:00 mikeward noship $ */
3 --
4 -- Package
5 --   gcs_lex_map_gl_apply_pkg
6 -- Purpose
7 --   Package procedures for Lexical Mapping API for GL Interface. This
8 --   is used for an SRS request.
9 -- History
10 --   29-MAY-03	M Ward		Created
11 --
12 
13   --
14   -- Procedure
15   --   Apply_Transformation
16   -- Purpose
17   --   Applies the mapping specified to a GL Interface table listed in
18   --   GL_INTERFACE_CONTROL, affecting rows with the given Group ID. This may
19   --   also automatically run Journal Import following a successful transform,
20   --   with options for creating summary journals and importing descriptive
21   --   flexfields specified in the parameters.
22   -- Arguments
23   --   p_rule_set_id	ID of the Lexical Mapping to apply.
24   --   p_source		Source of the rows to affect in the interface table.
25   --   p_group_id	Group ID of the rows to affect in the interface table.
26   --   p_auto_ji	Automatically kick off Journal Import.
27   --   p_create_sum_jou	Create Summary Journals option for JI.
28   --   p_import_dff	Import Descriptive Flexfields option for JI.
29   -- Example
30   --   GCS_LEX_MAP_GL_APPLY_PKG.Apply_Transformation
31   --     (err_buf, ret_code, 111, 10000, 'Consolidation', 'Y', 'N', 'N')
32   -- Notes
33   --
34   PROCEDURE Apply_Transformation(	x_errbuf	OUT NOCOPY VARCHAR2,
35 					x_retcode	OUT NOCOPY VARCHAR2,
36 					p_rule_set_id		NUMBER,
37 					p_source		VARCHAR2,
38 					p_group_id		NUMBER,
39 					p_auto_ji		VARCHAR2,
40 					p_create_sum_jou	VARCHAR2,
41 					p_import_dff		VARCHAR2);
42 
43 END GCS_LEX_MAP_GL_APPLY_PKG;