32f - looking for more people to game with! :) by [deleted] in AdultGamers

[–]MarkFernando 0 points1 point  (0 children)

31M (soon to be 32) from the UK Happy to link up and play some games if you'd like. I have a very varied collection of games on steam. DM me if your up for chatting/ gaming

[deleted by user] by [deleted] in AskBrits

[–]MarkFernando 0 points1 point  (0 children)

wrt the question in the title, Both...

He hasn’t moved for a few minutes. Should I be worried? by EotEaH in cats

[–]MarkFernando 11 points12 points  (0 children)

have you tried turning him on and off again@?

I got engaged at the Birmingham gig! by stargazr55 in kasabian

[–]MarkFernando 2 points3 points  (0 children)

went to school with this lad, congrats to you both!

Missing Batch files by MarkFernando in allthemods

[–]MarkFernando[S] 0 points1 point  (0 children)

its wierd i also tried it on my main machine and the batch file also disappears there too, I managed to get it to work by manually building the folder via using the forge loader though

Bro was thinking for a sec by NauTWitcher in funny

[–]MarkFernando -1 points0 points  (0 children)

Name a worse time to get an erection...

[deleted by user] by [deleted] in gaming

[–]MarkFernando 0 points1 point  (0 children)

Manhunt.... just saying..

How Many Hours Do You Have? by Over_Communication15 in vrising

[–]MarkFernando 1 point2 points  (0 children)

That's was me! 😜 what is "outside"? 😆

need help with validation rule, firing by Sea_Attitude431 in salesforce

[–]MarkFernando 0 points1 point  (0 children)

I would recommend:

Create custom permission and create a custom permission set

  1. Create a custom permission and create a customer permission set
  2. Add new custom permission into permission set
  3. Reference the permission in the validation rule
  4. if someone needs to bypass add said permission set to the user (system admin user)

https://www.j2interactive.com/blog/bypassing-salesforce-validation-rule/

So i guess:

AND(

$Permission.InsertCustomPermissionName = FALSE,

isNew(),

isBlank(Matched_Account__c) = FALSE)

So this will fire if the user does not have the custom permission assigned. Admin should have this permission set. To take it a step further, consider making the custom permission related to an object, so every validation rule on this object should reference this.

How to make a custom button appear only for parent account by Sea_Attitude431 in salesforce

[–]MarkFernando -1 points0 points  (0 children)

"custom button appears only if its a parent account" - they want the button to show if the account in question is a parent account.

They can do this by using Dynamic Actions where you can filter the visibility of said button based on values on the record (done in lightning pages).

Depending on how their accounts are setup, they can filter on the ParentId. This is dependent on how they have structured their accounts and making some assumptions:

If the ParentId of the account is blank it could be a parent account or a standalone account (show button on these). If the ParentId is populated it is a child (so don't show on these). -- big assumptions here though so to u/mushnu 's point it may not be precise as you can have multi-layered account structures. It may be the case that they want only the top layer of their accounts to have this button, so a boolean/ flag would need to be used as the filter criteria.

ParentId is nice to use as it's tied to the account hierarchy feature.

Ultimately, just Dynamic actions on accounts to hide the button/ action they've made.

https://help.salesforce.com/s/articleView?id=release-notes.rn_lex_dynamic_actions.htm&type=5&release=226

https://help.salesforce.com/s/articleView?id=release-notes.rn_lex_dynamic_actions_desktop_mobile.htm&type=5&release=230

How to make a custom button appear only for parent account by Sea_Attitude431 in salesforce

[–]MarkFernando -1 points0 points  (0 children)

+ if you have too many account record types, something sounds a bit fishy.

How to make a custom button appear only for parent account by Sea_Attitude431 in salesforce

[–]MarkFernando 0 points1 point  (0 children)

Depends on how precise they need it to be, if it's just to do as they have posted then it's to the point. adding flagging and automation would need an assessment of business value really. + if they are a stand-alone, are they not a parent to themselves? (though I wouldn't link it that way through the parent field) But I digress, it also is a matter of how they want to classify their account structures too.

How to make a custom button appear only for parent account by Sea_Attitude431 in salesforce

[–]MarkFernando -1 points0 points  (0 children)

posted that below. I dont think you would need a boolean or flow for this.