DBA Data[Home] [Help]

APPS.HXC_SECURITY dependencies on HXC_TIMECARD

Line 50: (p_blocks(hxc_timecard_block_utils.find_active_timecard_index(p_blocks)).

46:
47: if( (p_org_id is null)
48: AND
49: (isTimecardForProjects
50: (p_blocks(hxc_timecard_block_utils.find_active_timecard_index(p_blocks)).
51: application_set_id))) then
52: if(p_messages is null) then
53: p_messages := hxc_message_table_type();
54: end if;

Line 59: hxc_timecard.c_error,

55: l_passed := false;
56: p_messages.extend();
57: p_messages(p_messages.last) := hxc_message_type
58: ('HXC_366546_NO_ORG_ID',
59: hxc_timecard.c_error,
60: null,
61: null,
62: hxc_timecard.c_hxc,
63: null,

Line 62: hxc_timecard.c_hxc,

58: ('HXC_366546_NO_ORG_ID',
59: hxc_timecard.c_error,
60: null,
61: null,
62: hxc_timecard.c_hxc,
63: null,
64: null,
65: null,
66: null,

Line 176: ,hxc_timecard_attribute_utils.get_bld_blk_info_type_id(c_sec)

172: ,null
173: ,null
174: ,null
175: ,null
176: ,hxc_timecard_attribute_utils.get_bld_blk_info_type_id(c_sec)
177: ,1
178: ,'Y'
179: ,'N'
180: ,c_sec

Line 201: if(p_attributes(l_attribute_index).attribute_category = hxc_timecard.c_security_attribute) then

197:
198: l_attribute_index := p_attributes.first;
199: Loop
200: Exit when not p_attributes.exists(l_attribute_index);
201: if(p_attributes(l_attribute_index).attribute_category = hxc_timecard.c_security_attribute) then
202: l_sec_list(p_attributes(l_attribute_index).building_block_id) := true;
203: end if;
204: l_attribute_index := p_attributes.next(l_attribute_index);
205: End Loop;

Line 278: and ta.attribute_category = hxc_timecard.c_security_attribute

274: ,hxc_bld_blk_info_types bbit
275: where ta.time_attribute_id = tau.time_attribute_id
276: and tau.time_building_block_id = p_block_id
277: and tau.time_building_block_ovn = p_block_ovn
278: and ta.attribute_category = hxc_timecard.c_security_attribute
279: and ta.bld_blk_info_type_id = bbit.bld_blk_info_type_id;
280:
281: l_index number;
282: l_attribute_index number;

Line 357: p_timecard_props in hxc_timecard_prop_table_type,

353:
354: PROCEDURE add_security_attribute
355: (p_blocks in hxc_block_table_type,
356: p_attributes in out nocopy hxc_attribute_table_type,
357: p_timecard_props in hxc_timecard_prop_table_type,
358: p_messages in out nocopy hxc_message_table_type
359: ) IS
360:
361: l_list block_list;

Line 396: l_org_id := hxc_timecard_properties.find_property_value

392: --
393: -- We need to add to at least sec attr to one block
394: --
395:
396: l_org_id := hxc_timecard_properties.find_property_value
397: (p_timecard_props,
398: 'ResourceOrgId',
399: null,
400: null,