DBA Data[Home] [Help]

APPS.AME_CONDITION_API dependencies on FND_MESSAGE

Line 70: fnd_message.set_name('PER','AME_400494_INVALID_CONDITION');

66: hr_utility.set_location('Entering:'|| l_func, 10);
67: l_return_value := false;
68: if(p_condition_id is null) then
69: hr_utility.set_location('Leaving:'|| l_func, 20);
70: fnd_message.set_name('PER','AME_400494_INVALID_CONDITION');
71: fnd_message.raise_error;
72: else
73: open csr_atr_type;
74: fetch csr_atr_type into l_atr_type;

Line 71: fnd_message.raise_error;

67: l_return_value := false;
68: if(p_condition_id is null) then
69: hr_utility.set_location('Leaving:'|| l_func, 20);
70: fnd_message.set_name('PER','AME_400494_INVALID_CONDITION');
71: fnd_message.raise_error;
72: else
73: open csr_atr_type;
74: fetch csr_atr_type into l_atr_type;
75: if(csr_atr_type%found and l_atr_type = ame_util.stringAttributeType) then

Line 198: fnd_message.set_name('PER','AME_400525_STR_COND_EMPTY');

194: else
195: --
196: -- Raise an exception.Empty String Conditions cannot be created.
197: --
198: fnd_message.set_name('PER','AME_400525_STR_COND_EMPTY');
199: fnd_message.raise_error;
200: end if;
201: else
202: -- The condition is not based on string Attributes.

Line 199: fnd_message.raise_error;

195: --
196: -- Raise an exception.Empty String Conditions cannot be created.
197: --
198: fnd_message.set_name('PER','AME_400525_STR_COND_EMPTY');
199: fnd_message.raise_error;
200: end if;
201: else
202: -- The condition is not based on string Attributes.
203: -- Check for non empty String Value List and prompt the user

Line 205: fnd_message.set_name('PER','AME_400495_STRVAL_NON_STR_CON');

201: else
202: -- The condition is not based on string Attributes.
203: -- Check for non empty String Value List and prompt the user
204: if(p_string_value is not null ) then
205: fnd_message.set_name('PER','AME_400495_STRVAL_NON_STR_CON');
206: fnd_message.raise_error;
207: end if;
208: end if;
209: end if;

Line 206: fnd_message.raise_error;

202: -- The condition is not based on string Attributes.
203: -- Check for non empty String Value List and prompt the user
204: if(p_string_value is not null ) then
205: fnd_message.set_name('PER','AME_400495_STRVAL_NON_STR_CON');
206: fnd_message.raise_error;
207: end if;
208: end if;
209: end if;
210: --

Line 536: fnd_message.set_name('PER', 'AME_400193_CON_IN USE');

532: open csr_rules(p_condition_id);
533: fetch csr_rules into l_key;
534: if(csr_rules%found) then
535: close csr_rules;
536: fnd_message.set_name('PER', 'AME_400193_CON_IN USE');
537: fnd_message.raise_error;
538: else
539: close csr_rules;
540: -- Determine if the condition is based on string attributes. If yes, call

Line 537: fnd_message.raise_error;

533: fetch csr_rules into l_key;
534: if(csr_rules%found) then
535: close csr_rules;
536: fnd_message.set_name('PER', 'AME_400193_CON_IN USE');
537: fnd_message.raise_error;
538: else
539: close csr_rules;
540: -- Determine if the condition is based on string attributes. If yes, call
541: -- the deleteAllStringValues api to delete associated string values