DBA Data[Home] [Help]

APPS.CN_USER_ACCESS_PKG dependencies on FND_GLOBAL

Line 63: fnd_global.user_id,

59: newrec.attribute13,
60: newrec.attribute14,
61: newrec.attribute15,
62: sysdate,
63: fnd_global.user_id,
64: fnd_global.login_id,
65: sysdate,
66: fnd_global.user_id,
67: 1);

Line 64: fnd_global.login_id,

60: newrec.attribute14,
61: newrec.attribute15,
62: sysdate,
63: fnd_global.user_id,
64: fnd_global.login_id,
65: sysdate,
66: fnd_global.user_id,
67: 1);
68: END Insert_Row;

Line 66: fnd_global.user_id,

62: sysdate,
63: fnd_global.user_id,
64: fnd_global.login_id,
65: sysdate,
66: fnd_global.user_id,
67: 1);
68: END Insert_Row;
69:
70: PROCEDURE Update_Row(newrec

Line 143: last_update_login = fnd_global.login_id,

139: newrec.attribute14),
140: attribute15 = decode(newrec.attribute15, fnd_api.g_miss_char,
141: oldrec.attribute15,
142: newrec.attribute15),
143: last_update_login = fnd_global.login_id,
144: last_update_date = sysdate,
145: last_updated_by = fnd_global.user_id,
146: object_version_number = oldrec.object_version_number + 1
147: where user_access_id = oldrec.user_access_id;

Line 145: last_updated_by = fnd_global.user_id,

141: oldrec.attribute15,
142: newrec.attribute15),
143: last_update_login = fnd_global.login_id,
144: last_update_date = sysdate,
145: last_updated_by = fnd_global.user_id,
146: object_version_number = oldrec.object_version_number + 1
147: where user_access_id = oldrec.user_access_id;
148: END Update_Row;
149: