DBA Data[Home] [Help]

APPS.HXC_TIMECARD_DEPOSIT dependencies on HXC_TIMECARD_MESSAGE_HELPER

Line 21: hxc_timecard_message_helper.addErrorToCollection

17: Begin
18:
19: if(p_time_building_block_id is null) then
20:
21: hxc_timecard_message_helper.addErrorToCollection
22: (p_messages
23: ,'HXC_NULL_TRANS_BLOCK'
24: ,hxc_timecard.c_error
25: ,null

Line 77: hxc_timecard_message_helper.addErrorToCollection

73: -- the reason is that we have no corresponding web beans
74: -- on the page at this point to set the item level errors
75: -- on.
76:
77: hxc_timecard_message_helper.addErrorToCollection
78: (p_messages
79: ,hr_message.last_message_name
80: ,hxc_timecard.c_error
81: ,null

Line 97: hxc_timecard_message_helper.addErrorToCollection

93:
94: if(SQLERRM is not null) then
95: -- fix for 3266231, v115.6
96: -- adding 'BLK_AND_CHILDREN' for "MESSAGE_EXTENT"
97: hxc_timecard_message_helper.addErrorToCollection
98: (p_messages
99: ,'HXC_HXT_DEP_VAL_ORAERR'
100: ,hxc_timecard.c_error
101: ,null

Line 117: hxc_timecard_message_helper.addErrorToCollection

113: else
114: -- Unable to determine error from stack or SQLERRM,
115: -- set to internal block deposit error.
116:
117: hxc_timecard_message_helper.addErrorToCollection
118: (p_messages
119: ,'HXC_XXXXXX_UNKN_BLOCK_DEP'
120: ,hxc_timecard.c_error
121: ,null

Line 323: hxc_timecard_message_helper.addErrorToCollection

319: -- This means the id matched, but the ovn did not.
320: -- This should never happen when depositing a timecard
321: -- Some likely corruption going on, raise error.
322: --
323: hxc_timecard_message_helper.addErrorToCollection
324: (p_messages
325: ,'HXC_366502_INVALID_PARENT_DEP'
326: ,hxc_timecard.c_error
327: ,null

Line 1107: hxc_timecard_message_helper.addErrorToCollection

1103: IF g_debug THEN
1104: hr_utility.trace('Found Detail Building Block mapped to wrong line in the timecard .. raise an error');
1105: END IF;
1106:
1107: hxc_timecard_message_helper.addErrorToCollection
1108: (p_messages
1109: ,'HXC_TBB_WRONG_LINE'
1110: ,hxc_timecard.c_error
1111: ,null

Line 1123: hxc_timecard_message_helper.addErrorToCollection

1119:
1120: ELSIF(l_duplicate_block) THEN
1121:
1122: hr_utility.trace(' Adding error to table for block : ' || l_block.time_building_block_id);
1123: hxc_timecard_message_helper.addErrorToCollection
1124: (p_messages
1125: ,'HXC_DUP_TIME_BUILDING_BLOCKS'
1126: ,hxc_timecard.c_error
1127: ,null

Line 1641: hxc_timecard_message_helper.addErrorToCollection

1637: hr_utility.trace('InvalidSecurityContext > ORG_ID of the person : '||l_organization_id);
1638:
1639: IF l_business_group_id <> fnd_profile.value('PER_BUSINESS_GROUP_ID') THEN
1640:
1641: hxc_timecard_message_helper.addErrorToCollection
1642: (p_messages
1643: ,'HXC_366551_INVALID_SEC_CONTEXT' -- You cannot submit this timecard because of invalid security context. Please logout and try again or contact your system administrator.
1644: ,hxc_timecard.c_error
1645: ,null

Line 1706: hxc_timecard_message_helper.addErrorToCollection

1702:
1703: --Pickup the last message(HXC_USAGE_DATA_MISSING) that has been set.
1704: hr_message.provide_error;
1705: if (hr_message.last_message_name is not null) then
1706: hxc_timecard_message_helper.addErrorToCollection
1707: (p_messages,
1708: hr_message.last_message_name,
1709: hxc_timecard.c_error,
1710: null,