Przejdź do głównej zawartości
Wersja: 2.0
informacja

You are currently viewing documentation for CompuTec ProcessForce 2.0, which is still supported.

We recommend upgrading to CompuTec ProcessForce 3.0, which is a plugin installed and managed through CompuTec AppEngine 3.0, built on .NET 8.

However, please note that CompuTec AppEngine 3.0 has a different architecture, and all CompuTec components, including the CompuTec ProcessForce 3.0 plugin, need to be updated together to ensure full compatibility.

Before starting your installation or upgrade process, we strongly recommend reviewing the CompuTec AppEngine 3.0 and CompuTec ProcessForce 3.0 documentation.

Implementation Notes

When customizing CompuTec ProcessForce during implementation, it's important to follow a consistent naming convention for any User-Defined Fields (UDFs) added to CompuTec ProcessForce objects. This avoids potential naming conflicts in future updates or support scenarios.


Why Use a Prefix?

Adding a unique prefix to the User-Defined Fields (UDFs) name - typically based on the partner or customer company code ensures:

  • Field names are distinct from those delivered by CompuTec ProcessForce
  • You avoid conflicts during future upgrades, support cases, or patches
  • The source of customization is clearly identifiable

Step-by-Step: Naming UDFs with a Prefix

  1. Choose a Prefix
    Use a 2-3 character identifier derived from your company or customer name.
    Example: AB for "AlphaBeta Consulting"

  2. Create Your Field Name
    Append the field purpose after the prefix using an underscore (_) separator.
    Example: AB_weight

  3. Resulting Database Field SAP Business One will automatically store it in the database as: U_AB_weight

Example

Let's say you want to add a custom field for weight to CompuTec ProcessForce Bill of Materials (BOM) form:

  • Chosen Prefix: AB
  • Custom Field Name: weight
  • Resulting UDF Name: AB_weight
  • Stored in Database as: U_AB_weight

This naming pattern will help future developers, support teams, and upgrade tools recognize and isolate custom content from standard CompuTec ProcessForce logic.


Summary

StepAction
1Choose a short, unique prefix (e.g., your company abbreviation)
2Add UDFs using Prefix_FieldName format
3Verify the UDF appears in the database as U_Prefix_FieldName
4Maintain this standard for all future UDFs