Quantcast
Channel: Microsoft Dynamics NAV
Viewing all 64865 articles
Browse latest View live

Blog Post: Cannot build the page XX. The metadata object Table 0 was not found.

$
0
0
This error can occur during or after an upgrade process. Cause: In the source table of the page there is a field with a wrong tablerelation, in that case with value “Table 0”. That can occur, if the selected table in the table relation was moved, removed or renamed, especially, if that table is a custom table or a table part of a module. Solution: Edit the source table of that page, check all fields with tablerelations. Replace value “Table 0” with the correct value. cheers Filed under: dynamics nav , error Tagged: table relation , upgrade

Forum Post: RE: Unable to set Unit_Price on sales line via webservice

$
0
0
Hi, Solved it, sort of. Feeling that i have to do a lot of roundtrips with this stuff, but it works... What i ended up doing is this, and i think it is what Ishwar meant: I read the order to get the keys to use for update I run a update, creating a new salesline. Here i set all that NAV accepts in this update, omitting Unit_Price. I read the result of this, and loops trough all keys to save them in an array. At the same loop i also strip the keys so that i get the last part of it, split at "9;" . I the find the highest number of this key-part, and that has to be the last record. Then i use the key belonging to the latest record, to do a new update, setting the price. My code for this probably bloated and considered "bad practice" or something like that, but as i said, i am an amateur :P Regards, and thanks! -- Kim $service = new NTLMSoapClient($pageURL); //Set some vars $blanketorder = new stdClass(); $sq = new stdClass(); $update = new stdClass(); // Read order to update foreach ($varelinjeny as $order1) { $blanketorder = array('No' => $order1[onr]); $result = $service->Read($blanketorder); $blanket = $result->OrderCard; $key = $result->OrderCard->Key; $sq->Key = $key; //$sq2->Key = $key; $ii = 0; $i = -1; foreach ($varelinjeny as $ordre1) { $ii++; unset ($salesLine); $salesLine = new stdClass(); $salesLine->Type = 'Item'; $vare = explode("|",$ordre1[varenr]); $salesLine->No = $vare[0]; //$salesLine->Unit_Price = '123'; if ($ordre1[otf] == 'on') { $salesLine->One_time_fee = 'true'; } else { $salesLine->One_time_fee = ''; } $salesLine->Antall_opprinnelig_bestil = $ordre1[antall]; if (!empty($ordre1[nocat])) { $salesLine->Username = $ordre1[nocat]; } if (!empty($ordre1[linespeed])) { $salesLine->Line_Speed = $ordre1[linespeed]; } if (!empty($ordre1[binding])) { $salesLine->Subscription_Time = $ordre1[binding];//date('Y-m-d', strtotime('+1 years')); } if (!empty($ordre1[smbnr])) { $salesLine->Communication_Number = $ordre1[smbnr]; } $sq->SalesLines->Blanket_Sales_Order_Line = $salesLine; $update->OrderCard = $sq; $result = $service->Update($update); foreach ($result->OrderCard->SalesLines->Blanket_Sales_Order_Line as $finditem){ $linekey[] = $finditem->Key; //strip keys to the last part only split at "9;" $keytoedit[] = substr($finditem->Key, strpos($finditem->Key, "9;")+ 2); } //find the highest value of key-part $value = max($keytoedit); //find the full key for this part foreach ($linekey as $lkey){ if (strpos($lkey,"9;".$value ) !== false) { $ekey = $lkey; echo "Key to edit: ".$ekey; } } echo "Highest key-part:".$value; $key2 = $result->OrderCard->Key; $sq->Key = $key2; //assigning here the "difficult" stuff $salesLine2->Key = $ekey; $salesLine2->Unit_Price = "123"; $sq->SalesLines->Blanket_Sales_Order_Line = $salesLine2; $update->OrderCard = $sq; $result = $service->Update($update); } } echo "We got no errors in placing the order! To make sure; doublecheck by clicking here: $mamutid "; } catch (Exception $e) { echo 'Crap, we hit an error: ' . $e->getMessage() . ' '; }

Forum Post: RE: Microsoft FLOW and NAV 2017 connection issues

$
0
0
Hi, did you ever get any success with this, I have the identical problem many thanks

Forum Post: RE: Open statement Posting Issue

$
0
0
Check the permissions of the SUPER role in the company/database you're working in. This particular table might be missing in the super role's permissions. Possible reason: This might be a customized table which isn't added to super.

Forum Post: RE: Adding records (by code) to "record link" table

$
0
0
almost 3 years later it might be useful to someone: http://wp.me/p6WwU9-9j

Forum Post: RE: Error of importing data on Power BI Gateway from NAV2013 R2

$
0
0
The queries you are using are from NAV 2016 so there might me be some fields that may not exist in NAV 2013 R2, did you compile those objects successfuly, can you verify those queries and check if No. and Posting Date fields it is using from which table and if those table in your current db has those fields.

Forum Post: RE: Reading XML Docs

Blog Post: Supply chain: What's new in Microsoft Dynamics 365 for Operations (AX7), Part 1

$
0
0
Microsoft Dynamics 365 is a new approach to business applications which brings together Dynamics CRM, AX, NAV and Office 365 strengths with a unified application platform and a common data service (known until very recently as a "common data model"). Common data service is going to be the backbone and foundation of entire Dynamics 365 offering as an out-of-box business database for storing and managing business entities. With additional capabilities coming from Azure, Power BI, Cortana Intelligence, Azure Machine Learning, Microsoft Flow and Microsoft PowerApps, this new form of business-critical application is expected to scale new heights and empower businesses to focus and grow like never before. In this and a second article, I intend to sha... read more

Forum Post: RE: Microsoft FLOW and NAV 2017 connection issues

Forum Post: RE: Reporting Data Setup error in NAV 2017

$
0
0
Ishwar, This is under 'Assisted Setup' in NAV 2017. Not sure why the screenshot did not come through. I pasted and inserted it using the 'Paste from Word' box and it showed on the message, but after I posted the message, the screenshot just disappeared. Appears to be playing some Halloween tricks :) Trying again, have pasted the screenshot directly below. Let's see if this comes through. Thanks for your response :) Kind regards, -Vasu

Forum Post: RE: Reading XML Docs

$
0
0
Here is my current soloution, The only issue with this is it isn't finding the value within the . Any suggestions? recManufacturingSetup.FINDFIRST; objFiles.RESET; objFiles.SETFILTER(Path, '%1', recManufacturingSetup.AegisFolderPackoutRoot); objFiles.SETFILTER(Name, '@*xml'); objFiles.SETRANGE("Is a file", TRUE); IF objFiles.FINDSET(FALSE, FALSE) THEN REPEAT recAegisPackoutImport."Folder Path" := objFiles.Path; recAegisPackoutImport.Filename := objFiles.Name; IF recAegisPackoutImport.FINDLAST THEN recAegisPackoutImport."Line No." := recAegisPackoutImport."Line No." + 1 ELSE recAegisPackoutImport."Line No." := 1; recAegisPackoutImport.INSERT; UNTIL objFiles.NEXT = 0; //Get file names from table and remove end tags IF recAegisPackoutImport.FINDSET THEN REPEAT PackoutFileName := COPYSTR(recAegisPackoutImport.Filename,1,12); //Check Whse Serial Batch List for existing Serial No. whseSerialBatchList.RESET; whseSerialBatchList.SETRANGE("No.", PackoutFileName); IF NOT whseSerialBatchList.FINDFIRST THEN BEGIN whseSerialBatchList."No." := PackoutFileName; whseSerialBatchList.Insert; //Read XML Doc and Find Identifier. CLEAR(xmlDoc); xmlDoc := xmlDoc.XmlDocument(); xmlDoc.Load(recAegisPackoutImport."Folder Path" + recAegisPackoutImport.Filename); xmlRoot := xmlDoc.DocumentElement(); xmlNodeListPackoutData := xmlDoc.GetElementsByTagName('InventoryItem'); //ll xmlNodePackoutData := xmlNodeListPackoutData.Item(intNode); //Find the Value Within Identifier FOR intNodeBatch := 0 TO xmlNodeListpackoutData.Count() -1 DO BEGIN SerialNoText := cuXMLDOMManagement.FindNodeText( xmlNodePackoutData, 'Identifier'); //Add Batch No to Serial No Information recSerialNoInformation.RESET; recSerialNoInformation.SETRANGE("Serial No.", SerialNoText); IF recSerialNoInformation.FINDFIRST THEN BEGIN recSerialNoInformation."Batch No." := PackoutFileName; recSerialNoInformation.MODIFY; CLEAR(SerialNotext); END; END; END; CLEAR(PackoutFileName); UNTIL recAegisPackoutImport.NEXT =0;

Blog Post: Benefits of an Integrated Microsoft Dynamics NAV and CRM Solution

$
0
0
Business software solutions like Microsoft Dynamics CRM and Microsoft Dynamics NAV help companies with limited IT experience keep up in a world of big data. Companies can gain improved visibility of their datasets by integrating their customer and enterprise data into a central streamlined integrated Microsoft Dynamics NAV and CRM solution. Working with a connector allows businesses to map entities and create effective relationships between customer order data and product fulfillment. It's often wise for businesses to implement software incrementally. An ERP partner can help companies implement an integrated Microsoft Dynamics NAV with CRM solution by assisting companies with mapping individual datasets and testing performance. In the end, integration should speed up information processes through automation and common workflows. Users are less likely to make mistakes when automatic data processes collect details and create visibility of how customer demands influence enterprise projects. At the same time, managers with complete visibility of CRM and ERP data can make better decisions. Company decision-makers need all relevant information before they make a move. The TM Group described other benefits businesses can gain through Microsoft Dynamics CRM and Microsoft Dynamics NAV integration in a recent blog post . By The TM Group, Inc. Related Posts 3 Benefits of an Integrated ERP System Financial Management for Wholesale Distribution with Dynamics NAV-The Need for an Integrated Solution Fieldpoint Field Service Management Solution Integrated With Microsoft Dynamics GP

Forum Post: RE: Microsoft FLOW and NAV 2017 connection issues

$
0
0
hi, good news, i asked two hours ago to my friend Suvidha to write a post about this issue.. she was wraiting a post about this topic..... just in time..... please read this post... (is about Dynamics 365 but can be useful also for NAV 2017) suvidhablogpost.wordpress.com/.../my-first-microsoft-flow-with-dynamics-365-for-financials good reading..

Forum Post: RE: Mobile App - Setup

$
0
0
Till now the same problem, could not connect to the server in Mobile App. I have follow all steps of this video. But cannot solve the problem.

Blog Post: Nav 2017 – First videos

$
0
0
Found some cool new videos about Nav 2017 … Whats New in Microsoft Dynamics NAV 2017 – Part 1  ( Saurav Dhyani ) Whats New Microsoft Dynamics NAV 2017  (Cosmoconsult) What’s New Microsoft Dynamics NAV 2017  (BSS, german) cheers Filed under: dynamics nav , nav 2017 , new version , Video

Forum Post: Drop Shipment and Tracking

$
0
0
I setup a sales order with Drop Shipment. I run Requesition worksheet to create associated purchase orders item tracking code = Lot number. Item (order tracking policy)= Tracking & Action Msg. Item Reserve = Optional When I try to set lot numbers to the item in the purchase order I get beloved message: (this is a different screen capture, the real one is similar but Positive = No) When I dive into Reservation Entry table, I can see that due to Order Tracking Policy configured for the item (Tracking & Action Msg.), original entry of the purchase order line has been distributed among new sales orders, in other words, the purchase line has been "soft-assigned" (not hard reservation) to sales lines, and that causes the error message. When I delete those reservation entries and restore purchase quantity to its original value in the order line, I can insert lot number and error message does no show up. I wonder if this is not a bug, since a reservation entry created from a drop shipment should not be "tracked" since it is completely "reserved" for the sales order? How should I avoid this error? Where should I say to de item tracking management codeunit not to track a purchase order that is a drop shipment? NB.- Item setup must remain the way it is now.

Blog Post: MSDW Podcast, October 31, 2016: Examining the new Dynamics SMB partner cloud survey with Linda Rose

$
0
0
Get the MSDW Podcast RSS feed or subscribe on  iTunes  or  Stitcher . The feel-good conference season is over, with its keynotes, success stories and D... read more

Blog Post: 10 tips to Microsoft Dynamics NAV

$
0
0
(Please visit the site to view this video) Microsoft Dynamics NAV - Explore more with this video. http://www.microsoft.com/en-us/dynamics/erp-nav-overview.aspx

Forum Post: RE: Mobile App - Setup

$
0
0
Hi This guide was helpful for me before community.dynamics.com/.../microsoft-dynamics-nav-2016-how-to-configure-phone-client

Forum Post: To the developers of the Customer Source

$
0
0
To download a NAV version from the customer source, I have to: 1. Open it with Internet Explorer (At least Edge should work since you are pushing that thing) 2. Have to put IE into compability mode 3. Have to switch off the popup blocker So in fact, I have to do everything wrong what I can from a security standpoint, to download a Microsoft product from a Microsoft site using a Microsoft OS and a Microsoft browser. Seriously guys???? And on top of all of this: With a click on "Contact us", I get to msn.com. Following the link " Learn more about File Exchange and how to use it. " brings me to a dead page. C'mon...
Viewing all 64865 articles
Browse latest View live


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