DBA Data[Home] [Help]

APPS.JTF_RS_GROUPS_PUB dependencies on JTF_RS_GROUPS_PVT

Line 10: Calls corresponding procedures from jtf_rs_groups_pvt to do business

6: Its main procedures are as following:
7: Create Resource Group
8: Update Resource Group
9: This package validates the input parameters to these procedures and then
10: Calls corresponding procedures from jtf_rs_groups_pvt to do business
11: validations and to do actual inserts, updates and deletes into tables.
12: ******************************************************************************************/
13:
14: /* Package variables. */

Line 112: jtf_rs_groups_pvt.create_resource_group

108: IF G_RS_GRP_ID_PUB_FLAG = 'Y' THEN
109:
110: /* Call the private procedure with the validated parameters. */
111:
112: jtf_rs_groups_pvt.create_resource_group
113: (P_API_VERSION => 1,
114: P_INIT_MSG_LIST => fnd_api.g_false,
115: P_COMMIT => fnd_api.g_false,
116: P_GROUP_NAME => l_group_name,

Line 137: jtf_rs_groups_pvt.create_resource_group_migrate

133: END IF;
134: END IF;
135: ELSE
136: /* Call the private procedure for Migration. */
137: jtf_rs_groups_pvt.create_resource_group_migrate
138: (P_API_VERSION => 1,
139: P_INIT_MSG_LIST => fnd_api.g_false,
140: P_COMMIT => fnd_api.g_false,
141: P_GROUP_NAME => l_group_name,

Line 373: jtf_rs_groups_pvt.update_resource_group

369: END IF;
370:
371: /* Call the private procedure with the validated parameters. */
372:
373: jtf_rs_groups_pvt.update_resource_group
374: (P_API_VERSION => 1,
375: P_INIT_MSG_LIST => fnd_api.g_false,
376: P_COMMIT => fnd_api.g_false,
377: P_GROUP_ID => l_group_id,