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
  1. Open the Code Editor from the routine element by right clicking the element and selecting
    Code Editor
    .
  2. In the Code Editor, navigate to the line number and Character column where you want to create the missing routine implementation.
  3. Select action icon to the left of the component the missing implementation to open the Code Actions menu.
  4. Select
    Create missing routine implementation
    .
Provide Feedback
Have questions or feedback about this documentation? Please submit your feedback here.
Normal