Search found 18 matches

by Gabe-Hein Dijkstra
Friday 26 April, 2024 - 15:05
Forum: Modeling in Enterprise Dynamics
Topic: Save the output product
Replies: 4
Views: 28

Re: Save the output product

Hi Angeliki, What you could consider is placing each model inside a 'Composition Container'-atom. If you open the Atom Editor (Ribbon > Tools > Atom Editor) you can save each composition container separately. Via the Atom Editor, tab Insert, you can load the models. For the ExcelActiveX atom I advis...
by Gabe-Hein Dijkstra
Friday 26 April, 2024 - 09:49
Forum: Modeling in Enterprise Dynamics
Topic: Save the output product
Replies: 4
Views: 28

Re: Save the output product

Hi Angeliki, Welcome to the forum! Instead of using two separate models, you are able to merge two models. This can be done in the Ribbon > File > Merge. If, for some reason, this is not possible, you will have to transfer the relevant data between the models using Excel. In ED this can be done usin...
by Gabe-Hein Dijkstra
Tuesday 05 March, 2024 - 12:04
Forum: Modeling in Enterprise Dynamics
Topic: Time Scheduling in Enterprise dynamics
Replies: 4
Views: 555

Re: Time Scheduling in Enterprise dynamics

Hi panda_mic2000, There unfortunately is not an option to link Excel directly to the User Events atom. I think it is best to read in the Excel table into ED on reset and store it in a table. These settings can be found on the tab "Tables" of the ExcelActiveX atom. The function "Cell()...
by Gabe-Hein Dijkstra
Tuesday 05 March, 2024 - 10:53
Forum: Modeling in Enterprise Dynamics
Topic: Time Scheduling in Enterprise dynamics
Replies: 4
Views: 555

Re: Time Scheduling in Enterprise dynamics

Hi panda_mic2000,

Thanks for the further explanation. I was just commenting on your other post. As also stating there, maybe the "User Events" atom could prove useful. I will be happy to help you further if you run into any problems.

Kind regards,
Gabe-Hein
by Gabe-Hein Dijkstra
Tuesday 05 March, 2024 - 10:50
Forum: Modeling in Enterprise Dynamics
Topic: Master Planning In Enterprise Dynamics
Replies: 1
Views: 224

Re: Master Planning In Enterprise Dynamics

Hi panda_mic2000, Nice to hear that you are using Enterprise Dynamics for your thesis! A possible solution could be using a "Table" atom in combination with a "User Events" atom. The User Events atom is a bit more advanced. Its main purpose is to repeatedly execute code according...
by Gabe-Hein Dijkstra
Friday 06 October, 2023 - 10:04
Forum: Modeling in Enterprise Dynamics
Topic: Maintenance process - one product multiple servers
Replies: 3
Views: 6724

Re: Maintenance process - one product multiple servers

Hi Marcus, Thank you for providing clarification. To create a model without user-defined functions, I recommend adding six queues: One for products that need to go through servers 1, 2, and 3. One for products that need to go through servers 1 and 2. Etc. I suggest using the Label function to track ...
by Gabe-Hein Dijkstra
Thursday 05 October, 2023 - 17:06
Forum: Modeling in Enterprise Dynamics
Topic: Maintenance process - one product multiple servers
Replies: 3
Views: 6724

Re: Maintenance process - one product multiple servers

Hi Marcus,

Welcome to the community!

Before answering your question, first some clarification: Must products in your model go through the servers in a particular order? Or do you want the sequence to depend on the availability of the servers?

Kind regards,
Gabe-Hein
by Gabe-Hein Dijkstra
Tuesday 11 April, 2023 - 09:55
Forum: Enterprise Dynamics 4DScript
Topic: Labelvalue in tabel
Replies: 3
Views: 25368

Re: Labelvalue in tabel

Hi Mads, I think you are already quite close to the correct code. Two remarks: A string should be placed between closed brackets, hence [DueDate] instead of "DueDate". Instead of GetLabel , I would recommend using Label . See the Help for more information. I hope this helps! Kind regards, ...
by Gabe-Hein Dijkstra
Wednesday 07 December, 2022 - 15:31
Forum: Enterprise Dynamics 4DScript
Topic: Help needed in basic 4DS Programming
Replies: 4
Views: 10721

Re: Help needed in basic 4DS Programming

Hi Max, It is always nice to help, so no worries. :D As mentioned before, "i" cannot be used on the SendTo. Why this is the case has a quite technical answer, but I will try my best to keep it simple. In Enterprise Dynamics everything revolves around events and event handlers. Event handle...
by Gabe-Hein Dijkstra
Tuesday 06 December, 2022 - 10:32
Forum: Enterprise Dynamics 4DScript
Topic: Help needed in basic 4DS Programming
Replies: 4
Views: 10721

Re: Help needed in basic 4DS Programming

Hi Max, Welcome back to the forum! The problem lies in the consecutive if-functions in your SendTo. The results from the previous if-statements are overwritten later on. From the help: "Syntax: If(e1, e2 {, e3}) Parameter 1 (e1) is the test statement. If this test statement returns 1 (True) par...