DBA Data[Home] [Help]

APPS.PAY_PPMV4_UTILS_SS dependencies on FND_PROFILE

Line 2099: if (NVL(FND_PROFILE.VALUE('PAY_US_NACHA_IAT'),'N')='N') then

2095: If it's 'Y', then transit code should be '000000000' and this validation
2096: is raised in user hook of the US (PAY_US_PPM_HOOK)
2097: The below logic doesn't raise error message if the transit code is
2098: '000000000'. Logically it's valid but it's not a valid transit code.*/
2099: if (NVL(FND_PROFILE.VALUE('PAY_US_NACHA_IAT'),'N')='N') then
2100: if (p_segment4 = '000000000') then
2101: l_exa_user_error := true;
2102: l_user_error := true;
2103: fnd_message.set_name('PAY', 'PAY_50043_INVALID_TRANSIT_CODE');

Line 2470: fnd_profile.put('PAY_US_NACHA_IAT',p_ppm_information4);

2466:
2467: /*Store the session into FND_SESSIONS and profile PAY_US_NACHA_IAT.
2468: *This is required to derive the segments of the DFFs*/
2469: pay_ppmv4_ss.store_session(trunc(p_effective_date));
2470: fnd_profile.put('PAY_US_NACHA_IAT',p_ppm_information4);
2471: --
2472: -- Check the PPM state to determine which API call to make.
2473: --
2474: seterrorstage(l_proc,'Calling ...hr_personal_pay_method_api.create_personal_pay_method',20);