How to bypass validation rules & Automations while Performing Bulk Dml | Salesforce | forceGalaxy

Поділитися
Вставка
  • Опубліковано 6 жов 2024

КОМЕНТАРІ • 14

  • @priyankarai370
    @priyankarai370 Рік тому

    thanku so much kanika .....this time i understood completely ..

  • @tejasai9390
    @tejasai9390 2 роки тому

    Crystal clear explanation, thanks for uploading the video.

  • @ayushchauhan6119
    @ayushchauhan6119 2 роки тому

    Thanks your Intel always help....

  • @awesomekj5812
    @awesomekj5812 5 місяців тому

    I believe she got wordings wrong ..bypass validation means user should be able to bypass that rule and be able to create one opportunity....but having that check means she couldn't so she technically couldn't by pass it ....may be something like enforceValidation would have made sense here

  • @truptichaudhary4047
    @truptichaudhary4047 Рік тому +1

    CAn you please take some schenarios of custom setting,metadata and custom lebel

  • @ShivamKesari-ry7zi
    @ShivamKesari-ry7zi Рік тому +1

    @force Galaxy - It is good, but i want to know how it would by passed from Flow. can you create a video to by pass validation rule from Flow?

  • @lakshmisujatha8138
    @lakshmisujatha8138 Рік тому

    How to bypass lead assignment rules can you make one video

  • @amarmute7384
    @amarmute7384 Рік тому

    can u explain for the flows how to bypass

    • @awesomekj5812
      @awesomekj5812 5 місяців тому

      IT will be the same ...use $Setup.customesetting in the flow criteria to bypass

  • @saurabhsendragade3758
    @saurabhsendragade3758 2 роки тому

    Mam this can also achive by just creating a check box field
    And using it to the validation?

    • @forceGalaxy
      @forceGalaxy  2 роки тому

      Ok so here the next question comes what if I want to manage this for any particular user without giving anytime downtime to other users?

    • @travelXcook
      @travelXcook 2 місяці тому

      @@forceGalaxy Hi @forceGalaxy ..Can we add the global variable $User or $Profile to the formula in validation. If we want to bypass validation for one profile, we can use NOT($profile.name = 'ABC') and same for any particular user e.g. AND( ISPICKVAL( Industry , 'Chemicals') , ISPICKVAL( Rating , 'Hot') , NOT( $User.FirstName = 'XYZ' )). This will bypass validation for user XYZ.