Administration and Programming Guide for OS/400
To call a language environment:
- Use a FUNCTION statement to define a function that calls the language
environment.
- Use a function call to the language environment.
For example:
%FUNCTION(DTW_SQL) custinfo() {
select customer, custno from customer.data
%}
...
%HTML(REPORT) {
@custinfo()
%}
[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]