DBA Data[Home] [Help]

APPS.FND_USER_PKG dependencies on FND_USER_RESP_GROUPS_API

Line 2353: /* sysdate in call to fnd_user_resp_groups_api.update_assignment */

2349: from fnd_application
2350: where application_short_name = DelResp.Resp_app;
2351:
2352: /* Bug4600645 - Modified to get actual start_date instead of using */
2353: /* sysdate in call to fnd_user_resp_groups_api.update_assignment */
2354:
2355: select responsibility_id
2356: into respid
2357: from fnd_responsibility

Line 2383: if (fnd_user_resp_groups_api.assignment_exists(

2379: fnd_message.set_token('SECURITY_GROUP', security_group);
2380: app_exception.raise_exception;
2381: end;
2382:
2383: if (fnd_user_resp_groups_api.assignment_exists(
2384: userid, respid, appid, secid)) then
2385: fnd_user_resp_groups_api.update_assignment(
2386: user_id => userid,
2387: responsibility_id => respid,

Line 2385: fnd_user_resp_groups_api.update_assignment(

2381: end;
2382:
2383: if (fnd_user_resp_groups_api.assignment_exists(
2384: userid, respid, appid, secid)) then
2385: fnd_user_resp_groups_api.update_assignment(
2386: user_id => userid,
2387: responsibility_id => respid,
2388: responsibility_application_id => appid,
2389: security_group_id => secid,

Line 2456: if (fnd_user_resp_groups_api.assignment_exists(

2452: fnd_message.set_token('SECURITY_GROUP', security_group);
2453: app_exception.raise_exception;
2454: end;
2455:
2456: if (fnd_user_resp_groups_api.assignment_exists(
2457: userid, respid, appid, secid)) then
2458: fnd_user_resp_groups_api.update_assignment(
2459: user_id => userid,
2460: responsibility_id => respid,

Line 2458: fnd_user_resp_groups_api.update_assignment(

2454: end;
2455:
2456: if (fnd_user_resp_groups_api.assignment_exists(
2457: userid, respid, appid, secid)) then
2458: fnd_user_resp_groups_api.update_assignment(
2459: user_id => userid,
2460: responsibility_id => respid,
2461: responsibility_application_id => appid,
2462: security_group_id => secid,

Line 2467: fnd_user_resp_groups_api.insert_assignment(

2463: start_date => AddResp.start_date,
2464: end_date => AddResp.end_date,
2465: description => AddResp.description);
2466: else
2467: fnd_user_resp_groups_api.insert_assignment(
2468: user_id => userid,
2469: responsibility_id => respid,
2470: responsibility_application_id => appid,
2471: security_group_id => secid,