DBA Data[Home] [Help]

APPS.HR_DOR_REVIEW_SS dependencies on FND_GLOBAL

Line 4004: if(istxnowner(p_transaction_id,fnd_global.employee_id)

4000: if p_document_extra_info_id is null then
4001: -- for now this will only allow for transaction owner to update
4002:
4003: if(p_transaction_id is not null) then
4004: if(istxnowner(p_transaction_id,fnd_global.employee_id)
4005: and p_transaction_status in ('W','S','RI','RIS')) then
4006: dor_UpdateAllowed := 'HrUpdateEnabled';
4007: else
4008: dor_UpdateAllowed := 'HrUpdateDisabled';

Line 4077: if(istxnowner(p_transaction_id,fnd_global.employee_id)

4073:
4074: -- for now this will only allow for transaction owner to update
4075:
4076: if(p_transaction_id is not null) then
4077: if(istxnowner(p_transaction_id,fnd_global.employee_id)
4078: and p_transaction_status in ('W','S','RI','RIS')) then
4079: dor_DeleteAllowed := 'HrDeleteEnabled';
4080: else
4081: pvalue := fnd_profile.value('HR_APRVL_TXN_INITIATOR_DEL_ENABLED');

Line 4118: if(istxnowner(p_transaction_id,fnd_global.employee_id)

4114:
4115: -- for now this will only allow for transaction owner to update
4116:
4117: if(p_transaction_id is not null) then
4118: if(istxnowner(p_transaction_id,fnd_global.employee_id)
4119: and p_transaction_status in ('W','S','RI','RIS')) then
4120: dor_AttachAllowed := 'HrDocsEnabled';
4121: else
4122: dor_AttachAllowed := 'HrDocsDisabled';

Line 4163: if(ln_person_id= fnd_global.employee_id) then

4159: where transaction_id=p_transaction_id;
4160: end if;
4161:
4162: --
4163: if(ln_person_id= fnd_global.employee_id) then
4164: x_returnStatus := true;
4165: else
4166: x_returnStatus :=false;
4167: end if;