DBA Data[Home] [Help]

APPS.EAM_METR_VALIDATOR dependencies on FND_GLOBAL

Line 96: l_user_id:=fnd_global.user_id;

92: l_last_updated_by number;
93: l_creation_date date;
94: l_last_update_date date;
95: begin
96: l_user_id:=fnd_global.user_id;
97: select created_by, last_updated_by, creation_date, last_update_date
98: into l_created_by, l_last_updated_by, l_creation_date, l_last_update_date
99: from eam_meter_readings_interface
100: where rowid=p_current_rowid;

Line 111: l_created_by:=fnd_global.user_id;

107: RETURN;
108: END IF;
109:
110: if (l_created_by is null) then
111: l_created_by:=fnd_global.user_id;
112: end if;
113:
114: if (l_last_updated_by is null) then
115: l_last_updated_by:=fnd_global.user_id;

Line 115: l_last_updated_by:=fnd_global.user_id;

111: l_created_by:=fnd_global.user_id;
112: end if;
113:
114: if (l_last_updated_by is null) then
115: l_last_updated_by:=fnd_global.user_id;
116: end if;
117:
118: if (l_creation_date is null) then
119: l_creation_date:=sysdate;