DBA Data[Home] [Help]

APPS.CN_JOB_TITLE_PKG dependencies on FND_GLOBAL

Line 65: fnd_global.user_id,

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

Line 66: fnd_global.login_id,

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

Line 68: fnd_global.user_id,

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

Line 148: last_update_login = fnd_global.login_id,

144: newrec.attribute14),
145: attribute15 = decode(newrec.attribute15, fnd_api.g_miss_char,
146: oldrec.attribute15,
147: newrec.attribute15),
148: last_update_login = fnd_global.login_id,
149: last_update_date = sysdate,
150: last_updated_by = fnd_global.user_id,
151: object_version_number = oldrec.object_version_number + 1
152: where job_role_id = oldrec.job_role_id;

Line 150: last_updated_by = fnd_global.user_id,

146: oldrec.attribute15,
147: newrec.attribute15),
148: last_update_login = fnd_global.login_id,
149: last_update_date = sysdate,
150: last_updated_by = fnd_global.user_id,
151: object_version_number = oldrec.object_version_number + 1
152: where job_role_id = oldrec.job_role_id;
153: END Update_Row;
154: