DBA Data[Home] [Help]

APPS.PER_BUDGETS_PKG dependencies on HR_API

Line 368: hr_api.validate_bus_grp_id(X_Business_Group_Id);

364: --hr_utility.trace_on;
365: hr_utility.set_location('Entering:'||l_proc, 5);
366: --
367: -- validate mandatory business_group
368: hr_api.validate_bus_grp_id(X_Business_Group_Id);
369: --
370: -- validate mandatory period_set_name
371: hr_api.mandatory_arg_error
372: (p_api_name => l_proc,

Line 371: hr_api.mandatory_arg_error

367: -- validate mandatory business_group
368: hr_api.validate_bus_grp_id(X_Business_Group_Id);
369: --
370: -- validate mandatory period_set_name
371: hr_api.mandatory_arg_error
372: (p_api_name => l_proc,
373: p_argument => 'period_set_name',
374: p_argument_value => X_Period_Set_Name);
375:

Line 379: hr_api.mandatory_arg_error

375:
376: chk_period_set_name(X_Period_Set_Name);
377: --
378: -- validate mandatory name
379: hr_api.mandatory_arg_error
380: (p_api_name => l_proc,
381: p_argument => 'name',
382: p_argument_value => X_Name);
383: --

Line 400: hr_api.mandatory_arg_error

396: -- Set name field to x_name ||'-'|| budget_id for OTA.
397: l_name := X_Name ||'-'||to_char(X_budget_id);
398:
399: -- validate mandatory unit
400: hr_api.mandatory_arg_error
401: (p_api_name => l_proc,
402: p_argument => 'unit',
403: p_argument_value => X_Unit);
404:

Line 738: hr_api.validate_bus_grp_id(X_Business_Group_Id);

734: --
735: hr_utility.set_location('Entering:'||l_proc, 5);
736: --
737: -- validate mandatory business_group
738: hr_api.validate_bus_grp_id(X_Business_Group_Id);
739:
740: -- validate mandatory budget_id
741: hr_api.mandatory_arg_error
742: (p_api_name => l_proc,

Line 741: hr_api.mandatory_arg_error

737: -- validate mandatory business_group
738: hr_api.validate_bus_grp_id(X_Business_Group_Id);
739:
740: -- validate mandatory budget_id
741: hr_api.mandatory_arg_error
742: (p_api_name => l_proc,
743: p_argument => 'budget_id',
744: p_argument_value => X_Budget_Id);
745:

Line 747: hr_api.mandatory_arg_error

743: p_argument => 'budget_id',
744: p_argument_value => X_Budget_Id);
745:
746: -- validate mandatory rowid
747: hr_api.mandatory_arg_error
748: (p_api_name => l_proc,
749: p_argument => 'rowid',
750: p_argument_value => X_rowid);
751:

Line 753: hr_api.mandatory_arg_error

749: p_argument => 'rowid',
750: p_argument_value => X_rowid);
751:
752: -- validate mandatory period_set_name
753: hr_api.mandatory_arg_error
754: (p_api_name => l_proc,
755: p_argument => 'period_set_name',
756: p_argument_value => X_Period_Set_Name);
757:

Line 762: hr_api.mandatory_arg_error

758: chk_period_set_name(X_Period_Set_Name);
759:
760: -- validate mandatory name
761:
762: hr_api.mandatory_arg_error
763: (p_api_name => l_proc,
764: p_argument => 'name',
765: p_argument_value => X_Name);
766:

Line 776: hr_api.mandatory_arg_error

772: -- check measurement_type exists if OTA_BUDGET record
773: -- nb. UNIT should not be null if OTA_BUDGET type
774: IF UPPER(X_Budget_Type_Code) = 'OTA_BUDGET' THEN
775:
776: hr_api.mandatory_arg_error
777: (p_api_name => l_proc,
778: p_argument => 'unit',
779: p_argument_value => X_Unit);
780: