[U2] Mass Disabling Triggers

2009-08-06 Thread Israel, John R.
There are 5 arguments passed with a trigger: STATUS.FLAG DICT.FLAG File Pointer Key Record The File Pointer is a handle to the OPENED file, not the NAME of the file. How would I determine the name of the file that has the trigger assigned to it? Purpose: We have MANY triggers. Due to

Re: [U2] Mass Disabling Triggers

2009-08-06 Thread Trevor Fulton
FILEINFO should do it. IF FILEINFO(FilePointer,17) = 'INVWHS' THEN .. Trevor. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Israel, John R. Sent: 06 August 2009 16:39 To: 'U2 Users List' Subject: [U2] Mass

Re: [U2] Mass Disabling Triggers

2009-08-06 Thread George Gallen
] On Behalf Of Israel, John R. Sent: Thursday, August 06, 2009 11:39 AM To: 'U2 Users List' Subject: [U2] Mass Disabling Triggers There are 5 arguments passed with a trigger: STATUS.FLAG DICT.FLAG File Pointer Key Record The File Pointer is a handle to the OPENED file, not the NAME of the file

Re: [U2] Mass Disabling Triggers

2009-08-06 Thread Israel, John R.
, August 06, 2009 11:46 AM To: U2 Users List Subject: Re: [U2] Mass Disabling Triggers FILEINFO should do it. IF FILEINFO(FilePointer,17) = 'INVWHS' THEN .. Trevor. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf

Re: [U2] Mass Disabling Triggers

2009-08-06 Thread Perry Taylor
Look at FILEINFO() - Original Message - From: u2-users-boun...@listserver.u2ug.org u2-users-boun...@listserver.u2ug.org To: 'U2 Users List' u2-users@listserver.u2ug.org Sent: Thu Aug 06 11:39:23 2009 Subject: [U2] Mass Disabling Triggers There are 5 arguments passed with a trigger