DBA Data[Home] [Help]

APPS.SSP_ERN_BUS dependencies on FND_MESSAGE

Line 41: fnd_message.set_name ('SSP' , 'SSP_35049_INV_PERSON_EFF_DATE' );

37: hr_utility.set_location('Entering:'||l_proc, 1);
38: open c1;
39: fetch c1 into c1_rec;
40: if c1%NOTFOUND then
41: fnd_message.set_name ('SSP' , 'SSP_35049_INV_PERSON_EFF_DATE' );
42: fnd_message.raise_error;
43: end if;
44: close c1;
45: hr_utility.set_location('Leaving :'||l_proc, 100);

Line 42: fnd_message.raise_error;

38: open c1;
39: fetch c1 into c1_rec;
40: if c1%NOTFOUND then
41: fnd_message.set_name ('SSP' , 'SSP_35049_INV_PERSON_EFF_DATE' );
42: fnd_message.raise_error;
43: end if;
44: close c1;
45: hr_utility.set_location('Leaving :'||l_proc, 100);
46: End check_person_id;

Line 77: fnd_message.set_name ('SSP' , 'SSP_35050_INV_EFFECTIVE_DATE' );

73:
74: open c2;
75: fetch c2 into c2_rec;
76: if c2%NOTFOUND then
77: fnd_message.set_name ('SSP' , 'SSP_35050_INV_EFFECTIVE_DATE' );
78: fnd_message.raise_error;
79: end if;
80: close c2;
81: hr_utility.set_location('Leaving :'||l_proc, 100);

Line 78: fnd_message.raise_error;

74: open c2;
75: fetch c2 into c2_rec;
76: if c2%NOTFOUND then
77: fnd_message.set_name ('SSP' , 'SSP_35050_INV_EFFECTIVE_DATE' );
78: fnd_message.raise_error;
79: end if;
80: close c2;
81: hr_utility.set_location('Leaving :'||l_proc, 100);
82: END check_effective_date;

Line 986: fnd_message.set_name ('SSP',ssp_smp_support_pkg.reason_for_no_earnings);

982: hr_utility.set_location ('Leaving :'||l_proc||', exception',999);
983: --
984: p_average_earnings_amount := 0;
985: --
986: fnd_message.set_name ('SSP',ssp_smp_support_pkg.reason_for_no_earnings);
987: --
988: if p_user_entered = 'Y' then
989: --
990: -- We only fail the procedure if the user is entering the amount.

Line 994: fnd_message.raise_error;

990: -- We only fail the procedure if the user is entering the amount.
991: -- If the system is calculating it (eg as part of the SSP/SMP process)
992: -- then we must allow the process to continue and handle the error
993: --
994: fnd_message.raise_error;
995: end if;
996: --
997: end calculate_average_earnings;
998: