ALERTS
1.Party Merge
Table from :HZ_MERGE_PARTIES
Table to Update:XXPN_TRANSACTION_LINES
Alert_Name:XX_CUST_ALERT
Application:Receivables
Event type:
SELECT FROM_PARTY_ID,TO_PARTY_ID
INTO &FROM_PARTY,&TO_PARTY
FROM APPS.HZ_MERGE_PARTIES
WHERE FROM_PARTY_ID!=TO_PARTY_ID
AND MERGE_TYPE='PARTY_MERGE'
AND MERGE_REASON_CODE='MERGER'
AND ROWID=:ROWID
Action Type:
begin
UPDATE XXPN_TRANSACTION_LINES
SET PARTY_ID=&TO_PARTY
WHERE PARTY_ID=&FROM_PARTY;
end;
/
************************************************
2.Account Merge
Table from RA_CUSTOMER_MERGE_HEADERS
Table to XXPN_TRANSACTION_LINES
Alert name:XX_ACCOUNT_MERGE
Event type: select DUPLICATE_ID,CUSTOMER_ID
INTO &FROM_CUST,&TO_CUST
from RA_CUSTOMER_MERGE_HEADERS
where MERGE_REASON_CODE='MERGER'
and PROCESS_FLAG='Y'
and DUPLICATE_ID!=CUSTOMER_ID
AND ROWID=:ROWID
Action_type:
BEGIN
UPDATE APPS.XXPN_TRANSACTION_LINES
SET CUSTOMER_ACCOUNT_ID=&TO_CUST WHERE CUSTOMER_ACCOUNT_ID=&FROM_CUST;
END;
/
Oracle Technical Experience and Test Cases Shared from different resource and through self leanings.
Showing posts with label Alerts. Show all posts
Showing posts with label Alerts. Show all posts
December 27, 2011
Party Merge Alert CRM
Subscribe to:
Posts (Atom)
How I Identified 45 Configuration Gaps in an Oracle HCM Implementation — A Structured Approach
During a recent Oracle Fusion HCM implementation, I led a gap analysis that surfaced 45 configuration issues between the client's legacy...
-
While Registering the report to instance we need to make sure od date format: 1.The default type is YYYY/MM/DD HH24:MI:SS go to propert...
-
Order to cash normally refer to the process in which taking customer sale order via different sales channel like email, internet, sales pers...
-
This is easily done with the following command: select to_char(to_date('56789','J'),'JSP') from dual / TO_CHAR...