DBA Data[Home] [Help]

APPS.XLA_CMP_TAB_PKG dependencies on XLA_CMP_COMMON_PKG

Line 1313: g_application_info xla_cmp_common_pkg.lt_application_info;

1309: g_req_id CONSTANT INTEGER := NVL(xla_environment_pkg.g_req_id, -1);
1310:
1311:
1312:
1313: g_application_info xla_cmp_common_pkg.lt_application_info;
1314: g_user_name VARCHAR2(2000); --100 in the table
1315: g_tab_api_package_name VARCHAR2(30); --length validation is important
1316: --
1317:

Line 1566: lr_application_info xla_cmp_common_pkg.lt_application_info;

1562: IS
1563: l_return_value BOOLEAN;
1564:
1565: l_user_name VARCHAR2(30);
1566: lr_application_info xla_cmp_common_pkg.lt_application_info;
1567: l_log_module VARCHAR2 (2000);
1568:
1569: BEGIN
1570: IF g_log_enabled THEN

Line 1668: xla_cmp_common_pkg.G_COMPILE_STATUS_CODE_COMPILED

1664:
1665: --Assign the new compile_status_code to the TATs
1666: UPDATE xla_tab_acct_types_b xtat
1667: SET xtat.compile_status_code =
1668: xla_cmp_common_pkg.G_COMPILE_STATUS_CODE_COMPILED
1669: WHERE xtat.application_id = p_application_id
1670: AND xtat.enabled_flag = 'Y'
1671: AND xtat.compile_status_code IS NOT NULL;
1672:

Line 1767: --Retrieve and set the User Name (xla_cmp_common_pkg.get_user_name)

1763: END IF;
1764:
1765: l_return_value := TRUE;
1766: /*
1767: --Retrieve and set the User Name (xla_cmp_common_pkg.get_user_name)
1768: --Set the application id
1769: --Retrieve and set the Application Information (xla_cmp_common_pkg.get_application_info)
1770: --Build and set the Transaction Account Builder package name (get_tab_api_package_name)
1771: --Retrieve and set the object name affixes (read_distinct_affixes)

Line 1769: --Retrieve and set the Application Information (xla_cmp_common_pkg.get_application_info)

1765: l_return_value := TRUE;
1766: /*
1767: --Retrieve and set the User Name (xla_cmp_common_pkg.get_user_name)
1768: --Set the application id
1769: --Retrieve and set the Application Information (xla_cmp_common_pkg.get_application_info)
1770: --Build and set the Transaction Account Builder package name (get_tab_api_package_name)
1771: --Retrieve and set the object name affixes (read_distinct_affixes)
1772: */
1773: --Retrieve current user name

Line 1774: IF NOT xla_cmp_common_pkg.get_user_name

1770: --Build and set the Transaction Account Builder package name (get_tab_api_package_name)
1771: --Retrieve and set the object name affixes (read_distinct_affixes)
1772: */
1773: --Retrieve current user name
1774: IF NOT xla_cmp_common_pkg.get_user_name
1775: (
1776: p_user_id => g_user_id
1777: ,p_user_name => g_user_name
1778: )

Line 1790: IF NOT xla_cmp_common_pkg.get_application_info

1786: END IF;
1787: END IF;
1788:
1789: --Retrieve and set the application info
1790: IF NOT xla_cmp_common_pkg.get_application_info
1791: (
1792: p_application_id => p_application_id
1793: ,p_application_info => g_application_info
1794: )

Line 2844: l_package_body_text := xla_cmp_common_pkg.replace_token

2840: l_return_value := FALSE;
2841: END IF;
2842:
2843: --replace the write procedure implementations token
2844: l_package_body_text := xla_cmp_common_pkg.replace_token
2845: (
2846: p_original_text => l_package_body_text
2847: ,p_token => '$TAB_WRITE_PROC_IMPLS$'
2848: ,p_replacement_text => l_write_proc_impls

Line 2859: l_package_body_text := xla_cmp_common_pkg.replace_token

2855: ,p_level => C_LEVEL_STATEMENT);
2856: END IF;
2857:
2858: --replace the read procedure implementations token
2859: l_package_body_text := xla_cmp_common_pkg.replace_token
2860: (
2861: p_original_text => l_package_body_text
2862: ,p_token => '$TAB_READ_PROC_IMPLS$'
2863: ,p_replacement_text => l_read_proc_impls

Line 2874: l_package_body_text := xla_cmp_common_pkg.replace_token

2870: ,p_level => C_LEVEL_STATEMENT);
2871: END IF;
2872:
2873: --replace the reset online interface statements token
2874: l_package_body_text := xla_cmp_common_pkg.replace_token
2875: (
2876: p_original_text => l_package_body_text
2877: ,p_token => '$RESET_ONLINE_INTERFACES_STMTS$'
2878: ,p_replacement_text => l_reset_interface_proc_stmts

Line 3650: xla_cmp_common_pkg.G_COMPILE_STATUS_CODE_COMPILED

3646: ,LPAD('A',32, 'A')
3647: )
3648: AND xtat.enabled_flag = 'Y'
3649: AND xtat.compile_status_code =
3650: xla_cmp_common_pkg.G_COMPILE_STATUS_CODE_COMPILED
3651: AND xtsrc.account_type_code = xtat.account_type_code
3652: AND xsb.application_id = xtsrc.source_application_id
3653: AND xsb.source_code = xtsrc.source_code
3654: AND xsb.source_type_code = xtsrc.source_type_code

Line 4198: = xla_cmp_common_pkg.G_COMPILE_STATUS_CODE_COMPILED

4194: INTO g_compiled_object_name_affixes
4195: FROM xla_tab_acct_types_b xtat
4196: WHERE xtat.application_id = g_application_info.application_id
4197: AND xtat.compile_status_code
4198: = xla_cmp_common_pkg.G_COMPILE_STATUS_CODE_COMPILED
4199: ORDER BY NVL(xtat.object_name_affix, ' ');
4200:
4201: --Dump the affixes that have been retrieved
4202: IF (C_LEVEL_STATEMENT >= g_log_level) THEN

Line 4274: xla_cmp_common_pkg.G_COMPILE_STATUS_CODE_DELETE;

4270: DELETE
4271: FROM xla_tab_acct_types_b xtat
4272: WHERE xtat.application_id = p_application_id
4273: AND xtat.compile_status_code =
4274: xla_cmp_common_pkg.G_COMPILE_STATUS_CODE_DELETE;
4275:
4276:
4277: IF (C_LEVEL_STATEMENT >= g_log_level) THEN
4278: trace