DBA Data[Home] [Help]

APPS.UMX_REGISTRATION_PVT dependencies on FND_GLOBAL

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

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

Line 586: l_requested_by_user_id := fnd_global.user_id;

582:
583: -- Requested by User ID must be filled with some value. If it is null, then
584: -- get the value from the current logged in user.
585: if (l_requested_by_user_id is null) then
586: l_requested_by_user_id := fnd_global.user_id;
587: end if;
588:
589: -- Look for existing data. If we already find the metadata in the table
590: -- we will add into its value.

Line 906: l_requested_by_user_id := fnd_global.user_id;

902: p_registration_data(i).attr_value := fnd_date.date_to_canonical (l_requested_start_date);
903: end if;
904: elsif (p_registration_data(i).attr_name = G_REQUESTED_BY_USER_ID) then
905: if (p_registration_data(i).attr_value is null) then
906: l_requested_by_user_id := fnd_global.user_id;
907: p_registration_data(i).attr_value := l_requested_by_user_id;
908: else
909: l_requested_by_user_id := p_registration_data(i).attr_value;
910: end if;