• Saif
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 7
    Questions
  • 3
    Replies
Can anyone assist in this

I want  remove the fields from the report. These fields are not on page layouts or visible to users so this can only be by visible looking at the field list.
* If there are any reports that use these fields they need to be either deleted or the fields should be removed
  • January 29, 2020
  • Like
  • 0
As I am trying Soql statement to export  10k+ records Id's in a single run
Example: Select Id,Name,Phone From Accounts where Id in ('Record 1','Record  2','Record 3'.......'Record N')
The soql statement is not accepting more than 1k records inquery how to overcome this limit exceeded error?
  
  • July 08, 2019
  • Like
  • 0
Hi,
I have two classes Class1(parent) & Class2 (child)
Public parnent{
public string a;
public string b;
public string c;
}//end of  class 1
Public child{
public string x;
public string y;
public string z;
}//end of class 2
here I want to access a,b,c into child class what is the syntax to call from child to parent class
I tried  below syntax it is throwing an error 
Public class child extends parent
{


Thanks in advance
  • December 10, 2018
  • Like
  • 0
I would like to Generate Even and Odd Numbers below 10 based on input like if I set input as 2 it should return only Even Numbers2,4,6,8,10 if I set input 1 it should return 1,3,5,7,9 Here the code is I am unable to out of this error please help me out.
public class evenoddex {
   public integer n=10; 
   public integer a;
   public void getInput(integer x){
        a=x;
       system.debug('Your Input=='+a);
    }
   public void displayEvenOdd(){
        if(a<0){
            system.debug('Please enter postive Numbers');
        }
       else{
           if(a<n){
               for(integer i=0; i<n; i=i+2){
                   system.debug('Numbers=='+a[i]);
               }
           }
           else{
                  system.debug('Please enter Below 10');
           }
       }
    } 
}

Calling Class
-----------------------
evenoddex s=new evenoddex();
s.getInput(1);
s.displayEvenOdd();

Thanks,
 
  • November 23, 2018
  • Like
  • 0
I want add Fax field as well on contact tab how to add.

As i want to FAX field on Contact object tab how to add as Contact Name,
Title,Email,Phone is already added. i want add FAX as well please navigate me.
  • November 19, 2018
  • Like
  • 0
Hi 
Please help me i want to fetch the details user who doesn't login in the instance (environment) since last 2 weeks.how to write the soql to fetch this information.

Thanks,
Saif.
  • November 02, 2018
  • Like
  • 0
I’m finding that (sales) users are able to edit accounts owned by other users.  The two profiles I tested are Sales team and Development Team.  I was able to login as Sam and edit / david, and I was able to login as david and edit an account I own, and logged in as Roger and was able to edit an account I own.  Is there a reason for this ability?  We are finding that certain groups are making edits to accounts regardless of who owns the account. 

 
  • October 03, 2018
  • Like
  • 0
Hi 
Please help me i want to fetch the details user who doesn't login in the instance (environment) since last 2 weeks.how to write the soql to fetch this information.

Thanks,
Saif.
  • November 02, 2018
  • Like
  • 0