• Tarun Mukhia
  • NEWBIE
  • 40 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 8
    Questions
  • 11
    Replies
Hi,
I want to add one line to the trigger.
On-boarding owner to be changed to match the Applicant's Hiring Manager. 
Can someone please help. 
User-added image
Thanks
Tarun

 
Hi,

We have a button. I want to add validation to it if "AR"  Or "Billing Address" fields is blank then stop user.
How can I add this as a seperate alert message "AR field is mandatory" & "Billing Address is Mandatory"?
Thanks
Tarun

{!requireScript("/soap/ajax/26.0/connection.js")} 
var proceed = true; 

if("{!Account.Account_Number__c}"!="") { 
alert("This Account has already been on-boarded"); 
proceed=false; 
} else if("{!Account.Validation_Requested_On__c}"!="") { 
proceed = confirm("It appears that a user has already requested on-boarding for this Account (Requested By: {!Account.Validation_Requested_By__c}, on {!Account.Validation_Requested_On__c}).\n\nWould you still like to request that this Account be on-boarded?"); 

 
Hi,

I am stuck at this challange. 

-Create an Apex class that returns an array (or list) of strings.
-Create an Apex class that returns an array (or list) of formatted strings ('Test 0', 'Test 1', ...). The length of the array is determined by an integer parameter.
-The Apex class must be called 'StringArrayTest' and be in the public scope.
-The Apex class must have a public static method called 'generateStringArray'.
-The 'generateStringArray' method must return an array (or list) of strings. Each string must have a value in the format 'Test n' where n is the index of the current string in the array. The number of returned strings is specified by the integer parameter to the 'generateStringArray' method.
Hi,

Can somoene please guide me with the steps to finish this task? I tied many differnt ways but it is not working.
User-added image

Thanks
Tarun