Qual tabela e campo ou procedure consigo a informação do Prazo médio no relatório R409


Resposta: O calculo do prazo médio da R409 está encarregado pela procedure sp1056. Segue trecho que é computado o prazo médio.

prazomedio = isnull((
			select avg(media)
			from	(
				select	media / (
						select	sum(f0069valordocumento)
						from	t0069 (nolock)
						where	t0069.f0001idempresa = @f0001idempresa
						and	t0069.f0043idtransacao in (
							select	distinct f0043idtransacao
							from	#notasfiscais
							where	#notasfiscais.f0122tipopreco = #temp.f0276idtipopreco
							)
						and datediff(dd, f0069dtaemissao, f0069dtavencto) > 0
					) as media
				from	(
					select	sum(datediff(dd, f0069dtaemissao, f0069dtavencto) * f0069valordocumento) as media
					from	t0069 (nolock)
					where	t0069.f0001idempresa = @f0001idempresa
					and	t0069.f0043idtransacao in (
						select	distinct f0043idtransacao
						from	#notasfiscais
						where	#notasfiscais.f0122tipopreco = #temp.f0276idtipopreco
						)
					having count(*) > 0
				) as tabela
			) as tabela2
		), 0)