f_terminate_l1.srf 504 B

123456789101112131415161718192021
  1. $PBExportHeader$f_terminate_l1.srf
  2. global type f_terminate_l1 from function_object
  3. end type
  4. forward prototypes
  5. global subroutine f_terminate_l1 ()
  6. end prototypes
  7. global subroutine f_terminate_l1 ();datastore ds_terminate
  8. ds_terminate = CREATE datastore
  9. ds_terminate.DataObject = 'ds_plugins_terminate'
  10. ds_terminate.SetTransObject(sqlca)
  11. ds_terminate.Retrieve()
  12. Long i
  13. FOR i = 1 TO ds_terminate.RowCount()
  14. f_proc_terminate(ds_terminate.Object.filepath[i])
  15. NEXT
  16. destroy ds_terminate
  17. end subroutine