Title: | *OLD* ALL-IN-1 (tm) Support Conference |
Notice: | Closed - See Note 4331.l to move to IOSG::ALL-IN-1 |
Moderator: | IOSG::PYE |
Created: | Thu Jan 30 1992 |
Last Modified: | Tue Jan 23 1996 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 4343 |
Total number of notes: | 18308 |
VMS 5.4 ALL-IN-1 2.4 When using continuation characters in a boilerplate, is it possible to split one long command line into lots of seperate lines? The example in the documentation for using MERGE continuation markers seems to only use discrete symbols which have meaning on their own. The customer wants to use something like: <for profil do get .username:20><-> <.prvapp><-> <.direct><-> etc etc. This doesn't seem to work here, and it gives blanks for everything but the initial line. Am I missing anything out, or will this ever work? Steve.
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
289.1 | I'm afraid not but ... | UTRTSC::BOSMAN | We're just sugar mice in the rain | Fri Mar 20 1992 12:15 | 15 |
Hi, When you want a list of profil-fields use something like: <&OA FOR PROFIL DO .FX MERGE_LINE <.USER>> I don't think (maybe someone will correct me) a &OA function can be split onto seperate lines. What you can do instead is something like: <&OA GET #f = " function 1 " ><-> <&OA GET #f = #f " \function 2 " ><-> <&OA GET #f = #f " \function 3 " ><-> <&OA GET OA$FUNCTION = #f > Success, Sjaak. | |||||
289.2 | Is this what you need? | PAJERO::RHOTON | John Rhoton @TNO - DTN 871.7947 | Fri Mar 20 1992 13:26 | 7 |
I tried the following which worked for me. John <&oa for profil do get oa$merge_line = .user:20<-> .prvapp<-> .direct> |