0
Category:
STATUS DETAILS

Comments

It is common accounting don't want users to change, or even view Vendor's Bank account. Have a workflow function will be great, currently, we use User Permission and Change Log to control and track Vendor Bank account and Customer Bank account.

Category:

We have many customer convert from GP asked about Trial balance report with all dimension. Directly list all existing combination. We found some 3rd party can do. Consider the cost, we just developed the report.

Category:

For Additional information related to the feature:Use different general ledger accounts for payables, receivables | Microsoft Learn

Category:

This is long long overdue. Most systems have this simple capability.

Category:

Dear all, we recently migrate to BC24 on premise from NAV2015 (that it has), and really this functionality has been the worst thing of this version. We need this function, so exists in older versions.Regards.

Category:

Yes, I support it. This possibility is needed.

Category:

Thanks Shravan. It is great that finally we are getting basic functionality restored, but it only allows 5 pre-defined columns that are very basic. Is there anything in the roadmap to allow users to define the columns (or attributes) to be exported?

Category:

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:

  • 1
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 500