DBA Data[Home] [Help]

APPS.JTF_RS_GROUP_MEMBER_VUHK dependencies on FND_API

Line 14: x_return_status := fnd_api.g_ret_sts_success;

10: P_RESOURCE_ID IN JTF_RS_GROUP_MEMBERS.RESOURCE_ID%TYPE,
11: X_RETURN_STATUS OUT NOCOPY VARCHAR2
12: ) IS
13: BEGIN
14: x_return_status := fnd_api.g_ret_sts_success;
15: END create_group_members_pre;
16:
17:
18: /* Vertcal Industry Procedure for post processing in case of

Line 43: x_return_status := fnd_api.g_ret_sts_success;

39: ' when others then null;' ||
40: ' end; ';
41:
42: BEGIN
43: x_return_status := fnd_api.g_ret_sts_success;
44:
45: begin
46: EXECUTE IMMEDIATE
47: ' begin JTM_MESSAGE_LOG_PKG.log_msg(' ||

Line 88: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

84: end if;
85:
86: EXCEPTION
87: WHEN OTHERS THEN
88: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
89: begin
90: EXECUTE IMMEDIATE l_strLogBuffer;
91: exception
92: when others then

Line 105: x_return_status := fnd_api.g_ret_sts_success;

101: (P_GROUP_MEMBER_ID IN JTF_RS_GROUP_MEMBERS.GROUP_MEMBER_ID%TYPE,
102: X_RETURN_STATUS OUT NOCOPY VARCHAR2
103: ) IS
104: BEGIN
105: x_return_status := fnd_api.g_ret_sts_success;
106: END update_group_members_pre;
107:
108:
109: /* Vertcal Industry Procedure for post processing in case of

Line 117: x_return_status := fnd_api.g_ret_sts_success;

113: (P_GROUP_MEMBER_ID IN JTF_RS_GROUP_MEMBERS.GROUP_MEMBER_ID%TYPE,
114: X_RETURN_STATUS OUT NOCOPY VARCHAR2
115: ) IS
116: BEGIN
117: x_return_status := fnd_api.g_ret_sts_success;
118: END update_group_members_post;
119:
120:
121: /* Vertcal Industry Procedure for pre processing in case of

Line 145: x_return_status := fnd_api.g_ret_sts_success;

141: ' when others then null;' ||
142: ' end; ';
143:
144: BEGIN
145: x_return_status := fnd_api.g_ret_sts_success;
146:
147: begin
148: EXECUTE IMMEDIATE
149: ' begin JTM_MESSAGE_LOG_PKG.log_msg(' ||

Line 188: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

184: end if;
185:
186: EXCEPTION
187: WHEN OTHERS THEN
188: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
189: begin
190: EXECUTE IMMEDIATE l_strLogBuffer;
191: exception
192: when others then

Line 207: x_return_status := fnd_api.g_ret_sts_success;

203: P_RESOURCE_ID IN JTF_RS_GROUP_MEMBERS.RESOURCE_ID%TYPE,
204: X_RETURN_STATUS OUT NOCOPY VARCHAR2
205: ) IS
206: BEGIN
207: x_return_status := fnd_api.g_ret_sts_success;
208: END delete_group_members_post;
209:
210: END jtf_rs_group_member_vuhk;