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 138: jtf_rs_groups_pvt.create_resource_group

134: IF G_RS_GRP_ID_PUB_FLAG = 'Y' THEN
135:
136: /* Call the private procedure with the validated parameters. */
137:
138: jtf_rs_groups_pvt.create_resource_group
139: (P_API_VERSION => 1,
140: P_INIT_MSG_LIST => fnd_api.g_false,
141: P_COMMIT => fnd_api.g_false,
142: P_GROUP_NAME => l_group_name,

Line 164: jtf_rs_groups_pvt.create_resource_group_migrate

160: END IF;
161: END IF;
162: ELSE
163: /* Call the private procedure for Migration. */
164: jtf_rs_groups_pvt.create_resource_group_migrate
165: (P_API_VERSION => 1,
166: P_INIT_MSG_LIST => fnd_api.g_false,
167: P_COMMIT => fnd_api.g_false,
168: P_GROUP_NAME => l_group_name,

Line 410: jtf_rs_groups_pvt.update_resource_group

406: l_exclusive_flag := NVL(l_exclusive_flag,'N');
407:
408: /* Call the private procedure with the validated parameters. */
409:
410: jtf_rs_groups_pvt.update_resource_group
411: (P_API_VERSION => 1,
412: P_INIT_MSG_LIST => fnd_api.g_false,
413: P_COMMIT => fnd_api.g_false,
414: P_GROUP_ID => l_group_id,