Project Code
[WEBDEV]
Last Edit: September 15, 2017 the alpha360 team
In every WEBDEV application the first code that executes is the Project code.
Here you will find the global variables, the global structures, the connections and the code to connect to the ERP.
Most of the code here is self descriptive and it is also heavily commented and easy to follow - 99% of the code in the project code area is shared by all configuratons [WINDEV and WEBDEV].
The first page opened in the WEBDEV implementation, is the Page_Connect page/procedure.
It is called - manually - in the SP_LoginWEB() procedure - which also loads and activates all the applications, functional areas and procedures of the application.
Here is the code :
// ... Activate Applications and Functional Areas ...
a360_ACTIVATE()
// ... Load all available procedures of the implementation into the Dynamic Arrays .....................
a360_LoadCRM()
a360_LoadINVENTORY()
a360_LoadACCOUNTING()
a360_LoadPURCHASES()
a360_LoadSALES()
a360_LoadPRODUCTION()
a360_LoadDASHBOARDS()
a360_LoadRESOURCES()
a360_LoadADMINISTRATION()
a360_LoadSYSTEM()