Quantcast
Channel: NAV Three Tier — mibuso.com
Viewing all 10032 articles
Browse latest View live

PDFJS inside NAV Page

$
0
0
Hi,

Was wondering if anyone else has tried and succeeded in making a javascript addon for Dynamics NAV 2013+ that can embed a PDF file into a NAV page.
I have done a dotnet DLL (Browser) based solution in the past before - but too many issues with this, and no support on all clients anymore.

I think I am close, but probably far far away :smile:

I am looking a lot at how this one was done - a signature image box in NAV. https://code.msdn.microsoft.com/windowsdesktop/Extensibility-for-the-7600738d

I'm just trying to use the simple example from here to begin with
https://github.com/mozilla/pdf.js/blob/master/examples/learning/helloworld64.html


If I get it to work, I will post it here ! Shame it's not part of the standard NAV addins :)

Sorry, I am not javascript wizz'

Update 1: Below is what I managed to do - it works quite basic, with some issues, but at least more stable than a Adobe browser addin solution.
Beyond my skills to enable text-selection and zoom capabilities, but next/prev. page works. I transfer a base64 bigtext to the Javascript function PutPDF.

var PDF;
var pdfdata;
function initpdf() {
    PDF = new ns.PDFControl();
    PDF.init();
    RaiseAddInReady();
}

// Event will be fired when the control add-in is ready for communication through its API.
function RaiseAddInReady() {
    Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('AddInReady');
}

// Event raised when the update PDF has been called.
function RaiseUpdatePDF() {
    Microsoft.Dynamics.NAV.InvokeExtensibilityMethod('UpdatePDF');
}


function PutPDF(PDFData,pageno) {
    PDF.updatePDF(PDFData,pageno);
}


(function (ns) {

    ns.PDFControl = function () {
        var canvas,
            context;

        function init() {
            createControlElements();
            context = canvas.getContext("2d");
        }

        function createControlElements() {
            var PDFArea = document.createElement("div");
            var canvasDiv = document.createElement("div");
            canvas = document.createElement("canvas"),
            canvas.id = "pdfCanvas";
            canvas.clientWidth = 700;
            canvas.clientHeight = 1000;
			canvas.width  = canvas.clientWidth ;
		    canvas.height = canvas.clientHeight;
            canvas.className = "pdfCanvas";
            canvasDiv.appendChild(canvas);
            PDFArea.className = "PDFArea";
            PDFArea.appendChild(canvasDiv);
            document.getElementById("controlAddIn").appendChild(PDFArea);
        }

        function updatePDF(PDFData,pageno) {
			pdfData = atob(PDFData);
//			PDFJS.workerSrc = 'http://www.example.dk/tmp/pdf.worker.js';
			PDFJS.getDocument({data: pdfData}).then(function DisplayPDFNAV(pdf) {
				pdf.getPage(pageno).then(function DisplayPDFNAV(page) {
				  var scale = 2.0;
				  var viewport = page.getViewport(scale);
				  // Prepare canvas using PDF page dimensions.
				  canvas.height = viewport.height;
				  canvas.width = viewport.width;
				  //Render PDF page into canvas context.
				  var renderContext = {
					canvasContext: context,
					viewport: viewport
				  };
				  page.render(renderContext);
				});
     	    	 RaiseUpdatePDF();

			  });
		     PDFArea.appendChild(canvasDiv);
			 pdfData = "";

        }

        return {
            init: init,
            updatePDF: updatePDF,
        };
    };
})(this.ns = this.ns || {});


0q0m2r5ngxqj.png

Assembly List - Update an Assembly

$
0
0
Hey Guys

What is the nice and clean way to update an assembly from Visual Studio to Navision?

When I create my DLL file, I need to change the assembly name for Navision to registre that a new assembly is created.
If I just update the assembly number and/or file version, then it doesn't update it on the list of assemblies.

Thanks
/left

Customer webportal options?

$
0
0
The current situation for one of our customers is as follows:

- Heavily customized NAV 5.0 database
- Database is constantly evolving (new objects, extra users, ...)
- Possible NAV 2017 upgrade is only planned to start end of next year
- Extranet page with SSRS report accessible by their customers

The requirement - by end of this year - is to provide a future-proof 'tool' (customer portal) for their customers to share / access information.
Their customers need to be able to:

- register - limited - data into the database (provide a number of data entry forms)
- search for information (provide a number of data overview forms)
- get a quick data overview using charts (in replacement for the SSRS report)
- access this customer portal from anywhere and any device (having an 'app' / responsive website is mandatory)
- (Nice to Have) Upload / download documents

Knowing the conditions that customer is still on NAV 5.0, what are the options to meet the above requirements in the limited timeframe available?

- Perform technical upgrade to NAV 2009 R2, allowing use of webservices.
- Create a custom responsive website (from scratch) using webservice communication. Full customizable. Timeframe / budget would be a killer in here.
- Build a solution in NAV 2017 (gives faster result as far as web / app access). Very customizable. Adds an extra complexity to communicate / replicate with the current NAV 5 database. Requires a NAV license update, which is not really an option (due to possible license updates on current NAV 5 version). Might be costly based on the number of external (limited) users required. (https://dynamicsuser.net/nav/b/peik/posts/turn-the-dynamics-nav-web-client-into-a-customer-portal-in-two-hours)
- Sharepoint integration (with NAV 5)
- Look for a NAV add-on (Anveo? Armour?) - Is it really extensible to integrate charts / Power BI / ... Would this be a future-proof option?

PS: What would be the answer in case the customer was already running NAV 2017?

Permission for third-party page object not working

$
0
0
Hi,

We have a third-party addon that uses a page numbered in the 88000 range as a web service page. Everything works in our development database, and I can open the page directly.

However, in our live database, when I try to run the page, or if the user runs a function that access the page via webserivce, we receive the error:
You do not have the following permissions on Page General Journal DP: Execute
Page Edit - General Journal DynamicPoint must close.

The license file installed in our DEV and LIVE databases are identical. The page objects are identical and were imported from DEV to LIVE. We've restarted the service tier with no effect.

Has anyone seen this type of problem before?

Thanks

Ron

APAC Localisation in NAV 2017

$
0
0
Hi All,

Does anyone know where is APAC localization in NAV 2017? we have APAC localization in NAV 2009 R2 (refer to the screenshot)

q41muc3fxry3.png

Thanks in advance.

Set Zoom % on report preview mode

$
0
0
Hi,
Is is possible to set the zoom % to 150 for instance, on preview mode on a report?
2663mrudtfkr.png

Customer has changed from NAV 2009 classic to NAV 2016 and is cumplaining the text is too small.
On 2009 we run the report, changed the zoom % and when run the report again, the % were the same, on this version this doesn´t happen.

NAV 2013 R2 Save As PDF

$
0
0
Ever have an issue with a nav 2013 r2 report where a certain text box would get excluded from the PDF output file (save as pdf on request page)?

This works when you save as word and shows up on print previews, even shows when you save as pdf from the print preview screen?

Clickonce Deployment

$
0
0
I'm trying to use click once deployment on NAV 2013. I've been following instruction in http://msdn.microsoft.com/en-us/library/hh997056%28v=nav.70%29.aspx and fail :(.

Q1: Is it has to be Microsoft Windows SDK for Windows 7 and the .NET Framework 4. that must be installed? where? what if my server is Windows 2008 R2 x64? is it OK installing Windows SDK for Windows Server 2008 and .NET Framework 3.5? The Windows SDK for Windows 7 is failed to install in windows 2008 R2 :(.

I've tried this:
1. Install the Windows SDK for Windows Server 2008 and .NET Framework 3.5 and execute the similar syntax as shown in the guide.
Result = Error when calling the Microsoft.Dynamics.Nav.Client.application

========================================error start====================================
PLATFORM VERSION INFO
Windows : 6.1.7600.0 (Win32NT)
Common Language Runtime : 4.0.30319.17929
System.Deployment.dll : 4.0.30319.17929 built by: FX45RTMREL
clr.dll : 4.0.30319.17929 built by: FX45RTMREL
dfdll.dll : 4.0.30319.17929 built by: FX45RTMREL
dfshim.dll : 4.0.41209.0 (Main.041209-0000)

SOURCES
Deployment url : [url=file://192.200.10.23/fileshare/clickonce/Deployment/Microsoft.Dynamics.Nav.Client.application]file://192.200.10.23/fileshare/clickonc ... pplication[/url]
Deployment Provider url : [url=file://192.200.10.23/fileshare/clickonce/Deployment/Microsoft.Dynamics.Nav.Client.application]file://192.200.10.23/fileshare/clickonc ... pplication[/url]
Application url : [url=file://192.200.10.23/fileshare/clickonce/Deployment/ApplicationFiles/Microsoft.Dynamics.Nav.Client.exe.manifest]file://192.200.10.23/fileshare/clickonc ... e.manifest[/url]

IDENTITIES
Deployment Identity : Microsoft Dynamics NAV 2013 - INSERT ANY UNIQUE AND STABLE DEPLOYMENT DIFFERENTIATOR HERE, Version=7.0.0.0, Culture=neutral, PublicKeyToken=0000000000000000, processorArchitecture=x86

APPLICATION SUMMARY
* Installable application.

ERROR SUMMARY
Below is a summary of the errors, details of these errors are listed later in the log.
* Activation of \\192.200.10.23\fileshare\clickonce\Deployment\Microsoft.Dynamics.Nav.Client.application resulted in exception. Following failure messages were detected:
+ The customHostSpecified attribute is not supported for Windows Forms applications.


COMPONENT STORE TRANSACTION FAILURE SUMMARY
No transaction error was detected.

WARNINGS
* The manifest for this application does not have a signature. Signature validation will be ignored.
* The manifest for this application does not have a signature. Signature validation will be ignored.

OPERATION PROGRESS STATUS
* [1/3/2013 3:45:49 PM] : Activation of \\192.200.10.23\fileshare\clickonce\Deployment\Microsoft.Dynamics.Nav.Client.application has started.
* [1/3/2013 3:45:49 PM] : Processing of deployment manifest has successfully completed.
* [1/3/2013 3:45:49 PM] : Installation of the application has started.

ERROR DETAILS
Following errors were detected during this operation.
* [1/3/2013 3:45:49 PM] System.Deployment.Application.DeploymentException (ManifestSemanticValidation)
- The customHostSpecified attribute is not supported for Windows Forms applications.
- Source: System.Deployment
- Stack trace:
at System.Deployment.Application.ApplicationActivator.DownloadApplication(SubscriptionState subState, ActivationDescription actDesc, Int64 transactionId, TempDirectory& downloadTemp)
at System.Deployment.Application.ApplicationActivator.InstallApplication(SubscriptionState& subState, ActivationDescription actDesc)
at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)
at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)

COMPONENT STORE TRANSACTION DETAILS
No transaction information is available.

========================================error finish===================================


and the manifest is:
========================================manifest start====================================
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#&quot; xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1">
<asmv1:assemblyIdentity name="Microsoft.Dynamics.Nav.ClickOnceClient" version="7.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<description asmv2:iconFile="Icon.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<co.v1:customHostSpecified />
</entryPoint>

<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="4" minorVersion="10" buildNumber="0" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.ReportViewer.WinForms" version="10.0.0.0" publicKeyToken="b03f5f7f11d50a3a" language="neutral" processorArchitecture="msil" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="System.Windows.Forms.DataVisualization" version="3.5.0.0" publicKeyToken="31bf3856ad364e35" language="neutral" processorArchitecture="msil" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Microsoft.Dynamics.Framework.Patterns.dll" size="71952">
<assemblyIdentity name="Microsoft.Dynamics.Framework.Patterns" version="7.0.0.0" publicKeyToken="31BF3856AD364E35" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1&quot; />
<dsig:DigestValue>Q7pCfW3dbyYmhTlsVfKgvnzTujM=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Microsoft.Dynamics.Framework.UI.dll" size="1172744">
<assemblyIdentity name="Microsoft.Dynamics.Framework.UI" version="7.0.0.0" publicKeyToken="31BF3856AD364E35" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1&quot; />
<dsig:DigestValue>yTtozy82/zcHaceHpPPoXFyKQUk=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Microsoft.Dynamics.Framework.UI.Extensibility.dll" size="21800">
<assemblyIdentity name="Microsoft.Dynamics.Framework.UI.Extensibility" version="7.0.0.0" publicKeyToken="31BF3856AD364E35" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1&quot; />
<dsig:DigestValue>eOsCyUasUlmbNgrQQ0Nurh5PKCI=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Microsoft.Dynamics.Framework.UI.Mapping.dll" size="16664">
<assemblyIdentity name="Microsoft.Dynamics.Framework.UI.Mapping" version="7.0.0.0" publicKeyToken="31BF3856AD364E35" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1&quot; />
<dsig:DigestValue>PHaJKd0vK8YyYNGx533VLPXObrU=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Microsoft.Dynamics.Framework.UI.Navigation.dll" size="26472">
<assemblyIdentity name="Microsoft.Dynamics.Framework.UI.Navigation" version="1.5.0.0" publicKeyToken="31BF3856AD364E35" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1&quot; />
<dsig:DigestValue>gSmcApsRlHlybHh3pdVsISn391o=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Microsoft.Dynamics.Framework.UI.UX2006.dll" size="87320">
<assemblyIdentity name="Microsoft.Dynamics.Framework.UI.UX2006" version="7.0.0.0" publicKeyToken="31BF3856AD364E35" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1&quot; />
<dsig:DigestValue>dgy8kpTS/73RZ5aP23HY7Zmd8AU=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Microsoft.Dynamics.Framework.UI.UX2006.WinForms.dll" size="119080">
<assemblyIdentity name="Microsoft.Dynamics.Framework.UI.UX2006.WinForms" version="7.0.0.0" publicKeyToken="31BF3856AD364E35" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1&quot; />
<dsig:DigestValue>G4yn0lhS2XRaxHXwipyDVjEDeiU=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Microsoft.Dynamics.Framework.UI.Windows.dll" size="99096">
<assemblyIdentity name="Microsoft.Dynamics.Framework.UI.Windows" version="7.0.0.0" publicKeyToken="31BF3856AD364E35" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1&quot; />
<dsig:DigestValue>hWzUWfUtFJONCI58s/7EAjzqzZk=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
......
========================================manifest finish====================================


Is there any clue what's gone wrong?

Regards,

Philipus

Change webservice default language NAV 2017

$
0
0
Is it possible for a NAV 2017 Web Service to change its language to other than US-EN? There's an option field in the Nav page with German captions but inside the .NET App it only shows the English captions.

Standard way to expose Item Image using webservice ?

$
0
0
Hi guys,
Is there a standard way to expose Item Images using web services in NAV-2017. I have already exposed all other attributes of items using web service. I know this can be done through customization (by converting the mediaset to bytes and etc..) as in one of our other projects we successfully send the item images to magento site. But for now we want some standard way of exposing it. So, I am looking forward for any help.
Regards,
Bilal

NAV 2016 Disable Print to Word Ctrl-W / Print to Excel Ctrl-E / Print Ctl-P

$
0
0
Hi,

Does anyone know if there is a way to disable the "Print and Sent" and "Print" functions in NAV2016 for a specific page? We have a page that has confidential data that the user may view, but management does not want them to print.

Please don't respond with comments like "User can always print-screen" or bypass in some other way. I understand that - we are trying to respond to a specific management request. If you have a suggestion of how it CAN be done (disable), please do so.

I have tried creating an action on the page with the same shortcut (e.g. Ctrl-P), but that does not work.

Any ideas would be appreciated.

Thanks

Ron

Cannot Publish NAV extention - The form specified for the subject is not one supported or known by..

$
0
0
Hello there,
need to install NAV 2017 CU 7 extensions to migrated database from 2015, but receive this error. Extension files are taken from installation file, and i can't find reason for this error.
NAvModelTools are imported (2017 version). There does not seem to be a problem with path or instances(checked) and PowerShell ISE is run as administrator

8oeh7vbduq7o.png

Ty for your answers.

#extensions

Cside is not installed at the server, where as they are running it from finsql, is that a problem?

$
0
0
On saving changes in NAV13 system throwing below error -

Could not load file or assembly 'Microsoft.Dynamics.Nav.DotNetBridge, Version=7.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

Cside is not installed at the server, where as they are running it from finsql, is that a problem?

Job queue failure email notification

$
0
0
Hi,

I have NAV 2017 and want to create an email if a job in the job queue fails.

is there a workflow for this or what will be the best way to achieve this

Thanks

FC

Could not download reference symbol in Visual Studio Code Dynamics Nav

$
0
0
Hi Everybody,

The AL language extension is already available to install in a local machine (see Roberto's post). It's the July Update.

I have installed Dynamics NAV Tenerife July update.

I select "local server", so the launch.json looks like this:
3pziqi7jw9ue.png

app.json looks like this:
8121ntsxi5bd.png



I am getting the error while publishing extension in Visual Studio Code(Nav 2017). And I cannot download the symbols. The console output looks like this:

evr6cqajsx3j.png


iaf4mcsyvgux.png


Picture lost on "Edit in Outlook" when creating body from Word layout in Document Sending (2017)

$
0
0
Hi guys
When using the Email Body function and a picture has been added to the word layout of the report, and you want to edit the email in outlook before sending, the picture is lost.
If sending the mail without editing it in Outlook (SMTP), the picture is fine.
The REPORTSAVEASHTML creates a imbedded img src base64, but i think the recommended way is using an attachement and a CID reference.
If i open the temp genereate html file on the server, all looks well. It seems that Outlook is the culprint.

Has anyone played with this?

I would like to avoid referencing external url for the picture.

Replenishment.

$
0
0
Hi Guys - a question on replenishment:

The requirement is to have NAV create 1 line in the Planning Worksheet to cover multiple sources of demand. The source of demand could be both from sales orders and from minimum inventory level on the item card.

For example:
- Minimum stock qty. set up as Q=10 on Item card
- Sales Order A demanding Q=13
- Service Order B demanding Q=22
- The inventory on hand is zero.

I want the planning worksheet to come up with 1 line with a Q = 45, and the ability to drill down into some sort of information that gives you the breakdown from above telling the user that the Q=45 comes from the 3 different sources.

Do you think this is possible?

Thanks!

ADCS return value to miniform

$
0
0
i've looked and cannot find an answer to this question...so i'm going to lay out a simple example.

Miniform has one field where you scan something into the input.

How can i print what the user scans onto the miniform and return it to the user?


example of Miniform:

Scan Field: ___________


User Scans "SO12345"
Miniform AFTER user scans SO12345:


Scan Field: SO12345

You Just Scanned SO12345



What is the best way to return something to a miniform?

MESSAGE('You just Scanned %1',Scanfield) does not work.

ERROR('You Just Scanned %1',ScanField) DOES work, but this doesn't seem right, and sometimes freezes up.

RunObject Property

$
0
0
can I use RunObject Property of an action button based on a condition ? thanks for the help :)

Powerapp - errors creating the connection to Dynamics NAV

$
0
0
When trying to create a powerapp connection to NAV 2017 (or the Developer Preview sept update). I ran in to the problem that powerapps cannot establish the connection to my NAV database.

I tried to follow the instructions in the tutorial on youtube by Gunter Peeters.

As you can see I have two different errors depending on the use of https or http.

8fa1y4x9t5v5.jpg
vckgqccdaka3.jpg

Some information on the azure vm I'm using:
- It's created by selecting it from the gallery in azure.
- SSL is enabled with a self-signed certificate.
- Webclient and mobile app are working.
- When browsing to the webservice URL's with IE or Chrome, everything works fine.
- Users are set up with NAV user/password.

What am I doing wrong here?


Viewing all 10032 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>