• Nitesh Gadkari 1
  • NEWBIE
  • 30 Points
  • Member since 2015
  • Software Engineer
  • Compro Technologies

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 4
    Replies
I can't find it anywhere and it's driving me nuts! Any ideas please?
Thank you v much
Hi All,

I just wanted to know going forward how are the Email Attachments going to be captured once Attachment object is deprecated  by Salesforce. Any insights would be appreciated.

Thanks
Nitesh
Hi All,

Can anyone help and let me know which object stores email attachements received when Case is created via Email to Case functionality? We can view attachments on Email Message object record, but i actually want to know which object stores these attachments.Also, can we play with that object using apex.I am unable to find locate these attachments under any standard related lists.

Thanks
Nitesh
when you select setup cog there is no options for "All Setup" just setup, when checking App manager there is no lightning service?

Followed the trailhead procedure exactly but still can't get service setup!
User-added image
I can't find it anywhere and it's driving me nuts! Any ideas please?
Thank you v much
Hi All

Account object having more than 4k record from 2010 to till.i want the lastmodified date which created date not equal in 1/4/2015 to 31/3/2016.

one record which created date is 23/4/2010 and modified date is 28/4/2016 .how to find this record


Thanks
 

if(s.Approval_Status__c=='Order Canceled' && Trigger.oldMap.get(s.Id).Approval_Status__c == 'Approved by First Level'){
          for(Sample_Line_Item__c sli:s.Sample_Line_Items__r){
                    productIds.add(sli.product_No__c);
                    
                    if(s.Distribution_Center__c=='Tokyo')
                    {
                        if(TokyoproductIdToQuantity.get(sli.product_No__c)  == null || TokyoproductIdToQuantity.get(sli.product_No__c) == 0)
                        {   
                        
                            TokyoproductIdToQuantity.put(sli.product_No__c,sli.quantity__c * (-1));
                        }
                        else
                        {
                            Decimal temp = TokyoproductIdToQuantity.get(sli.product_No__c);
                            temp = temp + (sli.quantity__c * (-1));
                            TokyoproductIdToQuantity.put(sli.product_No__c,temp);
                        }
                    }
                
                    if(s.Distribution_Center__c=='Suzuyo')
                    {
                        if(SuzoyoproductIdToQuantity.get(sli.product_No__c)  == null || SuzoyoproductIdToQuantity.get(sli.product_No__c) == 0)
                        {   
                        
                            SuzoyoproductIdToQuantity.put(sli.product_No__c,sli.quantity__c * (0));
                        }
                        else
                        {
                            Decimal temp = SuzoyoproductIdToQuantity.get(sli.product_No__c);
                            temp = temp + (sli.quantity__c * (0));
                            SuzoyoproductIdToQuantity.put(sli.product_No__c,temp);
                        }
                    }
                    if(s.Distribution_Center__c=='Osaka')
                    {
                        if(OsakaproductIdToQuantity.get(sli.product_No__c)  == null || OsakaproductIdToQuantity.get(sli.product_No__c) == 0)
                        {   
                        
                            OsakaproductIdToQuantity.put(sli.product_No__c,sli.quantity__c * (0)) ;
                        }
                        else
                        {
                            Decimal temp = OsakaproductIdToQuantity.get(sli.product_No__c);
                            temp = temp + (sli.quantity__c * (0));
                            OsakaproductIdToQuantity.put(sli.product_No__c,temp);
                        }
                        
                    }   
                
                    sli.Prior_Approved_quantity__c = sli.Quantity__c;
                    sli.Quantity__c = 0;
                    sampleLineItemsToUpdate.add(sli);
                
                }
              
        }