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 CUSTNAME, CUSTNO from ibmuser.customer
%}
...
%HTML(REPORT) {
@custinfo()
%}
[ Top of Page | Previous Page | Next Page | Index ]