DBA Data[Home] [Help]

PACKAGE: APPS.JTF_OBJECTS_PVT

Source


1 PACKAGE JTF_OBJECTS_PVT AUTHID CURRENT_USER AS
2 /* $Header: jtfvobms.pls 115.2 2002/05/08 17:23:41 pkm ship     $ */
3 --------------------------------------------------------------------------
4 -- Start of comments
5 --  Procedure   : GET_OBJECT_INSTANCE_NAME
6 --  Description : Will determine the Name of the Object Instance based
7 --                on the objects definition in JTF_OBJECTS. This function
8 --                is used in the JTF_OBJECT_MAPPINGS_V.
9 --  Parameters  :
10 --      name                 direction  type        required?
11 --      ----                 ---------  ----        ---------
12 --      p_ObjectCode         IN         VARCHAR2   required
13 --      p_ObjectID           IN         VARCHAR2   required
14 --      RETURN                          VARCHAR2
15 --
16 --  Notes :
17 --
18 -- End of comments
19 --------------------------------------------------------------------------
20 FUNCTION GET_OBJECT_INSTANCE_NAME
21 ( p_ObjectCode IN VARCHAR2
22 , p_ObjectID   IN VARCHAR2
23 )RETURN VARCHAR2;
24 
25 END JTF_OBJECTS_PVT;