Date() function not recognized by Access 2013 web application - ms-access-2013

I am attempting to create a query using the design mode of Access 2013 (because I cannot find the SQL view). This is a web app btw.
I have a column, LastUpdated, of the Date type.
I want to find all where LastUpdated is more than 6months old.
Anytime is use Date() I get "The expression you entered has a function name that MS Access can't find."

Access 2013 uses a different date function for Access 2013 Web Apps. In the web apps, use Today()
DateDiff is also slightly different for web apps.

Related

Microsoft Dynamics CRM SDK : Check if a field value is changed in entity

Apart from Plugins, Is there any way to check if value in entity record has changed using C# MS Dynamics CRM SDK? (Online version)
You could:
Use an on change of field workflow.
Use an on change of JavaScript function (client side only).
Programmatically examine the audit logs.
Programmatically check for record changes every 5 minutes from an external application.

Getting column names of a view using CRM web API

I’m using the CRM Online 2016 Web API. Now the only information I have is a savedQuery or userQuery record. With this I can get all records of the view, but I also want the column names of this view.
Is there an easy way to get column names using the web API with only the information of a savedQuery/userQuery record?
I already have an indirect way of getting the column names(using the LayoutXML).
Have a look into Use the Web API with Dynamics 365 metadata, this allows you get to information about the entity structure.
Not 100% if this will be better than using the Layout XML, but worth considering.

UNKNOWN_EXCEPTION: Destination URL not reset. The URL returned from login must be set in the Salesforce

In windows Phone application, i added Enterprise.wsdl(obtained from my salesforce login id) as reference. I'm able to authenticate using Loginresult. But while using Create the above expense are thrown.
Using SoapHeader class in Web application inherited System.Web.Services.Protocols.SoapHeader so referred the Server url and id.
It is not possible to use web in Windows phone. Plz help if you know any samples to solve it
Part of the results for the login call are a serverUrl, this url should be used to make all subsequent requests, typically in .NET you just set the .Url property of your stub to the provided value. While there are no win-phone specific examples, there are lots of .NET examples in the docs
My experience has been that you can't import the Partner or Enterprise WSDLs to a Windows Phone 7 project.
With Windows Phone 7 projects you can add a Service Reference (for WCF), but not a Web Reference.
Whenever I've imported the Salesforce WSDLs to a standard .NET project I've needed to use a Web Reference to get the APIs working correctly. Something about how WCF doesn't support the Salesforce WSDL defined SOAP headers that are needed to specify the session details.
I found using the REST API and JSON.NET to be the easiest with Windows Phone 7 projects.
That said, my phone app only works with Developer, Enterprise and Unlimited Salesforce editions. Professional and Group editions get the API_DISABLED_FOR_ORG error. I think I need to get the app certified to work with those editions.

Display SSRS report with ASP.NET MVC 3 application on Windows Azure

I've been searching for almost 2 days, but I still don't manage to do what I want.
I have a ASP.NET MVC3 application on Windows Azure, and I would like to give to users report made with SQL Server Reporting Services.
I've created a test report, published it on my Sql Azure server, and I'm able to access it with the URL. (Even tough I have to connect with my Username/Password, and I don't like that).
I want my users to click on a link/button on my application, and without any actions of them, a PDF or HTML version of my report open and they can print it.
I've had a WebReference of my Sql Azure report server, but I don't know what to do to athenticate programmatically and how to have my reports.
Help me StackOverflow, you're my only hope.
The easiest way, I think, is to use the Report Viewer to render your report on a page. Since it's a web control, you might need to combine the ASP.NET Web Form and MVC together, which means only this page is Web Form while others are MVC.
Then you can pass your authentication information into the Report Viewer, and specify the remote report path and name, and the parameters needed to run your report. The Report Viewer itself has the feature to download the report in many formats, such as PDF, Word, etc.
Use the SSRS web service is another way, when you want to get the report content programmatically. It's a standard web service, so you can pass your authentication same way you did to any other web services. I think it should be something like Credential and use.
Credential = new NetworkCredential(username, password);
Hope this helps.
Thanks for your answer !
I've found this sample my Microsoft with working code exemple to work with Sql Azure. Hope it can help somebody one day.

How do i get MVC working with Dynamics CRM?

I am using MVC 3 and Dynamics CRM 2011.
IIS 7 on 2008
I placed my app in the ISV folder.
This application works outside of CRM.
My controller name is User, siteurl/user does not work
site/user/index does work
it constantly adds default.aspx to the end of the url. I am running in 4.0 integrated mode.
I have removed the default.aspx entry from default document. Though it's fine to hang out on a standard IIS.
Please I am in so much mental pain.
You won't get it working in a supported way.
The ISV directory is deprecated and should not be used anymore. It was never really ment to host complete web applications. It was meant for small apps which run in the context of Dynamics CRM. Instead use a separate website which connects to Dynamics CRM
Dynamics CRM 2011 has it's own URL-rewriting which extracts the information about the tenant from the requested URI. This will conflict with your app

Resources