DBA Data[Home] [Help]

APPS.PER_FR_UPGRADE_DATA_PKG dependencies on FND_MESSAGE

Line 29: -- This PROCEDURE is used to obtain a fnd message and write it out to

25: end write_log;
26:
27: ------------------------------------------------------------------------
28: -- PROCEDURE WRITE_LOG_MESSAGE
29: -- This PROCEDURE is used to obtain a fnd message and write it out to
30: -- the concurrent manager log file.
31: -- The token parameters must be of the form 'TOKEN_NAME:TOKEN_VALUE' i.e.
32: -- If you want to set the value of a token called EMPLOYEE to 'Bill Smith'
33: -- the token parameter would be 'EMPLOYEE:Bill Smith'

Line 51: fnd_message.set_name('PER', p_message_name);

47: --
48: hr_utility.set_location('Entered '||l_proc,5);
49: hr_utility.set_location('. Message Name: '||p_message_name,40);
50:
51: fnd_message.set_name('PER', p_message_name);
52:
53: if p_token1 is not null then
54: /* Obtain token 1 name and value */
55: l_colon_position := instr(p_token1,':');

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

54: /* Obtain token 1 name and value */
55: l_colon_position := instr(p_token1,':');
56: l_token_name := substr(p_token1,1,l_colon_position-1);
57: l_token_value := substr(p_token1,l_colon_position+1,length(p_token1));
58: fnd_message.set_token(l_token_name, l_token_value);
59: hr_utility.set_location('. Token1: '||l_token_name||'. Value: '||l_token_value,50);
60: end if;
61:
62: if p_token2 is not null then

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

63: /* Obtain token 2 name and value */
64: l_colon_position := instr(p_token2,':');
65: l_token_name := substr(p_token2,1,l_colon_position-1);
66: l_token_value := substr(p_token2,l_colon_position+1,length(p_token2));
67: fnd_message.set_token(l_token_name, l_token_value);
68: hr_utility.set_location('. Token2: '||l_token_name||'. Value: '||l_token_value,60);
69: end if;
70:
71: if p_token3 is not null then

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

72: /* Obtain token 3 name and value */
73: l_colon_position := instr(p_token3,':');
74: l_token_name := substr(p_token3,1,l_colon_position-1);
75: l_token_value := substr(p_token3,l_colon_position+1,length(p_token3));
76: fnd_message.set_token(l_token_name, l_token_value);
77: hr_utility.set_location('. Token3: '||l_token_name||'. Value: '||l_token_value,70);
78: end if;
79:
80: l_message := fnd_message.get;

Line 80: l_message := fnd_message.get;

76: fnd_message.set_token(l_token_name, l_token_value);
77: hr_utility.set_location('. Token3: '||l_token_name||'. Value: '||l_token_value,70);
78: end if;
79:
80: l_message := fnd_message.get;
81:
82: fnd_file.put_line(FND_FILE.LOG,substrb(l_message,1,1024));
83:
84: hr_utility.set_location('leaving '||l_proc,100);