DBA Data[Home] [Help]

APPS.PQH_TCT_BUS dependencies on PQH_TRANSACTION_CATEGORIES

Line 56: pqh_tct_shd.constraint_error('PQH_TRANSACTION_CATEGORIES_PK');

52: <> pqh_tct_shd.g_old_rec.transaction_category_id) then
53: --
54: -- raise error as PK has changed
55: --
56: pqh_tct_shd.constraint_error('PQH_TRANSACTION_CATEGORIES_PK');
57: --
58: elsif not l_api_updating then
59: --
60: -- check if PK is null

Line 66: pqh_tct_shd.constraint_error('PQH_TRANSACTION_CATEGORIES_PK');

62: if p_transaction_category_id is not null then
63: --
64: -- raise error as PK is not null
65: --
66: pqh_tct_shd.constraint_error('PQH_TRANSACTION_CATEGORIES_PK');
67: --
68: end if;
69: --
70: end if;

Line 139: pqh_tct_shd.constraint_error('PQH_TRANSACTION_CATEGORIES_FK1');

135: --
136: -- raise error as FK does not relate to PK in pqh_table_route
137: -- table.
138: --
139: pqh_tct_shd.constraint_error('PQH_TRANSACTION_CATEGORIES_FK1');
140: --
141: end if;
142: --
143: close c1;

Line 216: pqh_tct_shd.constraint_error('PQH_TRANSACTION_CATEGORIES_FK2');

212: --
213: -- raise error as FK does not relate to PK in pqh_table_route
214: -- table.
215: --
216: pqh_tct_shd.constraint_error('PQH_TRANSACTION_CATEGORIES_FK2');
217: --
218: --
219: end if;
220: --

Line 1422: l_short_name pqh_transaction_categories.short_name%type;

1418: --
1419: --
1420: l_dummy varchar2(1);
1421: l_proc varchar2(72) := g_package||'chk_active_transaction_exists';
1422: l_short_name pqh_transaction_categories.short_name%type;
1423: --
1424: Begin
1425: --
1426: hr_utility.set_location('Entering:'||l_proc, 5);

Line 1430: From pqh_transaction_categories

1426: hr_utility.set_location('Entering:'||l_proc, 5);
1427: --
1428: Select short_name
1429: into l_short_name
1430: From pqh_transaction_categories
1431: Where transaction_category_id = p_transaction_category_id;
1432: --
1433: if l_short_name is not null then
1434: l_dummy := chk_active_transaction_exists(p_short_name => l_short_name,

Line 1459: From pqh_transaction_categories tct,pqh_table_route tr

1455: l_new_where pqh_table_route.where_clause%type;
1456: --
1457: Cursor c1 is
1458: Select tr.from_clause,tr.table_alias,tr.where_clause
1459: From pqh_transaction_categories tct,pqh_table_route tr
1460: Where tct.transaction_category_id = p_transaction_category_id
1461: AND tct.consolidated_table_route_id = tr.table_route_id;
1462: --
1463: l_check_flag varchar2(1) := 'N';