You need to sign in to do that
Don't have an account?
Subbu
unexpected token: '=' at line 5 Plese help me ................
string ratingValue = 'Hot';
public List<Account> lstAccount{get;set;}
string strQuery = 'select id, name, rating, industry,( select id, firstname, lastname, phone, fax from contacts) from account where rating =: ratingValue';
lstAccount = Database.Query(strQuery);
if(lstAccount.size()!= 0)
{
for(Account acc : lstAccount)
{
system.debug(acc.id + ' ----> '+ acc.name + ' ----> '+acc.rating + ' ----> '+ acc.industry );
system.debug('Contact Records Information.');
system.debug('Contact Count ....: '+ acc.contacts.size());
if(acc.contacts.size() > 0)
{
for(contact con : acc.contacts)
{
system.debug(con.id + ' ---> ' + con.firstname + ' ----> ' + con.lastname);
}
}
else
system.debug ('No Contacts for this Account');
}
}
else
{
system.debug('Account Record Not Found.');
}
public List<Account> lstAccount{get;set;}
string strQuery = 'select id, name, rating, industry,( select id, firstname, lastname, phone, fax from contacts) from account where rating =: ratingValue';
lstAccount = Database.Query(strQuery);
if(lstAccount.size()!= 0)
{
for(Account acc : lstAccount)
{
system.debug(acc.id + ' ----> '+ acc.name + ' ----> '+acc.rating + ' ----> '+ acc.industry );
system.debug('Contact Records Information.');
system.debug('Contact Count ....: '+ acc.contacts.size());
if(acc.contacts.size() > 0)
{
for(contact con : acc.contacts)
{
system.debug(con.id + ' ---> ' + con.firstname + ' ----> ' + con.lastname);
}
}
else
system.debug ('No Contacts for this Account');
}
}
else
{
system.debug('Account Record Not Found.');
}
As i understund
should be a local variable
try
Thanks,
Alex
Thank You
You can't have statements like that directly inside a class. Please keep only field declarations inside class and all the other statements inside a method in class. Also the field intitalisations should be inside a constructor. Something like this:
Note: I have removed the syntactical errors. Please change it according to your need.
Thanks
JK