Hello,
navigation using CTRL+left/right mouse click is not working in this situation:
Package contains function myFunc, variable lrService is an object instance, containing function GetAllowedCurrencies where I want to navigate via CTRL+right click. It's not working, parser is unable to find correct function/procedure in object and navigate there?
FUNCTION myFunc(inIdDocument NUMBER) RETURN myObjectResult IS
lrService myObjectService := myObjectService();
lsResult myObjectResult;
BEGIN
lsResult := lrService.GetAllowedCurrencies(inIdDocument);
RETURN lsResult;
END;
Regards.
navigation using CTRL+left/right mouse click is not working in this situation:
Package contains function myFunc, variable lrService is an object instance, containing function GetAllowedCurrencies where I want to navigate via CTRL+right click. It's not working, parser is unable to find correct function/procedure in object and navigate there?
FUNCTION myFunc(inIdDocument NUMBER) RETURN myObjectResult IS
lrService myObjectService := myObjectService();
lsResult myObjectResult;
BEGIN
lsResult := lrService.GetAllowedCurrencies(inIdDocument);
RETURN lsResult;
END;
Regards.