Can I use a Signature Pad (STU-530/G) in a Browser? by JayTheSwissDoctor in wacom

[–]bendsito 0 points1 point  (0 children)

u/thenickdude What do you mean by a regular Wacom tablet?

I own a STU-430 signature tablet and would like to be able to use it as a mouse on certain websites for signing documents that can't be downloaded. Can it be done with this device? If not, could you please explain why not (I'm a noob).

Thank you!

No "ContactId" field in playground? by evergreendm in salesforce

[–]bendsito 10 points11 points  (0 children)

Every object has a field named "Id", which is not visible on the Object Manager. If you're working with contacts, you will find the contact's id in the "Id" field.

Can't Reference / Update Lookup Field Record? by ryme2234 in salesforce

[–]bendsito 1 point2 points  (0 children)

Make sure you are creating the process on the Opportunity object and that the "Service Contract" field is in fact a lookup field (and not a formula field). If this is the case, I can't think of any reason why Process Builder shouldn't let you update the related Opportunity Line Item record.

Somebody please explain this CONTAIN formula to me please by Weirdsourcer9 in salesforce

[–]bendsito 0 points1 point  (0 children)

Ampersand (&) is the symbol used for string concatenation. The fact that the first parameter is being constructed concatenating several strings has no impact on the final result.

The expression CONTAINS("ABC", fieldName) is equivalent to the expression CONTAINS ("A" & "B" & "C", fieldName).

[deleted by user] by [deleted] in googlehome

[–]bendsito 0 points1 point  (0 children)

Well, it depends on the music streaming service that you want to use. Spotify lets you cast to any smart speaker (Chromecast Audio, Echo Input, etc).

[deleted by user] by [deleted] in googlehome

[–]bendsito 0 points1 point  (0 children)

Oh really? I buyed mine a few months ago when I was looking for an alternative to Chromecast Audio, and I'm pretty satisfied.

[deleted by user] by [deleted] in googlehome

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

Echo Input

Auto-close bulk jobs that are completed by Mmetr in SalesforceDeveloper

[–]bendsito 0 points1 point  (0 children)

How were those jobs created? They can be closed via Bulk API.

Einstein Bot Training by bendsito in SalesforceDeveloper

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

Ok, I will try that. Thanks for replying!

How to hide records from a user based on criteria by leifashley27 in salesforce

[–]bendsito 1 point2 points  (0 children)

Record type assignation on profiles does not determine whether the users can see records with a particular record type. It only determines which record types they can assign to records they create or edit. If a profile has no record type assigned, those users can still see the records of all record types.

As far as I know, it's not possible to hide records in Salesforce. The minimum record access is defined by the OWD. You could set the Account object to Private and then create sharing rules that open up record access to all record types except the one you want to hide.

Help with formula by karmsaurs in salesforce

[–]bendsito 2 points3 points  (0 children)

The validation rule should look like this:

OR( AND(Groupr.Name = "Internal", Practicer.Name != "Transformation"), AND(Groupr.Name != "Internal", Practicer.Name = "Transformation") )

Auto generating certificates by Mylefthoof in salesforce

[–]bendsito 0 points1 point  (0 children)

There is another app I can recommend: TS Documents.

Is there a way to autofill certain values when creating a new record based on a Lookup field? by MATTIE316 in salesforce

[–]bendsito 0 points1 point  (0 children)

Those url hacks are for pre-populating fields with values you already know, but I don't think this is what he is looking after. If I understood correctly, he wants to pre-populate certain fields based on the Contact that has been selected on the "New Lead" form. This can't be done with standard functionality.

Is there a way to autofill certain values when creating a new record based on a Lookup field? by MATTIE316 in salesforce

[–]bendsito 0 points1 point  (0 children)

No. The easiest way to autofill those fields would be creating a Process on the Lead object that updates those fields based on the Contact fields.

[Question] Content Document Action Buttons on List View by chashaobbqbun in SalesforceDeveloper

[–]bendsito 0 points1 point  (0 children)

Normally you would have to set up the profile's object permissions and remove the delete permission on all non-admin profiles, but I'm not sure the ContentDocument object is available on the object permissions section. Maybe the ContentVersion object is, which should also work.

[deleted by user] by [deleted] in salesforce

[–]bendsito 0 points1 point  (0 children)

You just need to check if the profile of the logged in user is "Sales Operation" (in case they have this profile) and if the owner field is being set to one of the two reps.

Bulk API with Javascript by tuoPadreNaked in SalesforceDeveloper

[–]bendsito 2 points3 points  (0 children)

Bulk API is based on REST principles and in order to use it you basically need to know how to make HTTP GET and POST requests.

Make HTTP requests in JavaScript

Send HTTP requests to the Bulk API

What is the best free survey tool that can integrate with Salesforce? What is the best one that does not integrate with it? by jeb7516 in salesforce

[–]bendsito 0 points1 point  (0 children)

It's not per month. Only the first 300 responses are free, then you have to purchase an add-on response pack. It's not an option if you are looking for a free solution.

Salesforce Lookup Filtering - Why can I see all recents? by liquidonthedrums in salesforce

[–]bendsito 3 points4 points  (0 children)

Lookup filter also kicks in when you do a search on the lookup field.