DBA Data[Home] [Help]

APPS.PER_NEW_HIRE_PKG dependencies on FND_FILE

Line 5227: fnd_file.put_line

5223: l_not_allowed VARCHAR2(100) := '''`;"|\-+=_#$%^&*@!~:<>?/()[]{},.';
5224: BEGIN
5225:
5226: if instr(p_allowed,'`') <> 0 then
5227: fnd_file.put_line
5228: (which => fnd_file.log,
5229: buff => 'ERROR: ` is included in the list of allowed characters');
5230: RAISE hr_utility.hr_error;
5231: end if;

Line 5228: (which => fnd_file.log,

5224: BEGIN
5225:
5226: if instr(p_allowed,'`') <> 0 then
5227: fnd_file.put_line
5228: (which => fnd_file.log,
5229: buff => 'ERROR: ` is included in the list of allowed characters');
5230: RAISE hr_utility.hr_error;
5231: end if;
5232: if p_allowed IS NOT NULL then

Line 5255: fnd_file.put_line

5251: IS
5252: BEGIN
5253: IF (p_string IS NULL) or ((length(trim(p_string)) < p_length))
5254: THEN
5255: fnd_file.put_line
5256: (which => fnd_file.log,
5257: buff => 'ERROR: '||p_field||' must be a minimum of '||p_length||' characters for '||p_state);
5258: RAISE hr_utility.hr_error;
5259: END IF;

Line 5256: (which => fnd_file.log,

5252: BEGIN
5253: IF (p_string IS NULL) or ((length(trim(p_string)) < p_length))
5254: THEN
5255: fnd_file.put_line
5256: (which => fnd_file.log,
5257: buff => 'ERROR: '||p_field||' must be a minimum of '||p_length||' characters for '||p_state);
5258: RAISE hr_utility.hr_error;
5259: END IF;
5260: END;