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
Related
I would like to create a dropdown in AX form so that only the user from specific company see this field as a dropdown and other company see it as string field that user have to manually key in. I only manage to create the dropdown list based on table menu, but have no idea how to limit to specific company.
This create a problem since not all company wants dropdown and If the user key in none registered number, the system will return “ the value xxx in the field yyy is not found in the relating table zzz
How can I set the condition so that only selected company see this field as dropdown and the other company see this as string? And also where to locate the condition?
You may need to set the form control property AutoDeclaration=Yes and then dynamically change the FormStringControl.LookupButton (see here) based on the current company (curext()).
You must also decide if you have a relation on your table, whether or not you want it to be enforced (Validate=[Yes/No]). If you are allowing a free-text field input, I would imagine you would want No, but you could perform validation in the validateField or validateWrite method.
Depending on your situation, you may want to create a custom lookup with a condition.
See how to create custom lookups here - https://learn.microsoft.com/en-us/dynamicsax-2012/developer/how-to-add-a-lookup-form-to-a-control
You'll have to experiment a little, but this information should point you the right direction.
You could add two fields to your form, on with the lookup and one without. You could then use the security setup to control which users have access to which field. Note that this may not work if you have users that work in both companies that use the field with lookup and companies that use the field without lookup.
I actually can't find any option how can i add this Inventory Number entries (subtab on item records) in global search. It would save me a lot of time if this field can be searchable under global netsuite's search which is located in header of every single page.
Is something like this possible? I asked their support and they are navigating me to their support documentation which is not that rich when this question is placed.
Please see screenshot of what i want to include in my global search
There isn't a way that I know of to make default fields accessible to the global search but you can make custom fields accessible.
You should be able to make a custom field that stores the value of the Inventory Number. Custom fields have a checkbox of "Global Search". The field must store the value so you will need to make sure that it updates if the Inventory Number ever updates (workflow/suitescript).
From NetSuite article 8403 titled "Including Custom Fields in Global Search":
To index a custom field to be included in global search, a user with
permission to edit or create custom fields must check the Global
Search box on the custom field record. By default, the Available for
Global Search box is not checked for preexisting or new custom fields.
Global search indexing is available for the following data types, when
the Store Value preference is enabled:
Currency
Decimal Number
Email Address
Free-Form Text
Help
Hyperlink
Inline HTML
Integer Number
Percent
Phone Number
Text Area
You cannot index a custom field for global search if None is
selected for any Level for Search/Reporting option on the Access
subtab of the custom field record.
Is there any way to get the calendar events specifically with attendee name.
I have checked the API for this,
GET https://www.googleapis.com/calendar/v3/calendars/calendarId/events
If I pass event name with q='abc'. I able to get the matched event.
But particularly I want to pass the attendee name to get the event from calendar.
With the above API, I suspect we might get by using privateExtendedProperty or sharedExtendedProperty request parameters (propertyName=Name) but I didn't get. I stuck while passing the values and get the desired results.
The search for google calendar events is free text.
Free text search terms to find events that match these terms in any field, except for extended properties. Optional. (string)
Which means that you add the text you want to search for and it will search for that value in all of the fields its designed to search. You cant specifiy that it should check only items(attendees%252Femail) for example
example Just add the persons email address you want to search for then you will have to process it again on your end to ensure that its actually the attended thats set and not some other field.
I'm working with linking a user type to a particular field in google analytics. For example, if I want to know the top search words from the user type "Customers", I'm creating a custom report in GA and adding in the fields like search word along with the custom dimension (user-type). But the search word is not being linked to a particular user type.
Is there any way of knowing that a search word came in from this user type ? Does google do that internally or do we have to some how link which search words came from which user types?
If the User type is a dimension in the reports, you can use a new segment in the Overview of Site Search and use a Condition that includes in the report only the type "Costumers".
The report with this filter will only show data, as search term, from these specific type of user.
Hope I've helpd.
I've worked with Drupal 7 and Views for a while now and I'm familiar with what Views allow by default and what is available as modular add-ons. Today I've come across an issue with Contextual filters, which allow you to pass in an argument via the URL and use this to filter the returned data.
Normal filters on the other hand can be exposed as a form and also allow for a field combination module which means we can search field{1,2,3} all at once and display the data depending on this input. (views_combined_fields)
Is it possible to tell Views to show me all rows (WHERE field1="test" OR WHERE field2="test" OR WHERE field3="test") but by default, if I add in multiple contextual filters only one of them is being triggered. In this example the "test" value is obtained from the url /data/test.
My problem is that users have a default group, but they also have the option to be added into other groups which are set in the field{1,2,3} fields. My current view shows all users WHERE group = "test" but I want users who have a secondary or tertiary group of "test" to also be displayed in this list.
As i understood, you are talking about Views Arguments, watch the tutorial video from
MustardSeedMedia.com. And useful video about Views 3 User Interface