Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Data gathering functions should use a common prefix. This will significantly help when identifying performance problems. Remember that each function should do only do one thing at a time = : either gather data or manipulate the data somehow, ; do not mix these two.

Proposal:

  1. Functions that are querying Price Builder PriceBuilder (= calling functions api.find() or api.findLookupTableValues()) use the prefix "find" , e.g. findSalesOrgs().
  2. Functions that are querying Price Analyzer PriceAnalyzer (= calling executeQuery or executeSqlQuery)) use the prefix "load" , e.g. loadTransactions().

DF/DS/DM Fields

...