• Sanket Rawan
  • NEWBIE
  • 0 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 6
    Questions
  • 8
    Replies

I have created a custom currency field on lightining web comopent ,I have to add the validation rule on that custom field

Validation Rule : whenever the user enters the positive value he should get the error message below the field field as"Please enter the negative values" and the user should be restricted to save the record .

Else if he enter (zero)0 or negative value he should be able to save the record successfully  without getting any error .

 

I want to validate the input in flows .what should be the logic in that validate input block 

criteria 1: the length of the currency should be less than 16 or should                     accept 2 decimal  
criteria 2 : the currency should be greater than or equal to 0 
 

Hi All, 

I wanted to know that is it possible that the validation rules are assigned to particular permisssion sets and profiles? if yes than how to verify that which profile and permission set is having that validation rule ?

Create a trigger on Contact to update the primary contacts phone number on parent Account
Create a checkbox field on Contact “Is Primary” which will denote whether contact is primary or not.
Insert/Update contact record with primary flag = true, to execute the triggerThere cannot be more than one primary contacts associated with an Account.
Hint: Create Apex Trigger on Contact object:Name : updatePhonenumber
Event : After insert, after update
Output Criteria: Phone number from primary Contact will get updated to parent Account

 
I want to Create a checkbox field on Contact "Is Primary" which will denote whether contact is primary or not and Insert/Update contact record with primary flag = true, to execute the trigger There cannot be more than one primary contacts associated with an Account.

Hi All, 

I wanted to know that is it possible that the validation rules are assigned to particular permisssion sets and profiles? if yes than how to verify that which profile and permission set is having that validation rule ?

I have created a custom currency field on lightining web comopent ,I have to add the validation rule on that custom field

Validation Rule : whenever the user enters the positive value he should get the error message below the field field as"Please enter the negative values" and the user should be restricted to save the record .

Else if he enter (zero)0 or negative value he should be able to save the record successfully  without getting any error .

 

I want to validate the input in flows .what should be the logic in that validate input block 

criteria 1: the length of the currency should be less than 16 or should                     accept 2 decimal  
criteria 2 : the currency should be greater than or equal to 0 
 

Create a trigger on Contact to update the primary contacts phone number on parent Account
Create a checkbox field on Contact “Is Primary” which will denote whether contact is primary or not.
Insert/Update contact record with primary flag = true, to execute the triggerThere cannot be more than one primary contacts associated with an Account.
Hint: Create Apex Trigger on Contact object:Name : updatePhonenumber
Event : After insert, after update
Output Criteria: Phone number from primary Contact will get updated to parent Account

 
I want to Create a checkbox field on Contact "Is Primary" which will denote whether contact is primary or not and Insert/Update contact record with primary flag = true, to execute the trigger There cannot be more than one primary contacts associated with an Account.