Chapter Contents |
Previous |
Next |
SAS Companion for the OS/390 Environment |
infile inputdd abcd;
Only the first 4 characters of the user exit module name in the INFILE or FILE statement are significant; SAS forms the load module name by adding the constant IFUE to these characters. Therefore, in the previous example, SAS loads a module named ABCDIFUE.
You can also specify the name of the user exit module by using the ENGINE= option in the FILENAME statement or FILENAME function.
Note: If you use an INFILE/FILE user exit with a DATA step view, specify the name of the exit in the FILENAME statement or FILENAME function that you use to allocate the file, instead of in the INFILE or FILE statement. (If you specify the exit name in an INFILE or FILE statement, the exit is ignored when the view is executed.) For example:
filename inputdd 'my.user.exit' abcd;
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.