DBA Data[Home] [Help]

APPS.PAY_EVQ_BUS dependencies on HR_UTILITY

Line 41: hr_utility.set_location('Entering:'|| l_proc, 10);

37: l_proc varchar2(72) := g_package||'set_security_group_id';
38: --
39: begin
40: --
41: hr_utility.set_location('Entering:'|| l_proc, 10);
42: --
43: -- Ensure that all the mandatory parameter are not null
44: --
45: hr_api.mandatory_arg_error

Line 76: hr_utility.set_location(' Leaving:'|| l_proc, 20);

72: (p_security_group_id => l_security_group_id
73: );
74: end if;
75: --
76: hr_utility.set_location(' Leaving:'|| l_proc, 20);
77: --
78: end set_security_group_id;
79: --
80: -- ---------------------------------------------------------------------------

Line 105: hr_utility.set_location('Entering:'|| l_proc, 10);

101: l_proc varchar2(72) := g_package||'return_legislation_code';
102: --
103: Begin
104: --
105: hr_utility.set_location('Entering:'|| l_proc, 10);
106: --
107: -- Ensure that all the mandatory parameter are not null
108: --
109: hr_api.mandatory_arg_error

Line 123: hr_utility.set_location(l_proc, 20);

119: -- call to this function. Just return the value in the global
120: -- variable.
121: --
122: l_legislation_code := pay_evq_bus.g_legislation_code;
123: hr_utility.set_location(l_proc, 20);
124: else
125: --
126: -- The ID is different to the last call to this function
127: -- or this is the first call to this function.

Line 140: hr_utility.set_location(l_proc,30);

136: close csr_leg_code;
137: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
138: fnd_message.raise_error;
139: end if;
140: hr_utility.set_location(l_proc,30);
141: --
142: -- Set the global variables so the values are
143: -- available for the next call to this function.
144: --

Line 149: hr_utility.set_location(' Leaving:'|| l_proc, 40);

145: close csr_leg_code;
146: pay_evq_bus.g_event_qualifier_id := p_event_qualifier_id;
147: pay_evq_bus.g_legislation_code := l_legislation_code;
148: end if;
149: hr_utility.set_location(' Leaving:'|| l_proc, 40);
150: return l_legislation_code;
151: end return_legislation_code;
152: --
153: -- ----------------------------------------------------------------------------

Line 469: hr_utility.set_location('Entering:'||l_proc, 5);

465: -- Call the supporting procedure to check startup mode
466: -- EDIT_HERE: The following call should be edited if certain types of rows
467: -- are not permitted.
468:
469: hr_utility.set_location('Entering:'||l_proc, 5);
470:
471: IF (p_insert) THEN
472: hr_startup_data_api_support.chk_startup_action
473: (p_generic_allowed => TRUE

Line 491: hr_utility.set_location('Leaving:'||l_proc, 10);

487: ,p_legislation_subgroup => p_legislation_subgroup
488: );
489: END IF;
490: --
491: hr_utility.set_location('Leaving:'||l_proc, 10);
492: END chk_startup_action;
493: -- ----------------------------------------------------------------------------
494: -- |---------------------------< chk_tab_col >----------------------------|
495: -- ----------------------------------------------------------------------------

Line 528: hr_utility.set_location('Entering:'||l_proc, 5);

524: where dated_table_id = p_rec.dated_table_id;
525: --
526: Begin
527: --
528: hr_utility.set_location('Entering:'||l_proc, 5);
529: --
530: hr_api.mandatory_arg_error
531: (p_api_name => l_proc
532: ,p_argument => 'dated_table_id'

Line 550: hr_utility.set_location(' Leaving:'||l_proc, 10);

546:
547: fnd_message.raise_error;
548: End If;
549: --
550: hr_utility.set_location(' Leaving:'||l_proc, 10);
551: end chk_tab_col;
552:
553: --
554: -- ----------------------------------------------------------------------------

Line 568: hr_utility.set_location('Entering:'||l_proc, 5);

564: --
565: l_proc varchar2(72) := g_package||'insert_validate';
566: --
567: Begin
568: hr_utility.set_location('Entering:'||l_proc, 5);
569:
570: --
571: -- Call all supporting business operations
572: --

Line 606: hr_utility.set_location(' Leaving:'||l_proc, 10);

602: --
603: -- Check table and column that this qualifier is associated are valid.
604: chk_tab_col (p_rec => p_rec);
605: --
606: hr_utility.set_location(' Leaving:'||l_proc, 10);
607: End insert_validate;
608: --
609: -- ----------------------------------------------------------------------------
610: -- |---------------------------< update_validate >----------------------------|

Line 623: hr_utility.set_location('Entering:'||l_proc, 5);

619: --
620: l_proc varchar2(72) := g_package||'update_validate';
621: --
622: Begin
623: hr_utility.set_location('Entering:'||l_proc, 5);
624: --
625: -- Call all supporting business operations
626: --
627: --

Line 669: hr_utility.set_location(' Leaving:'||l_proc, 10);

665: ,p_rec => p_rec
666: );
667: --
668: --
669: hr_utility.set_location(' Leaving:'||l_proc, 10);
670: End update_validate;
671: --
672: -- ----------------------------------------------------------------------------
673: -- |---------------------------< delete_validate >----------------------------|

Line 686: hr_utility.set_location('Entering:'||l_proc, 5);

682: --
683: l_proc varchar2(72) := g_package||'delete_validate';
684: --
685: Begin
686: hr_utility.set_location('Entering:'||l_proc, 5);
687: --
688: --
689: chk_startup_action(false
690: ,pay_evq_shd.g_old_rec.business_group_id

Line 715: hr_utility.set_location(' Leaving:'||l_proc, 10);

711: ,p_validation_end_date => p_validation_end_date
712: ,p_event_qualifier_id => p_rec.event_qualifier_id
713: );
714: --
715: hr_utility.set_location(' Leaving:'||l_proc, 10);
716: End delete_validate;
717: --
718: end pay_evq_bus;