Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. If(Service == 'Tenant Referencing', 'References ','Policies ') + 'processed : '+ lstInvoice[0].TR_Count__c
  2.  
  3. {!IF(service == 'Tenant' || service == 'Reference'),'If-True-Display-This','If-False-Display-This'}
  4.  
  5. Public Sting sample;
  6. for(integer i =0; i< lstInvoice.size() ; i++)
  7. {
  8.  
  9. if(Service == 'Tenant Referencing')
  10. {
  11. sample = 'Tenant Referencing'+" "+'processed : '+lstInvoice[0].TR_Count__c;
  12. }
  13.  
  14. if(Service == 'References ')
  15. {
  16. sample = 'References '+" "+'processed : '+lstInvoice[0].TR_Count__c;
  17. }
  18.  
  19. if(Service == 'Policies ')
  20. {
  21. sample = 'Policies '+" "+'processed : '+lstInvoice[0].TR_Count__c;
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement