Llame a la herramienta Administrador general de informes (GRM) o menú principal → herramientas → Administrador general de informes…
Hay 2 opciones disponibles:
Hay un montón de informes proporcionados por los usuarios o desarrolladores en github
Si has creado algún informe útil, puede ser exportado en un archivo zip. Foro
Para la versión de mmex 1.4.0 hay posibilidad de transferir fechas en una secuencia SQL del informe.
Hay cuatro opciones disponibles: &single_date, &begin_date, &end_date, &budget_years.
En el caso de que un SQL contenga uno de los parámetros anteriores, se reemplazarán por una fecha del calendario.
Por ejemplo, esta secuencia SQL devuelve todos los totales de las cuentas desde la fecha especificada:
with b as (
select ACCOUNTID, STATUS
, (case when TRANSCODE = 'Deposit' then TRANSAMOUNT else -TRANSAMOUNT end) as TRANSAMOUNT
, TRANSDATE
from CHECKINGACCOUNT
union all
select TOACCOUNTID, STATUS, TOTRANSAMOUNT ,TRANSDATE
from CHECKINGACCOUNT
where TRANSCODE = 'Transfer'
)
select a.ACCOUNTNAME,
total(TRANSAMOUNT) + a.INITIALBAL as Balance
from ACCOUNTLIST as a, b
where a.STATUS = 'Open'
and b.ACCOUNTID = a.ACCOUNTID
and b.STATUS <> 'V'
and b.TRANSDATE <= '&single_date'
group by a.ACCOUNTNAME order by a.ACCOUNTNAME asc;