• nikvm
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 11
    Questions
  • 9
    Replies
I have a situation where the initiator is intiating the approval process for another user. (On behalf of )
And in the approval process approver options I only get to choose the manager of the initiator as the option. 

However I would like to submit the item for approval to the manager of the actual requstor. I have the fist name and last name of the user available on the object. I can capture few more details but not the actual manager I would prefer deriving it  out of user object.

Is there a way I can solve this problem 

Thanks in advance. 
  • March 20, 2014
  • Like
  • 0

Hello All,

 

I have below query  which works fine

NotesList  = [SELECT ParentId, CreatedById, CreatedDate, parent.id, parent.name FROM Note ];

 

however when I add one more column to this it fails.as below 

NotesList  = [SELECT ParentId, CreatedById, CreatedDate, parent.id, parent.name, parent.AccountNumber FROM Note ];

 

I get the error ----> no such column ' account number ' on entity name ***************

 

Please help me rectify the same.

 

Thanks 

 

  • September 19, 2013
  • Like
  • 0

Hello All,

 

I am a developer / analyst in various technologies like ASP.NET, SAP ABAP , Salesforce APEX / Visual force 

I am salesforce certified administator.  I am also planniing to take my Dev 401 certification.

Working as a Salesforce Developer with experience writting few trigger, modifying existing APEX classes creatng few visual force pages since last 1 year.

I want to take my Salesforce skills (Admin + Dev) to next level

 

I also try to read about some domain specific iinformation like order to cash and other business process as I want to be a CRM domain expert with really strong salesforce foundational knowledge.

 

Please give me few pointers to improve my skills things that I should do on regular basis, blogs I should read, practices that I should follow, Coding problems that I can slove that will help me achive  what I want.

 

 

I know its kind of wiered place to ask such question but truely we are like minded people here who are passionate about Salesforce technology and I believe that I will get help from the experts here.

 

Thank you in advance for your advice, time and sharing some of your best practices and wiisedome !!!

 

-Nik 

  • May 27, 2013
  • Like
  • 0

 

I am not getting the correct way putting date in below SOQL statement 

 

SELECT id, CreatedDate  FROM Sales_Order__c where CreatedDate < 2013-01-11

 

could some one help please 

 

Thanks 

 

error :

INVALID_FIELD:
recordtype__c FROM Sales_Order__c where CreatedDate < 2013-01-11
^
ERROR at Row:1:Column:877
value of filter criterion for field 'CreatedDate' must be of type dateTime and should not be enclosed in quotes

  • May 20, 2013
  • Like
  • 0

Hello everyone ,

 

I had a question about chatter anlytics.

Is it possible to get to know who viewed a post by a specific person ?

 

I looked in to all the realted chatter objects but couldn't find any relevent attibute.

 

Any help would be appriciated.

 

Thanks 

  • April 15, 2013
  • Like
  • 1

Hello Gurus,

 

I have three objects which are disbaled for reporting.

But I want to keep these objects reportable to sys admin at least.

 

please let me know if this can be achived anyhow.

 

Thanks 

  • April 06, 2013
  • Like
  • 0

Guys please help me here.

 

I have 3 objects which should be non reportable. Hence I have marked them on the object level as disable reporting.

However there is still a set of users who should be able to run reports on them.

Can anyone think of a solution.

 

Thanks 

  • April 06, 2013
  • Like
  • 0

Hello ,

 

I am consuming an external  webservice from w3school.

I want to see the xml messages exchanged betwween salesforce and the webservice.

Could you point me towards some tool or some way I can see this.

 

Thanks 

 

 

  • February 18, 2013
  • Like
  • 0

Hello ,

 

Please could you point me to some free webservice in which the xsd used is external ?

 

So I want a webservice which is using import statement to include xsd.

I want to consume such  a webservice on salesforce 

 

Appriciate your help.

 

 

 

  • February 18, 2013
  • Like
  • 0

Hello Alll,

 

I have been reading the force.com manual .

I came accross below line 

 

"Starting with Apex code saved using Salesforce.com API version 24.0, test methods don’t have access by default to pre-

existing data in the organization."

 

link http://www.salesforce.com/us/developer/docs/apexcode/index.htm

 

What does this mean? Does it mean I can't write a soql inside my test class. 

Please help me clarify my understanding.

 

Thanks a ton!!!

 

 

  • February 17, 2013
  • Like
  • 0

Hello Guys,

 

I was wondering is thtere any way I can restore deleted chatter posts ?

I have recenlty come accross this case.

I have been trying to query Accountfeed object but even if I query i onlyget to see those posts that I can see on the Account object.

 

That makes me wondering what is the purpose of "isdeleted" filed on the accountfeed object.

 

Please let  me know your thoughts.

 

Thanks

 

  • July 11, 2012
  • Like
  • 0

Hello everyone ,

 

I had a question about chatter anlytics.

Is it possible to get to know who viewed a post by a specific person ?

 

I looked in to all the realted chatter objects but couldn't find any relevent attibute.

 

Any help would be appriciated.

 

Thanks 

  • April 15, 2013
  • Like
  • 1
Hello,

I have some code which creates a  task for one user when an opportunity is created. during creation of tasks, i am setting up the Email header for sending emails. But emails are not being sent for some reason.

Code Snippet - 
          Database.DMLOptions dml = new Database.DMLOptions();
          dml.emailHeader.triggerUserEmail = true;
          database.insert(lstTasks, dml);

Can someone provide some pointers for fixing this issue. Thanks in Advance. 

Guys please help me here.

 

I have 3 objects which should be non reportable. Hence I have marked them on the object level as disable reporting.

However there is still a set of users who should be able to run reports on them.

Can anyone think of a solution.

 

Thanks 

  • April 06, 2013
  • Like
  • 0

Hi,

 

I want to know about the setter and getter. I know that it is a properties of declaring variable but some time I get confused. Presently I am using a sample of code that is below:

public with sharing class hello

{

       public String temp{set;get;} 

        public hello(){

                 temp = 'first' ;

            }

         public String gettemp(){

          return 'second' ;

        }

}

So I want to know that when I use temp on VFP than what value will show on page..... and what is reason of that ...............

what is the difference of temp and gettemp .....

 

Thanks

Ashlekh Gera

 

I would like to make a separate developer sandbox from the one which we already have. I would also like to have this new developer sandbox to have all of the same undeployed design components which the other sandbox has. However, I am only able to create a new one from production. Is there a way for me to create a new sandbox based on that developer sandbox ? If not, is there a quick way for me to duplicate certain objects from that developer sandbox and bring them over to the new developer sandbox ? 

 

Thank you very much for your help.

  • February 27, 2013
  • Like
  • 0

Hello ,

 

Please could you point me to some free webservice in which the xsd used is external ?

 

So I want a webservice which is using import statement to include xsd.

I want to consume such  a webservice on salesforce 

 

Appriciate your help.

 

 

 

  • February 18, 2013
  • Like
  • 0

Hello Alll,

 

I have been reading the force.com manual .

I came accross below line 

 

"Starting with Apex code saved using Salesforce.com API version 24.0, test methods don’t have access by default to pre-

existing data in the organization."

 

link http://www.salesforce.com/us/developer/docs/apexcode/index.htm

 

What does this mean? Does it mean I can't write a soql inside my test class. 

Please help me clarify my understanding.

 

Thanks a ton!!!

 

 

  • February 17, 2013
  • Like
  • 0

How many ways give the permissions to users...

 

 

 

Thanks,

SFDC_Learner