DBA Data[Home] [Help]

APPS.FND_USER_PKG dependencies on FND_USER_RESP_GROUPS_API

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

2956: from fnd_application
2957: where application_short_name = DelResp.Resp_app;
2958:
2959: /* Bug4600645 - Modified to get actual start_date instead of using */
2960: /* sysdate in call to fnd_user_resp_groups_api.update_assignment */
2961:
2962: select responsibility_id
2963: into respid
2964: from fnd_responsibility

Line 2990: if (fnd_user_resp_groups_api.assignment_exists(

2986: fnd_message.set_token('SECURITY_GROUP', security_group);
2987: app_exception.raise_exception;
2988: end;
2989:
2990: if (fnd_user_resp_groups_api.assignment_exists(
2991: userid, respid, appid, secid)) then
2992: fnd_user_resp_groups_api.update_assignment(
2993: user_id => userid,
2994: responsibility_id => respid,

Line 2992: fnd_user_resp_groups_api.update_assignment(

2988: end;
2989:
2990: if (fnd_user_resp_groups_api.assignment_exists(
2991: userid, respid, appid, secid)) then
2992: fnd_user_resp_groups_api.update_assignment(
2993: user_id => userid,
2994: responsibility_id => respid,
2995: responsibility_application_id => appid,
2996: security_group_id => secid,

Line 3063: if (fnd_user_resp_groups_api.assignment_exists(

3059: fnd_message.set_token('SECURITY_GROUP', security_group);
3060: app_exception.raise_exception;
3061: end;
3062:
3063: if (fnd_user_resp_groups_api.assignment_exists(
3064: userid, respid, appid, secid)) then
3065: fnd_user_resp_groups_api.update_assignment(
3066: user_id => userid,
3067: responsibility_id => respid,

Line 3065: fnd_user_resp_groups_api.update_assignment(

3061: end;
3062:
3063: if (fnd_user_resp_groups_api.assignment_exists(
3064: userid, respid, appid, secid)) then
3065: fnd_user_resp_groups_api.update_assignment(
3066: user_id => userid,
3067: responsibility_id => respid,
3068: responsibility_application_id => appid,
3069: security_group_id => secid,

Line 3074: fnd_user_resp_groups_api.insert_assignment(

3070: start_date => AddResp.start_date,
3071: end_date => AddResp.end_date,
3072: description => AddResp.description);
3073: else
3074: fnd_user_resp_groups_api.insert_assignment(
3075: user_id => userid,
3076: responsibility_id => respid,
3077: responsibility_application_id => appid,
3078: security_group_id => secid,