Create a missing routine implementation
When you create a routine, it contains the forward declaration and the implementation.
The forward declaration contains the
extern
keyword, such as
extern routine myRoutine()[];
. If the forward declaration is specified but the implementation does not exist, you
receive the error
Missing implementation for external routine RoutineName.
Add a valid implementation. Error code: DS0170.
You must create the
missing routine implementation file to resolve this error.To create a missing routine implementation
- Open the Code Editor from the routine element by right clicking the element and selectingCode Editor.
- In the Code Editor, navigate to the line number and Character column where you want to create the missing routine implementation.
- Select
to the left of the component the missing implementation to open the Code Actions menu.
- SelectCreate missing routine implementation.
Provide Feedback