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

Forum Post: RE: How to create Item tracking line from C/AL

$
0
0
hi, You don't need to write in tempitemtracking, standard NAV "AS IS" write directly in table 337 "reservation entries" creating prospect lines for item tracking Handling. just in time for you... a simple example: Tracking C/AL code exampe that write in table 337 Reservation entries //tbl83 "Item Journal Line" - LOOP on jornal line existing lines rec83.RESET; rec83.SETRANGE("Journal Template Name" , 'ITEM') ; //filter template and batch rec83.SETRANGE("Journal Batch Name", 'INV2016'); LotLine := 0; IF rec83.FINDSET THEN REPEAT IF ItemHasLot(rec83."Item No.") THEN // function to check if item use LOTS BEGIN //Create Tracking record in table 337 rec337."Entry No." := MaxEntry337 +1; //recover MAX Entry No. from tbl 337 rec337."Reservation Status" := rec337."Reservation Status"::Prospect; rec337."Creation Date" := WORKDATE; rec337."Source Type" := 83; rec337."Source Subtype" := 2; rec337."Source ID" := 'ITEM'; rec337."Source Batch Name" := 'INV2016'; rec337."Source Ref. No." := rec83."Line No."; rec337.Positive := TRUE; rec337.VALIDATE("Location Code", rec83."Location Code") ; rec337.VALIDATE("Bin Code", rec83."Bin Code"); rec337.VALIDATE("Item No.",rec83."Item No."); rec337.VALIDATE("Quantity (Base)", rec83.Quantity); rec337.VALIDATE(Quantity, rec83.Quantity); rec337."Item Tracking" :=rec337."Item Tracking"::"Lot No." ; // IF LOT OR TRACKING in this sample LOT LotLine := LotLine+=; //Creation of LOT NO. if necessary to create a new one LOT IF STRLEN(FORMAT(LotLine)) = 1 THEN rec337."Lot No." := 'INV16-' + '00000' + FORMAT(LotLine) ; IF STRLEN(FORMAT(LotLine)) = 2 THEN rec337."Lot No." := 'INV16-' + '0000' + FORMAT(LotLine) ; //OR USE CASE IF YOU HAVE MORE CASES TO HANDLE IF rec337.INSERT(TRUE) THEN //If Write Tracking Line then Create LOT INFO Records BEGIN //Lot Info creation recLotNoIInformation.INIT: recLotNoIInformation.VALIDATE("Item No.", rec337."Item No."); recLotNoIInformation.VALIDATE("Lot No." , rec337."Lot No."); recLotNoIInformation.INSERT(TRUE); END END; UNTIL rec83.NEXT = 0; i hope that cab be usefull...

Forum Post: RE: Item costing and value

$
0
0
if you want to import to price list to the vendor price list you can do that with a custom processingonly report, which updates the price list reading from an import file (xml, csv, ...). you can also use an xmlport, rapid services or table excelbuffer, if your data are in excel format. best would be a customization, a new action button in page vendor price list, which starts the needed action.

Forum Post: RE: How to create Item tracking line from C/AL

$
0
0
you can use CU 99000830 "Create Reserv. Entry" functions CreateEntry, CreateReservEntry, CreateReservEntryFor, CreateReservEntryFrom.

Forum Post: RE: Module to Download

$
0
0
for costing: msdn.microsoft.com/.../hh169036(v=nav.80).aspx msdn.microsoft.com/.../hh169040(v=nav.80).aspx msdn.microsoft.com/.../hh168954(v=nav.80).aspx www.youtube.com/watch inventory/warehouse mgmt: msdn.microsoft.com/.../hh997363(v=nav.80).aspx msdn.microsoft.com/.../hh997397(v=nav.80).aspx msdn.microsoft.com/.../hh997361(v=nav.80).aspx www.youtube.com/watch

Forum Post: Synchronization of contact with customer takes a while.

$
0
0
Hi, I use Synchronization of contact with customer and vice versa. This is working correct. The only problem is that it takes a while before mutations are visible in the other table. Sometimes i takes more then a minute. How does synchronization exactly work en do i have influence on the 'mutation time'. Thanks, Patrick

Forum Post: RE: How to create Item tracking line from C/AL

$
0
0
Thanks you! on a note: I triede to find bind code in rec337 but I could not find I so I left out thist line rec337.VALIDATE("Bin Code", rec83."Bin Code"); Is that a problem? Also. Do you have an example on how to reserv from this reservation line from a sales order line? This has really been a big help.

Forum Post: How can i create new workflow template in nav 2016?

$
0
0
Hi All, How can i create a new workflow template in navision 2016 and i know how to use existing templates. if any one see the post their first question is in which scenario you want workflow template? give me any example to create a new template for example take Project Management absence approval. can any one suggest me... Regards, Ramesh.

Forum Post: RE: Synchronization of contact with customer takes a while.

$
0
0
i followed your scenario. following msdn.microsoft.com/.../hh165205(v=nav.80).aspx i enabled the sync mechanism in the marketing setup. then restarted the nav service. to test the sync i changed phone no. and address 2 in some of the customers checked, if it's also changed in the contact card. i also tested vice versa. the changes were done immediatly. please compare your steps with my steps, restart the nav service and try again. if the behavior remains, then the reason could be a customization, which lowers down the sync process.

Forum Post: RE: How can i create new workflow template in nav 2016?

$
0
0
best you follow community.dynamics.com/.../how-to-create-a-workflow-template

Forum Post: RE: Manufacturing module question on allocation of product on the GL.

$
0
0
you could develope a custom report for that issue.

Forum Post: RE: How can i create new workflow template in nav 2016?

Blog Post: Where Used Tool

$
0
0
Dynamics Nav does not ship with a Where-Used-Tool, although it is often needed. Idyn has developed a widly used Toolset, the Object Manager Advanced (OMA). It is very helpful, contains e.g. a Where-Used-Tool, but it has it’s prize. There are only few alternatives, e.g. “Statical Prism”. Some days ago i read about a free Tool called “GDT Where Used”. Looks very nice. It lists all Nav objects and has a “Where used” function. It supports Nav 5, Nav 2009, Nav 2013. Would be nice, if there was a newer version. it’s worth to test it. You can download it here . Filed under: Uncategorized

Blog Post: Compare Dynamics Nav Versions

$
0
0
Sometimes it’s needed to compare the features of different Nav versions, especially in scenarios, where there is a decision: Upgrade or not? For that MS has debveleoped a very helpful site: The MS Dynamics Nav Feature Comparision Tool. You can find it here . You get relevant information not only about the main feature topics. You get also detailed info about modules and features, also about Licensing. Especially interesting is the View “Compare all”. This is the overview, which can be an important decision helper for questions: Which nav version fits best for my company Should i upgrade the current nav version? To which version? Which features do i get with a special Nav version as against Dynamics AX, SAP or an other ERP System. Filed under: nav 2009 , nav 2013 , nav 2013 r2 , nav 2015 , nav 5 , Nav Overview , publications Tagged: dynamics nav , versions

Forum Post: RE: Synchronization of contact with customer takes a while.

$
0
0
Hi Jonathan, I have indeed some custom fields. I also had some problems with that. See my previous post: community.dynamics.com/.../185679 I fixed those problems and what remains is the speed problem. Perhaps I have to live with that? Thanks, Patrick

Forum Post: RE: NAV versions overview

$
0
0
Hi Peik, sorry for the delay in my reply, I was in holiday. Happy New Year. Here the values you asked me: NAV 7 / 2013 R2 >=70720 and = 71040 and = 80190 Good Luck Sergio

Forum Post: RE: Invoice report Layout

$
0
0
Hi, Configured, I can read now the fields but can't insert a customer image into the layout. Best Regards, Toni

Blog Post: Cumulative Update 34 for Microsoft Dynamics NAV 2013 has been released- By Dynamics Team

$
0
0
Cumulative Update 34 includes all application and platform hotfixes and regulatory features that have been released for Microsoft Dynamics NAV 2013. For more details see below link :- https://blogs.msdn.microsoft.com/nav/2016/01/06/cumulative-update-34-for-microsoft-dynamics-nav-2013-has-been-released/ Filed under: Cumulative Updates

Forum Post: RE: Invoice report Layout

$
0
0
Hi Toni, Customer picture field (Field 89) is already there in Customer Table (Table 18). You can add the field to the report dataset and then to the layout.

Blog Post: Cumulative Update 27 for Microsoft Dynamics NAV 2013 R2 has been released- By Dynamics Team

$
0
0
Cumulative Update 27 includes all application and platform hotfixes and regulatory features that have been released for Microsoft Dynamics NAV 2013 R2 For more details see below link:- https://blogs.msdn.microsoft.com/nav/2016/01/06/cumulative-update-27-for-microsoft-dynamics-nav-2013-r2-has-been-released/ Filed under: Cumulative Updates

Forum Post: RE: Invoice report Layout

$
0
0
Hi, Thank you for your fast reply. I already did this: Select the image source: Database Use this field: not sure - =Fields!Customer_Picture.Value - =Convert.ToBase64String(First(Fields!Customer_Picture.Value, "DataSet_Result")) Use this MIME type: image/bmp Size: fit proportional But the image is not added, I can see see only its border. Best regards, Toni
Viewing all 64865 articles
Browse latest View live


Latest Images

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