Added capital works blank section. Synced calling screen.
[capital-apms-progress.git] / process / one-off / fix-ctty.p
blob087ef70f1a228f1b47125280808bab4ad541fcd6
1 ON WRITE OF Person OVERRIDE DO: END.
2 DEF BUFFER AltContact FOR Contact.
4 FOR EACH Person:
5 /* Warning: Elegant Code Ahead!!! */
6 FIND FIRST Contact OF Person WHERE CAN-FIND( ContactType OF Contact WHERE NOT ContactType.SystemCode) NO-LOCK NO-ERROR.
7 Person.SystemContact = NOT AVAILABLE(Contact).
8 END.
10 ON WRITE OF Person REVERT.