谁能帮助我在 Informatica PowerCenter 中的表达式转换中编写以下案例语句?
Case When STATUS_REASON_CODE in ( 'BI Complete' , 'BI Updated', 'BI Complete') and Outcome__c is null and BI_Outcome__c is null then 'PA Required'
when STATUS_REASON_CODE in ( 'BI Complete' , 'BI Updated', 'BI Complete') and Outcome__c is null
Then Decode (BI_Outcome__c, 'PA Appeal Pending', 'PA Appeal Required','PA Pending','PA Required',BI_Outcome__c)
when STATUS_REASON_CODE in ('PA Appeal Approved', 'PA Approved') and Outcome__c is null Then 'Approved'
when STATUS_REASON_CODE in('PA Appeal Denied', 'PA Denied') and Outcome__c is null Then 'Denied'
when Outcome__c='PA Pending' then 'PA Required'
When Outcome__c='PA Appeal Pending' then 'PA Appeal Required'
when STATUS_REASON_CODE in ('PA Appeal Approved', 'PA Approved') and Outcome__c is null Then 'Approved'
when STATUS_REASON_CODE in('PA Appeal Denied', 'PA Denied') and Outcome__c is null Then 'Denied'
else Outcome__c end