DBA Data[Home] [Help]

APPS.AMS_COPYELEMENTS_PVT dependencies on IBC_ASSOCIATIONS

Line 4338: FROM ibc_associations

4334: IS
4335:
4336: CURSOR c_get_assoc IS
4337: SELECT content_item_id
4338: FROM ibc_associations
4339: WHERE association_type_code = p_src_act_type
4340: AND ASSOCIATED_OBJECT_VAL1 = to_char(p_src_act_id); -- fix for bug # 4145845
4341:
4342:

Line 4357: IBC_ASSOCIATIONS_GRP.Create_Association (

4353: LOOP
4354: FETCH c_get_assoc INTO l_content_item_id;
4355: EXIT WHEN c_get_assoc%NOTFOUND;
4356:
4357: IBC_ASSOCIATIONS_GRP.Create_Association (
4358: p_api_version => 1.0,
4359: p_assoc_type_code => nvl(p_new_act_type, p_src_act_type),
4360: p_assoc_object1 => p_new_act_id,
4361: p_content_item_id => l_content_item_id,