Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
1.i need to get id of 20 latest created cases.
SELECT Id FROM Case ORDER BY CreatedDate DESC LIMIT 20
i ddit..now i have to show..five f fields of these cases in grid view inclding one field of the to be assigned ownername.
The fields which u want to show on the Grid .Retrive the Fields in the Cases Query
Select id,owner.name,name,etc From Case Order By Createddate DESC Limit 20
i ddit..now i have to show..five f fields of these cases in grid view inclding one field of the to be assigned ownername.
The fields which u want to show on the Grid .Retrive the Fields in the Cases Query
Select id,owner.name,name,etc From Case Order By Createddate DESC Limit 20