DBA Data[Home] [Help]

APPS.AR_CMGT_PARTY_MERGE dependencies on AR_CMGT_CREDIT_REQUESTS

Line 56: UPDATE ar_cmgt_credit_requests

52: transfer and return the id of the duplicate record as the Merged To Id.*/
53:
54: if p_from_FK_id <> p_to_FK_id then
55: if p_parent_entity_name = 'HZ_PARTIES' then
56: UPDATE ar_cmgt_credit_requests
57: set party_id = p_To_FK_id
58: WHERE party_id = p_from_fk_id;
59: end if;
60: end if;

Line 121: UPDATE ar_cmgt_credit_requests

117: transfer and return the id of the duplicate record as the Merged To Id.*/
118:
119: if p_from_FK_id <> p_to_FK_id then
120: if p_parent_entity_name = 'HZ_PARTIES' then
121: UPDATE ar_cmgt_credit_requests
122: set contact_party_id = p_To_FK_id
123: WHERE contact_party_id = p_from_fk_id
124: AND contact_party_id IS NOT NULL;
125: end if;