Is there any possibility of querying the fields using datatype. I need to query the email field of multiple objects. Email field names are different. So I am trying to get the data using the email datatype.
You can use SOSL for this, here is an example of using SOSL.
You can use the SOSL to query multiple objects and there is a search group in SOSL to limit it to search only email fileds
Syntax :FIND 'SearchQuery' [IN SearchGroup] [RETURNING ObjectsAndFields]
Eg : FIND 'SearchQuery' IN EMAIL FIELDS RETURNING Obj1(filed1,fileds2) , Obj2(filed1,fileds2)
SearchGoup accept following groups
ALL FIELDS
NAME FIELDS
EMAIL FIELDS
PHONE FIELDS
SIDEBAR FIELDS
Related
I'm making a report in Data Studio using my Analytics data, and I'm having some trouble finding out how to filter it. Here is what I need to do:
I receive a "user" parameter in the URL, and I need to filter my "username" dimension with it. I want to make some kind of filter in the report, like Include usernameDimension = userParameter.
For some limitation in DataStudio, currently it is not possible to directly use Report URL parameters for filtering reports (when you create a filter, it only allows you to select fields, not parameters). However, it is possible to 'hack' this limitation with a new field that references the parameter.
Create a new boolean field called my_filter (or something you wish) with this expression:
field_i_want_to_filter = my_parameter
Then, just create a new filter in your report using this field, with the condition my_filter is true.
I can create a custom field to extract the username using a regular expressions.
Suppose you have a field called URL that contains something like:
https://example.com/path/path/endpoint?param1=blah¶m2=bleh&username=Diego¶m3=blih
You can use this formula in a new field to extract the username:
REGEXP_EXTRACT(URL, "[?&]username=([^&]*)")
You can easily add this custom field to a Drop down selector or something to allow filtering in your dashboard.
I have a simple form where users can enter some data.
The form collects my email automatically under 'email' field.
On the page with this form I would like to have a table that displays only records that I have entered, or where email field is matching my own.
How do I build a datasource query to match my email and bind it to the table? Ideally I would like this table refreshed every time a new records (under my email) is created.
On the policy search page you can search by different transactions by selecting a typecode from the Search For TypeKeyInput field. Is there a way to have the results return all transactions (cancellation, policychange, submission, etc) and not just the one selected. Is there a way to have search all functionality?
PolicySearchScreen PCF uses DatabasePolicySearchPanelSet and it uses search function in gw.search.PolicySearchCriteriaEnhancement, there you can to add the condition that you like if transaction type isn't selected
I would like to fetch the mandatory fields information in in leads database.
Is there any way to do this
There are no mandatory fields in the Person object in Marketo. If you wanted, you could create records with no information at all. If you just want to get the field names, use the 'describe' call.
GET /rest/v1/leads/describe.json
For full details, see http://developers.marketo.com/rest-api/lead-database/leads/#describe
I'm new to SendGrid and I was wondering if it was possible to create a URL query string with parameters values retrieved from the custom fields.
I want to create a campaign on which the customer will receive an email and when he/she clicks an image within the content it will redirect to another page and fill partially a survey with the values retrieved from the query.
Example
...
Thanks!