EN
Español
English
Português
    Installers 9.24.0

    UpdatePack 9.24.0

    Download links

    Note: - Before generating the installation process on versions higher than version 9.24.0, run the script to maintain data compatibility and not generate new features.

    Version 9.24.0 of the AFLS Release Notes is compatible with the Database Version 9.5.53

    Script to activate the client group import:

    Run the following script to enable client group import:

    IF NOT EXISTS (SELECT 1 FROM [AFLS_IMPORT_FILE_PROCESS_TYPE] WHERE [name] = 'Grupo Clientes')
    BEGIN
     INSERT INTO [dbo].[AFLS_IMPORT_FILE_PROCESS_TYPE]
        ([name]
       ,[state])
     VALUES
       ('Grupo Clientes'
       ,1)
    END