Table "Field"? Is that a system table??
↧
Forum Post: RE: Migration of data from NAV2017 to BC on cloud
↧
Forum Post: RE: Migration of data from NAV2017 to BC on cloud
Yes
↧
↧
Forum Post: RE: Migration of data from NAV2017 to BC on cloud
Ok, I'll take a look to that, thank you!
↧
Forum Post: How to add PDF attachment to a customized page in NAV2018
Hi Team, I was a able to add JPEG attachment to a customized page status::Open and also preview the JPEG attachment in the status::Pending Approval while send for approvals. But I was unable to add PDF attachment to a customized page, status::Open, CAL. Thanks
↧
Forum Post: How to Give Access to user only to Sandbox
How to Give Access to user only to Sandbox? in Business Central cloud
↧
↧
Forum Post: RE: Copy User Personalizations
Hi, I have been struggling with the same issue, and found this blog post from Roberto Stefanetti : https://community.dynamics.com/nav/b/arounddynamicsnavworld/posts/how-to-distribute-nav-views-and-user-personalizations It can be done with a SQL Query : INSERT into [DATABASE].[dbo].[User Metadata] ([User SID],[Page ID],[Personalization ID],[Date],[Time],[Page Metadata Delta]) SELECT 'S****', a.[Page ID], a.[Personalization ID], a.[Date], a.[Time], a.[Page Metadata Delta] FROM [DATABASE].[dbo].[User Metadata] a WHERE a.[User SID] = 'S****' [User SID] = ‘S****’ , Replace the SID with the SID of one USER . It worked for me on NAV 2017 with no side effect so far, but in my opinion, it is never a good idea to modify data directly in the SQL database, so be careful. Have a good day !
↧
Forum Post: RE: What's Dynamics 365 Business Central for IWs Cloud
Thank you, Yes I reached to the same page thru search.
↧
Forum Post: RE: How to Give Access to user only to Sandbox
What do you mean by "only sandbox"? Just don't add the user to your production tenant...
↧
Forum Post: RE: How to add PDF attachment to a customized page in NAV2018
Hi, You need to say a bit more if you want anyone to help you with an answer to why you customized page does work....
↧
↧
Forum Post: RE: How to add PDF attachment to a customized page in NAV2018
I added a button on the page action of my customized page called Attach PDF. When I click the Attach PDF button, it will open for attach pdf in the system. I need how to write the C/AL for attach pdf. I only know the ones for attach JPEG.
↧
Forum Post: RE: Migration of data from NAV2017 to BC on cloud
What I did a year back was I used the Field Table and exported that in the Customer Database - to an Excel file - Then I did the same in a standard version with same build no. - Then I did a pivot-table of in excel to find the new fields. With the list of the fields/ and tables I used a NAVdata backup into a local database that I then restored the backup into - with a final tast of INTELLIGENT INSIGHT to a cloud version. BUT.. you don't get changed tablerelations or anything like that, nor do you get the code that has changed or added. My original intent was to use rapidstart but I simply gave up on that - it just takes to long time, and adding all tables to rapid start gave several errors because when importing you cant do it i one go (eg. you will get a lot of errors when it comes to Global Dimension 1/2). NAVdata or access to the code is really the best solution here. - If I once again would be requested to solve a similar issue with no access to code - I would say that I cannot do the task, and the customer has to find someone else to do it.
↧
Forum Post: RE: Copy User Personalizations
Just notice one important thing about Configuration mode, you cannot see that they are made when you go into User Personalization. They are "hidden" i another table.
↧
Forum Post: RE: Copy User Personalizations
Yes, when a user makes personalizations, it is stored in the [User Metadata] table, but when personalizations are made on a profile via the Configuration mode, then it is stored in the [Profile Metadata] table, in that way it is available for every user with the same profile. Another thing to know about personalizations is that they can be different depending on where in the system the page is run.For example, if a user hides a column in the item list while accessing it from the sales module, that column won't be hidden in the same list while accessing it from the purchasing module.
↧
↧
Forum Post: RE: Dynamics BC task scheduler is only running once
Hi Nick, I am currently experiencing exactly the same issue. Did you manage to find out what was the problem? Best regards, Josh
↧
Forum Post: RE: Migration of data from NAV2017 to BC on cloud
Thanks for your answer palle So basically, what you've done is export to an excel the Field table from both versions, and compare it. But you can only get the new fields, not the code related to them.... And reading your last comment, I deduce that you didn't enjoy too much this task...
↧
Comment on Using off-shore resources in your Dynamics projects
great
↧
Comment on Using off-shore resources in your Dynamics projects
I just thought it may be an idea to post incase anyone else was having problems researching but I am a little unsure if I am allowed to put names and addresses on here. logo maker
↧
↧
Comment on Using off-shore resources in your Dynamics projects
It's superior, however , check out material at the street address. Relationship Rewrite Method
↧
Comment on Using off-shore resources in your Dynamics projects
It’s very informative and you are obviously very knowledgeable in this area. You have opened my eyes to varying views on this topic with interesting and solid content. Manifest Magic
↧
Blog Post: Dynamics 365 Business Central on-premise: checking extension’s status via Powershell
An interesting question pops out yesterday: with Dynamics 365 Business Central on-premise , how can I programmatically check if a particular extension is installed or not? The standard Powershell command (in the Microsoft.Dynamics.Nav.Apps.Management module) that gets informations about an extension in a specified Business Central Server instance is the Get-NAVAppInfo cmdlet (more info about it here ). Here I’ve executed Get-NAVAppInfo on one of my Dynamics 365 Business Central on-premise instances in order to check the status of a particular app: $ServerInstance = "MyServerInstance" $AppName = "Intelligent Cloud Base" Get-NAVAppInfo -ServerInstance $ServerInstance -Name $AppName The output is as follows: As you can see, there’s no the status of the extension (if it’s installed, synced, published or not in this tenant). If you want to retrieve the status details about a particular extension, you need to execute the Get-NAVAppInfo cmdlet with the -TenantSpecificProperties parameter. If you run the following Powershell command: Get-NAVAppInfo -Tenant default -ServerInstance $ServerInstance -Name $AppName -TenantSpecificProperties the output now is as follows: Now you have all the extension’s status details and you can take actions accordingly.
↧