DBA Data[Home] [Help]

PACKAGE: APPS.JTF_TASK_OBJECT_MIGRATION_PUB

Source


1 PACKAGE JTF_TASK_OBJECT_MIGRATION_PUB AUTHID CURRENT_USER AS
2 /* $Header: jtfptkjs.pls 115.0 2003/04/08 23:41:24 cjang noship $ */
3 
4     ----------------------------------------------------------------------------------------
5     -- PROCEDURE update_object_name():
6     -- Disclaimer:
7     --    This procedure must be used only when the definition of object code is changed
8     --    in JTF_OBJECTS_B table. For all other cases, it is not recommended to use this
9     --    procedure.
10     -- Description
11     --    This procedure updates object_name in JTF_TASKS_B and JTF_TASK_REFERENCES_B
12     --    according to the object code passed.
13     --    If the object name is greater than 80 bytes, the name is truncated to 80 bytes.
14     -- Major Parameter:
15     --    p_object_code : The object code of which the definition is changed.
16     ----------------------------------------------------------------------------------------
17     PROCEDURE update_object_name(p_object_code   IN         VARCHAR2
18                                 ,p_init_msg_list IN         VARCHAR2 DEFAULT fnd_api.g_false
19                                 ,p_commit        IN         VARCHAR2 DEFAULT fnd_api.g_false
20                                 ,x_msg_count     OUT NOCOPY NUMBER
21                                 ,x_msg_data      OUT NOCOPY VARCHAR2
22                                 ,x_return_status OUT NOCOPY VARCHAR2);
23 
24 END JTF_TASK_OBJECT_MIGRATION_PUB;