• itzik
  • NEWBIE
  • 0 Points
  • Member since 2008

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 9
    Questions
  • 0
    Replies

hey i am trying to see the test vf page of the integration with facebook

and i am getting a black page

i am filling the facebookapplist object with the appkey and the appsecret values and after

trying to load the vf test page all the rest of the fields in the facebookapplist are filled with values (the values which equals to the facebook application like the app_id)

 

 

maybe the problem is that monthly_active_users = 0 or weekly_active_users = 0 or  daily_active_users = 0

 

if you have any suggestions it would be very helpful

 

thanks 

  • March 24, 2009
  • Like
  • 0
why it give me error on the Action.User ?
how can i know the names of the standard objects ?
  • December 14, 2008
  • Like
  • 1
is there any way to change the add product page
in the filter i want that in certain field filters would have apicklist of values and not a free text
  • October 05, 2008
  • Like
  • 0

this is a trigger that i made which every time an email is sent and the mail2case create a case out of it the trigger is run and change the case "last modified" field

the problem is sometimes i get the "Too many SOQL queries :21" Error

this is the trigger code :

 

trigger Task_1 on Task (after insert)

{

Task task = trigger.new[0];

if(task.WhatId != null)

{

if(Util.getObjectType(task.WhatId) == 'Case' && Util.getTaskType(task.Subject) == 'email')

{

Case c = [select Id, Subject,OwnerId from Case where Id =: task.WhatId];

List<Task> t = [Select t.WhatId, t.Subject From Task t Where t.WhatId = :c.Id];

for(Integer i=0;i<t.size();i++)

{

if(Util.getTaskType(t[i].Subject) != 'email')

{

t.Remove(i);

}

}

if(t.size()>1)

update c;

}

}

}

  • October 05, 2008
  • Like
  • 0
in my contact and account object i have new custom address fields
and when creating new contact from the account i want that in the edit-mode page
the contact address fields will be filled from the account custom fields
  • August 07, 2008
  • Like
  • 0
how can i change the "select record type" page into a visualforce page
and when i click continue in my new visualforce page it will continue to the regular edit-mode page
 
  • August 07, 2008
  • Like
  • 0
anyone know why when i am trying to insert  OpportunityPartner
it gives me an error  : " DML not allowed on OpportunityPartner "
  • July 22, 2008
  • Like
  • 0
can anyone tell me how can i get an email template filled with values
and show it in an s-control
  • July 21, 2008
  • Like
  • 0
anyone know how can i get an email template filled with the filleds
 
for example template like :
 
Dear Distributor / Reseller,
Company Name: {!Account.Name}
Address: {!Account.BillingAddress},
Country: {!Contact.Country__c}
 will get the current values and insert them in the rigth places
 
i want to return this filled template as a string
  • July 20, 2008
  • Like
  • 0
why it give me error on the Action.User ?
how can i know the names of the standard objects ?
  • December 14, 2008
  • Like
  • 1