Need POI Category Search Clarification - azure

I think Azure Mapping API Service does not return any data for a search using Military Zip Codes. Is that correct? Also, which POI categories or query terms would provide search results for the following:
the standard ZIP Code, which refers to a post office for a city or a division of a city that has mail service
the P.O.-Box-only type is used for P.O. boxes at various facilities
unique ZIP Code types given to organizations that receive large quantities of mail
Thank you very much for your assistance.

Unfortunately today we don't support military zip codes. To submit feature requests, please go to Azure Maps Feedback (UserVoice):
To search zip codes, you can for example call our Get Search Address API (https://learn.microsoft.com/rest/api/maps/search/getsearchaddress), if you know that your input is zip code or an address.
For example, you can use the following query to search zip codes:
https://atlas.microsoft.com/search/address/json?subscription-key=[your_key]&api-version=1.0&query=98007&countrySet=US

Related

SUITETALK- Netsuite searchAdvanced gives line price in base currency

Can anyone please help us with this?
We are using Netsuite advanced search to pull sales order for different subsidiary. We are able to get all the line items(except tax itmes) but its consists the amount in base currency. Is there any way we can get response with exact amount visible in UI.
Also Its very hard to understand the basic of Netsuite SUITE TALk- SOAP. Do you recommend any resources that will ease learning?
Thanks
Just an update with this question, with Advanced search we are able to get the foreign currency of Subsidiary using fxCost in columns But line items doesn't have this option. This causes whole another problem for us. Then we decided to use SAVED SEARCH. Saved search provides us feature to disable foregin currency just by choosing CONSOLIDATED EXCHANGE RATE to none. We are using saved search ID in the Advanced search paramater ie using savedSearchScriptId from Netsuite Schema.
Hope it would be helpful to anyone who is strugglign with this kind of issue.
Thanks
For tax line in fx currency, prefer to do Tax Amount/exchange rate.

Cognos 10.2.2 how to look at what reports are being sent to a specific recipient?

For Cognos 10.2.2 or Cognos 11
How can we look at what reports are being sent to a specific recipient?
Maybe there is an easy way to query the content store?
I did notice some third party tools (Motio) and any feedback/advice would also be helpful
I assume you know some basics of querying the Content Store, basic data exploration techniques, and SQL, so I won't go over that.
Look in CMOBJPROPS26.DELIVOPTIONS. You'll need to parse the text. There are several fields you may be looking at:
to, cc, and bcc contain CAMID values that relate to your external
directory namespace (?). You can look these up on CMOBJPROPS33.
toAddress, ccAddress, and bccAddress contain email addresses
(user#domain.com).
You'll use CMOBJPROPS26 to join to the rest of the query by CMID. The objects referenced by CMOBJPROPS26 are not reports. In my environment, I have emails related to objects of these classes:
agentTaskDefinition
historyDetailRequestArguments
jobDefinition
jobStepDefinition
reportVersion
schedule
You'll need to figure out how each of those relates to reports. You may be able to use CMOBJECTS.PCMID = CMOBJECTS.CMID or you may need to go through CMREFNOORD1, CMREFNOORD2, CMREFORD1, and/or CMREFORD2.

can Google Places API do a fuzzy search

Can I set Google Places API to do a fuzzy search? It seems Google map search (which use JavaScript) does that automatically, but it appears the REST API does not. I am frustrated by having to type in the accurate hotel name....any spelling errors bring up no result.
Try Text Search requests,
The Google Places API Text Search Service is a web service that returns information about a set of places based on a string — for example "pizza in New York" or "shoe stores near Ottawa" or "123 Main Street". The service responds with a list of places matching the text string and any location bias that has been set.
The service is especially useful for making ambiguous address queries in an automated system, and non-address components of the string may match businesses as well as addresses. Examples of ambiguous address queries are incomplete addresses, poorly formatted addresses, or a request that includes non-address components such as business names.

Sphinx "reverse" search

We have a website where users put up ads for stuff they want to sell, with parameters such as price, location, title and description. These can then be searched for using sphinx and allowing users to specify min- and maxprice, a location with a searchradius (using google maps) etc. Users can choose to save these searches and get emails when new ads appear that fit their search. Herein lies the problem: We want to perform a reverse search every time an ad is posted. With the price, location, title and description as parameters we want to search through all the saved "searches" and get the ones that would have found the ad. The min- and maxprice should just be performed in a query i suppose, and some Quorom syntax to get all ads with at least 2 or mby just 1 occurance in the title/description. Our problem lies mostly in the geo-search. How do we find all searches where the "search-circles" would include our newly posted location without performing a search for every saved search?
That is the main-question, any comment on our suggested solution to the other problems is also very welcome. Thank you in advance / Jenny
The standard 'geo-search' support on sphinx should work just as well on a Prospective Index, as a normal retrospective search.
Having built a sphinx 'index' of all the saved searches...
And you run a query using the 'ad' as the search query:- rather than the 'filter' using a fixed radius, you just use the radius from the attribute (ie the radius stored on the particular query) - if using the API cant use setFilterRange directly, need to use setSelect, to make a new virtual attribute.
$cl->setSelect("*,IF(#geodist<radius,1,0) as myfilter");
$cl->setFilter('myfilter',array(1));
(and yes, the min/maxprice can just be done with normal filters too - just inverting the logic to that you would use in a retrospective search)
... the complication is in the 'full-text' query, if the saved search is anything more than a single keyword, but you appear to have already figured out that part.

Exposing Sharepoint Metadata to web service search

Our organization has started a project hoping to use sharepoint to create Electronic Records for Clients rather than the paper method which tends to have documents get lost etc.
I have been tasked with interfacing with sharepoint to find documents associated with a given client. Each document has sharepoint metadata that stores a ClientNumber, but I am having issues finding how to use the QueryService web service to search on this specific field. There are about 30 document libraries I am to search through, so believe the QueryService is probably a better fit for this particular situation than ListService.
I am using VB code to do the searching, and the following is the querytext I am sending to the QueryEx Function.
...<QueryText type='MSSQLFT'>
SELECT rank, title, path, Description, Write, Size, author, sitename, FileExtension, HitHighlightedSummary, HitHighlightedProperties, keywords, IsDocument from Scope() WHERE FREETEXT(DEFAULTPROPERTIES,'" & Me.ClientNumber.Text & "') AND IsDocument = 1 ORDER BY Rank DESC -- </QueryText>...
I would like to be able to include something in the WHERE clause that explicitly says a match must be found in the ClientNumber field but I have yet to find a way to do this, and as a result of this we are getting results where other metadata or one of the document properties such as document size is equal to the client number.
I have found documentation that there is a way to expose metadata through property mappings and this then becomes searchable. I however cannot find a way this is done in WSS 3.0, is this a MOSS 2007 only feature, or a feature available in 2010?
If anyone can tell me if there is possibly some other way to search based on metadata, or give some insight as to where I should be looking for more information it would be greatly appreciated.
You need to install the Search Server Express from Microsoft, it is free and it gives you the MOSS search engine, where you can do anything you want

Resources