DBA Data[Home] [Help]

APPS.UMX_REGISTRATION_PVT dependencies on FND_GLOBAL

Line 146: wf_event.addParametertoList('REQUESTED_BY_USER_ID', FND_GLOBAL.USER_ID, l_parameter_list);

142: p_registration_data(l_index_to_add).ATTR_VALUE := l_item_key;
143: end if;
144:
145: --if l_requested_by_user_id is null then
146: wf_event.addParametertoList('REQUESTED_BY_USER_ID', FND_GLOBAL.USER_ID, l_parameter_list);
147: --end if;
148:
149: wf_event.addParametertoList('UMX_PARENT_ITEM_TYPE', UMX_REGISTRATION_UTIL.G_ITEM_TYPE, l_parameter_list);
150: wf_event.addParametertoList('UMX_PARENT_ITEM_KEY', l_item_key, l_parameter_list);

Line 599: l_requested_by_user_id := fnd_global.user_id;

595:
596: -- Requested by User ID must be filled with some value. If it is null, then
597: -- get the value from the current logged in user.
598: if (l_requested_by_user_id is null) then
599: l_requested_by_user_id := fnd_global.user_id;
600: end if;
601:
602: -- Look for existing data. If we already find the metadata in the table
603: -- we will add into its value.

Line 921: l_requested_by_user_id := fnd_global.user_id;

917: p_registration_data(i).attr_value := fnd_date.date_to_canonical (l_requested_start_date);
918: end if;
919: elsif (p_registration_data(i).attr_name = G_REQUESTED_BY_USER_ID) then
920: if (p_registration_data(i).attr_value is null) then
921: l_requested_by_user_id := fnd_global.user_id;
922: p_registration_data(i).attr_value := l_requested_by_user_id;
923: else
924: l_requested_by_user_id := p_registration_data(i).attr_value;
925: end if;