DBA Data[Home] [Help]

APPS.PQH_TCT_WIZARD_PKG dependencies on STANDARD

Line 7: -- This function checks if standard setup is already complete for the

3: --
4: --
5: -----------------------------------------------------------------------------
6: --
7: -- This function checks if standard setup is already complete for the
8: -- transaction category and returns TRUE if standard setup is complete .
9: -- It returns FALSE if standard setup has not yet been done.
10: --
11: Function chk_if_setup_finish(p_transaction_category_id in number,

Line 8: -- transaction category and returns TRUE if standard setup is complete .

4: --
5: -----------------------------------------------------------------------------
6: --
7: -- This function checks if standard setup is already complete for the
8: -- transaction category and returns TRUE if standard setup is complete .
9: -- It returns FALSE if standard setup has not yet been done.
10: --
11: Function chk_if_setup_finish(p_transaction_category_id in number,
12: p_setup_type out nocopy varchar2)

Line 9: -- It returns FALSE if standard setup has not yet been done.

5: -----------------------------------------------------------------------------
6: --
7: -- This function checks if standard setup is already complete for the
8: -- transaction category and returns TRUE if standard setup is complete .
9: -- It returns FALSE if standard setup has not yet been done.
10: --
11: Function chk_if_setup_finish(p_transaction_category_id in number,
12: p_setup_type out nocopy varchar2)
13: Return Boolean

Line 17: -- part of the setup is complete. Can have values of STANDARD/ADVANCED/NULL

13: Return Boolean
14: IS
15: --
16: -- Set_up flag is a new field in pqh_transaction_categories which tells us what
17: -- part of the setup is complete. Can have values of STANDARD/ADVANCED/NULL
18: --
19: l_freeze_status_cd pqh_transaction_categories.freeze_status_cd%type;
20: l_set_up_flag pqh_transaction_categories.setup_type_cd%type;
21: --

Line 42: -- Check if the Standard or Advanced Setup was completed.

38: p_setup_type := l_set_up_flag;
39: --
40: -- if the category is frozen , it means that the setup was
41: -- successful.
42: -- Check if the Standard or Advanced Setup was completed.
43: --
44: If l_freeze_status_cd = 'FREEZE_CATEGORY' AND
45: (l_set_up_flag = 'STANDARD' or l_set_up_flag = 'ADVANCED') then
46: return TRUE;

Line 45: (l_set_up_flag = 'STANDARD' or l_set_up_flag = 'ADVANCED') then

41: -- successful.
42: -- Check if the Standard or Advanced Setup was completed.
43: --
44: If l_freeze_status_cd = 'FREEZE_CATEGORY' AND
45: (l_set_up_flag = 'STANDARD' or l_set_up_flag = 'ADVANCED') then
46: return TRUE;
47: --
48: End if;
49: --

Line 2767: -- This function checks if there are any errors in standard setup and returns false in case

2763: hr_general.g_data_migrator_mode := l_data_migrator_mode;
2764: end load_row;
2765: --------------------------------------------------------------------------------------------
2766: --
2767: -- This function checks if there are any errors in standard setup and returns false in case
2768: -- there are errors.
2769: --
2770: Function check_errors_in_std_setup(p_transaction_category_id in number,
2771: p_error_messages out nocopy warnings_tab)

Line 2804: -- There can be two type of errors in standard setup.

2800: --
2801: l_error_index number(10) := 0;
2802: Begin
2803: --
2804: -- There can be two type of errors in standard setup.
2805: -- 1) There is no default hierarchy
2806: -- 2) No enabled default approvers.
2807: --
2808: -- Obtain the routing style of the transcation category.