Public Routine Call
Syntax
![]()
Command
Mandatory parameter Optional parameter Mandatory keyword Optional keyword |
<Global Performable/DLL Routine>.<Routine> ([<Parameter list>])
Description
Executes the specified Public Routine of a Global Performable Routine or Global DLL Routine, passing the supplied parameters and returning an optional defined result value.
Diagram
Returned value type
Depends on the defined result type in the routine.
Parameters
Parameter | Description |
<Global Performable> | Name of the global performable routine or global DLL routine which holds the routine(s) to be called. |
<Routine> | Name of the routine to be called. |
Parameter List | Expressions separated by commas, specified in correspondence with the parameter list that applies to the routine that is called. |
Examples
GP_01.Main ()
GP_01.Customer (gd-13)
country_code := GP_01.Search_country_code (country)
GP_01.Customer (gd-13)
country_code := GP_01.Search_country_code (country)
Relevant page