getModuleName()
Returns the front call module name.
Syntax
(r FrontCallRequest) getModuleName()
RETURNS STRING
- r is the front call request object.
Usage
A call to this method returns the front call module name. If the function is a
standard.feInfo()
front call, the module name returned is
"standard
".
You must declare a variable of type ggc.FrontCallRequest
. For example:
DEFINE fcRequest FrontCallRequest
DEFINE moduleName STRING
...
LET moduleName = fcRequest.getModuleName()