DBA Data[Home] [Help]

APPS.PAY_BATCH_OBJECT_STATUS_PKG dependencies on HR_GENERAL

Line 52: return hr_general.decode_lookup('ACTION_STATUS', l_object_status);

48: --
49: l_object_status := nvl(get_status(p_object_type, p_object_id)
50: ,p_default_status);
51: --
52: return hr_general.decode_lookup('ACTION_STATUS', l_object_status);
53:
54: end get_status_meaning;
55: --
56: -- ----------------------------------------------------------------------------

Line 118: := hr_general.decode_lookup('PAY_BATCH_OBJECT_TYPE', p_object_type);

114: if csr_ppa%found then
115: close csr_ppa;
116: --
117: l_object_name
118: := hr_general.decode_lookup('PAY_BATCH_OBJECT_TYPE', p_object_type);
119: --
120: -- You cannot lock the object that is being processed
121: -- by another batch process.
122: --

Line 212: := hr_general.decode_lookup('PAY_BATCH_OBJECT_TYPE', p_object_type);

208: --
209: if l_object_status <> 'C' then
210: --
211: l_object_name
212: := hr_general.decode_lookup('PAY_BATCH_OBJECT_TYPE', p_object_type);
213: --
214: hr_utility.set_message(801, 'PAY_33447_BAT_OBJ_INCOMP');
215: hr_utility.set_message_token('OBJECT_NAME', l_object_name);
216: hr_utility.raise_error;