Can we transfer some fields from one table to another table after perticular interval or on perticular date automatically?
(Like if there are vendor having different date of birth
If there today's date is the date of birth of any vendor that vendor will transfer into perticular table automatically)
0
Comments
What do u mean by CU1?
you can use NAS to do this.
[I think] :-k NAS is for other application, to enteract data between navision and other application.How it will help me to transfer data within navision tables.
Is there any other method??? ](*,) :-k
you can use for transfer within Navision itself as well. You can schedule time for automaticaly run some report or codeunti where you will have your transfer code for transfer datas between tables with condition what ever you like.
I think is very good solution, once run and then you can just relax
But our client dont have NAS license. :-k
Will u please explain......
Then just link to your transfer report or just function and run this form and it will be function. This is not very nice solution you have to have run this form all the time somewhere on server.
But I want to transfer data not on the basis of time but on the basis of date.
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
As far as I know is one NAS session ALWAYS free and usually already available in the customers licens.
The use of NAS vs. only CU1 (which needs to be adjusted anywhichof these2ways you choose) reduce the job to be done of only one user (NAS). Though it seems a bit too much development work for what you want.
If it really has to be an automatic Job, I would go for a Report which is Called from the CU1 when any User logs on. If necessary it could save a Datetime when last run, I dont see why though as with the proper Keys it'll be through in notime and it sholdn't matter that the Report is run by all Users.
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
Pulling my leg now do you
Cheers
after this customer bought the NAS session and some user sessions:
I know that the one free NAS session is part of the license since the granule 1010 Foundation Layer was included. But may be ther was some local difference, I do not know.
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
RIS Plus, LLC
Navision Application Server is a Navision client session without a user interface, that can run as a Windows Service. That is all there is to it.
The only real limitation is that you can't run any forms or dataports, or any other process that requires user interaction. So if you have a process that has a confirmation message that you want to automate, you will have to program that process to be able to handle no user interaction, like a default value in some setup, or a hard coded default value.
Read the documentation on the product CD, in the Doc folder there's a pdf called w1w1atas or something that will explain how to set it up.
RIS Plus, LLC
It's true that you don't have NAS to run single instance codeunits. It can as well be done from a central codeunit like the CU1 or manually. But to implement NAS as a background service, it's the back bone.
The clue with a single instance codeunit (introduced in v 2.65) is that it's unloaded only when the user close his session. This behaviour allows this particular Codeunit to react to events from Automation objects. F.ex. a timer tick as so often used in applications using NAS.
Codeunit 1 on the other hand is not defined as a single instance codeunit, it's more used like a central entry point for any internal/external access to global/customisable functions, which are accessed directly by ID and not by name.
Best Regards
You (and everyone replying) are looking at this from the wrong direction. You are trying to move data into a new table on a specific date. If you were saying you wanted to populate and post a journal or something similar, I could maybe see what you are doing. But in you example, it looks like you are trying to be able to have a list through a table of Vendors that have a birthday today.
This just not how it is done in Navision. Instead you have a form that when opened, sorts and filters the Vendor table by birth date, and shows only those records.
Rather than explain how you want to solve the problem, why not explain what the problem is and we can give you help with a solution.
RIS Plus, LLC