Introduction

This online help system describes the installation of CRM.service client.

Services are classes that provide access to the features of the Aurea CRM suite (records, catalogs, campaign management, etc.). They provide a level of abstraction that hides the innards of the system from the application developer. Services do not have user interfaces.

All services of the Aurea CRM web framework can be accessed via the singleton instance u8.services of type u8.Base.Services. This class acts as a service manager.
// getting the instance of the crud service.
var crud = u8.services.crud;
Service Name Description
u8.services.crud Allows to Create Read Update or Delete records.
u8.services.catalogs Provides access to catalogs.
u8.services.texts Accesses localized texts from the designer database.
u8.services.notification Formats and dispatches notifications (messages, warnings, errors ...) in the system.
u8.services.navigation Navigates to pages.
u8.services.actions Executes actions configured in CRM.designer (page calls, JavaScript calls ...).
u8.services.reporting Creates reports.
u8.services.queries Executes queries.