0
Category:
STATUS DETAILS

Comments

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;}

Category:

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.

Category:

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.

Category:

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.

Category:

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.

Category:

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.

Category:

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.

Category:

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

Category:

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

Category:

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

Category:

  • 1
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
  • 487
  • 488
  • 489
  • 500