Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

sql expressions

Status
Not open for further replies.

syncdba

IS-IT--Management
Nov 28, 2005
206
US
Hi,
Is it possible to use the following sql query in sql expression?.I tried it but giving errors:

select id,accountid,
case when "sfdcOpportunity"."ISP_Complete_Account_Plan__c"='true'
then 'Complete_Account_Plan : COMPLETED'
else 'Complete_Account_Plan '
end as Complete_Account_Plan,
case when "sfdcOpportunity"."ISP_Determine_Partner_Plan__c"='True'
then 'ISP_Determine_Partner_Plan : COMPLETED' else 'ISP_Determine_Partner_Plan '
end as ISP_Determine_Partner_Plan,
 
From previous posts, I believe you are using CR XI. You should be creating queries like this in database->database expert->your datasource->Add Command.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top