DBA Data[Home] [Help]

APPS.IBE_INV_DATABASE_TRIGGER_PVT dependencies on IBE_SEARCH_PVT

Line 38: IBE_Search_PVT.Item_Category_Inserted(

34: p_inventory_item_id => p_new_inventory_item_id ,
35: p_organization_id => p_new_organization_id); --Bug 2922902
36:
37: -- 2. Update IBE_CT_IMEDIA_SEARCH table
38: IBE_Search_PVT.Item_Category_Inserted(
39: new_category_id => p_new_category_id ,
40: new_category_set_id => p_new_category_set_id ,
41: new_inventory_item_id => p_new_inventory_item_id,
42: new_organization_id => p_new_organization_id );

Line 61: IBE_Search_PVT.Item_Category_Deleted(

57: p_inventory_item_id => p_old_inventory_item_id,
58: p_organization_id => p_old_organization_id); --Bug 2922902
59:
60: -- 2. Update IBE_CT_IMEDIA_SEARCH table
61: IBE_Search_PVT.Item_Category_Deleted(
62: old_category_id => p_old_category_id ,
63: old_category_set_id => p_old_category_set_id ,
64: old_inventory_item_id => p_old_inventory_item_id,
65: old_organization_id => p_old_organization_id );

Line 82: IBE_Search_PVT.Item_Category_Updated(

78: )
79: IS
80: BEGIN
81: -- 1. Update IBE_CT_IMEDIA_SEARCH table
82: IBE_Search_PVT.Item_Category_Updated(
83: old_category_id => p_old_category_id ,
84: old_category_set_id => p_old_category_set_id ,
85: old_inventory_item_id => p_old_inventory_item_id,
86: old_organization_id => p_old_organization_id ,

Line 111: IBE_Search_PVT.Item_Deleted(

107: p_inventory_item_id => p_old_inventory_item_id,
108: p_organization_id => p_old_organization_id );
109:
110: -- 3. Update IBE_CT_IMEDIA_SEARCH table
111: IBE_Search_PVT.Item_Deleted(
112: old_inventory_item_id => p_old_inventory_item_id,
113: old_organization_id => p_old_organization_id );
114:
115: -- 4. Update IBE_DSP_OBJ_LGL_CTNT table

Line 145: IBE_Search_PVT.Item_Updated(

141: p_organization_id => p_old_organization_id );
142: END IF;
143:
144: -- 3. Update search table
145: IBE_Search_PVT.Item_Updated(
146: old_inventory_item_id => p_old_inventory_item_id,
147: old_organization_id => p_old_organization_id ,
148: old_web_status => p_old_web_status,
149: new_web_status => p_new_web_status

Line 166: IBE_Search_PVT.ItemTL_Inserted(

162: )
163: IS
164: BEGIN
165: -- 1. Update IBE_CT_IMEDIA_SEARCH table
166: IBE_Search_PVT.ItemTL_Inserted(
167: new_inventory_item_id => p_new_inventory_item_id,
168: new_organization_id => p_new_organization_id ,
169: new_language => p_new_language ,
170: new_description => p_new_description ,

Line 183: IBE_Search_PVT.ItemTL_Deleted(

179: )
180: IS
181: BEGIN
182: -- 1. Update IBE_CT_IMEDIA_SEARCH table
183: IBE_Search_PVT.ItemTL_Deleted(
184: old_inventory_item_id => p_old_inventory_item_id,
185: old_organization_id => p_old_organization_id ,
186: old_language => p_old_language );
187: END MTL_System_Items_TL_Deleted;

Line 203: IBE_Search_PVT.ItemTL_Updated(

199: )
200: IS
201: BEGIN
202: -- 1. Update IBE_CT_IMEDIA_SEARCH table
203: IBE_Search_PVT.ItemTL_Updated(
204: old_inventory_item_id => p_old_inventory_item_id,
205: old_organization_id => p_old_organization_id ,
206: old_language => p_old_language ,
207: new_language => p_new_language ,