• UdayWagle20
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 10
    Questions
  • 2
    Replies

Hi Everyone,

Does more number of method invocation within a class or method reduce performance in apex ?

Is it safe to answer Salesforce Certification exam from Mac or is windows recommended / to be preferred ?

Hello All,

Is method overloading of static methods possible in apex ?

Any assitance would be apprceiated.


Regards,
Uday

Hi, 

 

What are the different ways to upload a file from visualforce ? 

We are trying to avoid file upload using input file, which needs apex form. 

 

Any help would be appreciated. 

 

Thanks, 

Uday.

Hi Team,

Does anyone know how to implement voice recognition in salesforce web applications in javascript that support cross browser compatibility. Any help would be appreciated.

Regards,

Uday.

How do I remove quotes from the following json string generated from serializing json generator string in javascript ? Because of which I am not able to parse it or how do I parse it.

"{"Ids":[{"Id":"123","Name":"abc"},{"id": "456","Name":"pqr"}]}"

I want it to be =>  {"Ids":[{"Id":"123","Name":"abc"},{"id": "456","Name":"pqr"}]}

Please help me to reslove this issue.

Regards,

Uday.

Hi All,

Here I have list of account Ids.
List<Id> accIds= new List<Id>()

List<Contact> conList = [SELECT Id,Name WHERE accountId IN :accIds];

Now in the above conList I want to query the contacts in same order as the ids in the account.

currently what is happening is if accIds list contain {1,2,3}, contacts are returned in the order {2,1,3}

I want them to be in the same order.

How do I achive this ? Please help me to resolve the above issue.

Hi All,

Here I have list of account Ids.
List<Id> accIds= new List<Id>()

List<Contact> conList = [SELECT Id,Name WHERE accountId IN :accIds];

Now in the above conList I want to query the contacts in same order as the ids in the account.

currently what is happening is if accIds list contain {1,2,3}, contacts are returned in the order {2,1,3}

I want them to be in the same order.

How do I achive this ? Please help me to resolve the above issue.