Skip to main content

Vote (0) Share
's profile image

on

Comments (0)
's profile image Profile Picture

John Butler on 11 Dec 2024 22:31:39

RE:

A base single Instance CU would be work well. No need to recreate with extensions.The SI CU just needs to store KeyValue pairs to be used later in a process. Keep it simple.codeunit 55108 SingleInstanceKeyValues{  SingleInstance = true;   var    KeyValues: Dictionary of [Text, Text];  procedure SetKeyValue(KeyName: Text; KeyValue: Text)  begin    if KeyValues.ContainsKey(KeyName) then      KeyValues.Remove(KeyName);    KeyValues.Add(KeyName, KeyValue);  end;  procedure GetKeyValue(KeyName: Text) KeyValue: Text  begin    if KeyValues.ContainsKey(KeyName) then      exit(KeyValues.Get(KeyName))    else      exit('');  end;  procedure RemoveKeyValue(KeyName: Text)  begin    if KeyValues.ContainsKey(KeyName) then      KeyValues.Remove(KeyName);  end;}

's profile image Profile Picture

Valerie Whitt on 11 Dec 2024 21:04:55

RE:

This function is very important to the TSC team as PO/SO are attached daily. We also view attachment on a daily basis for research purposes when processing customers payments.

's profile image Profile Picture

Bogdan Pankovsky on 11 Dec 2024 20:50:54

RE:

Great observation, Hylke! It is a must implement idea! Small details like currency abbreviations can have a big impact on user experience, especially in a global context. It’s impressive how such tweaks can enhance clarity and usability.

's profile image Profile Picture

Sandra Lopez on 11 Dec 2024 20:41:24

RE:

it is beneficial to us to be able to refer back to attachments, as well as it is a requirement for some customers to attach POD'S PO etc. when sending invoices.

's profile image Profile Picture

Martha Amezcua on 11 Dec 2024 20:38:31

RE:

This function is very important to the TSC team as PO/SO are attached daily. We also view attachment on a daily basis for research purposes when processing customers payments.

's profile image Profile Picture

Cecilia Stanhope on 11 Dec 2024 20:37:35

RE:

This function is very important to the TSC team as PO/SO are attached daily. We also view attachment on a daily basis for research purposes when processing customers payments.

's profile image Profile Picture

Diane Dean on 11 Dec 2024 20:31:00

RE:

This function is very important to the TSC team as PO/SO are attached daily. We also view attachment on a daily basis for research purposes when processing customers payments.

's profile image Profile Picture

Jana Penny on 11 Dec 2024 20:14:15

RE:

We need this feature because it is difficult to track documents on partial shipments without it.

's profile image Profile Picture

Chyrstal Martin on 11 Dec 2024 20:07:50

RE:

We need this to help with our day to day activities.

's profile image Profile Picture

Brittany Damtoft on 11 Dec 2024 19:22:32

RE:

This should be a standard feature, allowing companies to meet a basic business need.