DBA Data[Home] [Help]

APPS.HR_DATA_PUMP dependencies on FND_PROFILE

Line 813: fnd_profile.get('CONC_REQUEST_ID', l_request_id);

809: ) is
810: l_request_id number;
811: begin
812: -- Get the request_id profile value.
813: fnd_profile.get('CONC_REQUEST_ID', l_request_id);
814:
815: -- Following in case we are not running
816: -- from the concurrent manager.
817: if(l_request_id is null) then

Line 843: fnd_profile.get('CONC_REQUEST_ID', l_request_id);

839: ) is
840: l_request_id number;
841: begin
842: -- Get the concurrent request id.
843: fnd_profile.get('CONC_REQUEST_ID', l_request_id);
844:
845: -- Following in case we are not running
846: -- from the concurrent manager.
847: if(l_request_id is null) then

Line 899: fnd_profile.put

895: -- is to allow auditing to continue (existing behaviour). Auditing is
896: -- only turned off when explicitly requested.
897: --
898: if l_found and upper(l_pap_value) = 'Y' then
899: fnd_profile.put
900: (name => 'AUDITTRAIL:ACTIVATE'
901: ,val => 'N'
902: );
903: end if;