DBA Data[Home] [Help]

APPS.PAY_NL_GENERAL dependencies on FND_MESSAGE

Line 74: fnd_message.set_name(p_product, p_message_name);

70: --
71: hr_utility.set_location('Entered '||l_proc,5);
72: hr_utility.set_location('. Message Name: '||p_message_name,40);
73:
74: fnd_message.set_name(p_product, p_message_name);
75:
76: if p_token1 is not null then
77: /* Obtain token 1 name and value */
78: l_colon_position := instr(p_token1,':');

Line 81: fnd_message.set_token(l_token_name, l_token_value);

77: /* Obtain token 1 name and value */
78: l_colon_position := instr(p_token1,':');
79: l_token_name := substr(p_token1,1,l_colon_position-1);
80: l_token_value := substr(p_token1,l_colon_position+1,length(p_token1));
81: fnd_message.set_token(l_token_name, l_token_value);
82: hr_utility.set_location('. Token1: '||l_token_name||'. Value: '||l_token_value,50);
83: end if;
84:
85: if p_token2 is not null then

Line 90: fnd_message.set_token(l_token_name, l_token_value);

86: /* Obtain token 2 name and value */
87: l_colon_position := instr(p_token2,':');
88: l_token_name := substr(p_token2,1,l_colon_position-1);
89: l_token_value := substr(p_token2,l_colon_position+1,length(p_token2));
90: fnd_message.set_token(l_token_name, l_token_value);
91: hr_utility.set_location('. Token2: '||l_token_name||'. Value: '||l_token_value,60);
92: end if;
93:
94: if p_token3 is not null then

Line 99: fnd_message.set_token(l_token_name, l_token_value);

95: /* Obtain token 3 name and value */
96: l_colon_position := instr(p_token3,':');
97: l_token_name := substr(p_token3,1,l_colon_position-1);
98: l_token_value := substr(p_token3,l_colon_position+1,length(p_token3));
99: fnd_message.set_token(l_token_name, l_token_value);
100: hr_utility.set_location('. Token3: '||l_token_name||'. Value: '||l_token_value,70);
101: end if;
102:
103: l_message := substrb(fnd_message.get,1,254);

Line 103: l_message := substrb(fnd_message.get,1,254);

99: fnd_message.set_token(l_token_name, l_token_value);
100: hr_utility.set_location('. Token3: '||l_token_name||'. Value: '||l_token_value,70);
101: end if;
102:
103: l_message := substrb(fnd_message.get,1,254);
104:
105: hr_utility.set_location('leaving '||l_proc,100);
106:
107: return l_message;

Line 1027: fnd_message.set_name('PAY','FFX03A_FORMULA_NOT_FOUND');

1023: IF c_compiled_formula_exist%NOTFOUND THEN
1024: p_formula_cached := FALSE;
1025: p_formula_exists := FALSE;
1026: --
1027: fnd_message.set_name('PAY','FFX03A_FORMULA_NOT_FOUND');
1028: fnd_message.set_token('1', p_formula_name);
1029: fnd_message.raise_error;
1030: ELSE
1031: p_formula_cached := TRUE;

Line 1028: fnd_message.set_token('1', p_formula_name);

1024: p_formula_cached := FALSE;
1025: p_formula_exists := FALSE;
1026: --
1027: fnd_message.set_name('PAY','FFX03A_FORMULA_NOT_FOUND');
1028: fnd_message.set_token('1', p_formula_name);
1029: fnd_message.raise_error;
1030: ELSE
1031: p_formula_cached := TRUE;
1032: p_formula_exists := TRUE;

Line 1029: fnd_message.raise_error;

1025: p_formula_exists := FALSE;
1026: --
1027: fnd_message.set_name('PAY','FFX03A_FORMULA_NOT_FOUND');
1028: fnd_message.set_token('1', p_formula_name);
1029: fnd_message.raise_error;
1030: ELSE
1031: p_formula_cached := TRUE;
1032: p_formula_exists := TRUE;
1033: END IF;

Line 1093: fnd_message.set_name('PER','FFX22J_FORMULA_NOT_FOUND');

1089: END IF;
1090: hr_utility.set_location('--Leaving Formula ',21);
1091: EXCEPTION
1092: WHEN hr_formula_error THEN
1093: fnd_message.set_name('PER','FFX22J_FORMULA_NOT_FOUND');
1094: fnd_message.set_token('1', p_formula_name);
1095: fnd_message.raise_error;
1096: WHEN OTHERS THEN
1097: raise;

Line 1094: fnd_message.set_token('1', p_formula_name);

1090: hr_utility.set_location('--Leaving Formula ',21);
1091: EXCEPTION
1092: WHEN hr_formula_error THEN
1093: fnd_message.set_name('PER','FFX22J_FORMULA_NOT_FOUND');
1094: fnd_message.set_token('1', p_formula_name);
1095: fnd_message.raise_error;
1096: WHEN OTHERS THEN
1097: raise;
1098: --

Line 1095: fnd_message.raise_error;

1091: EXCEPTION
1092: WHEN hr_formula_error THEN
1093: fnd_message.set_name('PER','FFX22J_FORMULA_NOT_FOUND');
1094: fnd_message.set_token('1', p_formula_name);
1095: fnd_message.raise_error;
1096: WHEN OTHERS THEN
1097: raise;
1098: --
1099: END run_formula;

Line 2952: l_message := substrb(fnd_message.get_string('PAY','HR_NL_ADJ_TO_CORR'),1,300); --9453856

2948: WHEN OTHERS then
2949: hr_utility.trace('SQLERRM:'||substr(sqlerrm,1,200));
2950: hr_utility.set_location('Leaving NL_ADJUST_TO_CORRECTION',330);
2951: --raise_application_error(-20001, 'This process does not correlate with the note id 558457.1.') ;
2952: l_message := substrb(fnd_message.get_string('PAY','HR_NL_ADJ_TO_CORR'),1,300); --9453856
2953: fnd_file.put_line(fnd_file.log,l_message);
2954: error_message := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_message);
2955:
2956: END NL_ADJUST_TO_CORRECTION;