Skip to content

JDE Source Code Management

Disclaimer
There is no standardized or proper source code management across various JDE development tools. Due to the nature of JDE's architecture, development artifacts are often stored within the blobs / specs / database, making traditional version control systems like Git challenging to implement. While some teams adopt workarounds such as exporting objects, using OMW archives, or integrating with external SCM tools, these solutions require manual effort and do not provide full traceability like modern source code repositories.

Workflow

graph TD
    A[Check-in Code] --> B[Extract Code]
    B --> C[Commit to Git]
    C --> D[Push to GitHub]
    D --> E[Review]