DBA Data[Home] [Help]

APPS.INV_MATERIAL_STATUS_PKG dependencies on FND_GLOBAL

Line 147: px_status_rec.created_by := FND_GLOBAL.USER_ID;

143: if px_status_rec.locator_id = fnd_api.g_miss_num then
144: px_status_rec.locator_id := NULL;
145: end if;
146: if px_status_rec.created_by = fnd_api.g_miss_num then
147: px_status_rec.created_by := FND_GLOBAL.USER_ID;
148: end if;
149: if px_status_rec.last_updated_by = fnd_api.g_miss_num then
150: px_status_rec.last_updated_by := FND_GLOBAL.USER_ID;
151: end if;

Line 150: px_status_rec.last_updated_by := FND_GLOBAL.USER_ID;

146: if px_status_rec.created_by = fnd_api.g_miss_num then
147: px_status_rec.created_by := FND_GLOBAL.USER_ID;
148: end if;
149: if px_status_rec.last_updated_by = fnd_api.g_miss_num then
150: px_status_rec.last_updated_by := FND_GLOBAL.USER_ID;
151: end if;
152: -- always default the creation date and update date to sysdate
153: -- since we only need to insert this record and never need to
154: -- change it, bug 1912638

Line 158: px_status_rec.last_update_login := FND_GLOBAL.LOGIN_ID;

154: -- change it, bug 1912638
155: px_status_rec.creation_date := SYSDATE;
156: px_status_rec.last_update_date := SYSDATE;
157: if px_status_rec.last_update_login = fnd_api.g_miss_num then
158: px_status_rec.last_update_login := FND_GLOBAL.LOGIN_ID;
159: end if;
160:
161: if px_status_rec.program_application_id = fnd_api.g_miss_num then
162: px_status_rec.program_application_id := NULL;