Visual Web Developer - error en pagina web DataTables warning: table id=simpletable - Requested unknown parameter "12" for

 
Vista:
sin imagen de perfil
Val: 1
Ha mantenido su posición en Visual Web Developer (en relación al último mes)
Gráfica de Visual Web Developer

error en pagina web DataTables warning: table id=simpletable - Requested unknown parameter "12" for

Publicado por alexis (1 intervención) el 25/07/2019 02:09:09
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
USE [ComplexityProgram]
GO
/****** Object:  StoredProcedure [dbo].[web_RepResumenPT]    Script Date: 7/22/2019 7:00:50 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
--exec [web_RepResumenPT]   '2016-11-09T16:36:27.000','2016-11-10T16:36:27.000' 
-- =============================================
-- Author:		<Francisco Escamilla>
-- Create date: <06/13/2019>
-- Description:	<Reporte Web Resumen PT>
-- =============================================
ALTER procedure [dbo].[web_RepResumenPT]
	(
	     @dFechaIni datetime,
         @dFechaFin datetime
	)as
 
	select 1 id,
		ISNULL(c.VIN, '') VIN, 
		ISNULL(s.EstatusSPDId, '') EST, 
		c.NumeroParte 'Núm. Parte',
		ISNULL (m.ModeloEstiloNombre, '') as 'Tamaño' ,
		cl.ColorId Color,
		--p.PrimerNombre Primer,
		--ISNULL(Opciones, '') Opciones,	
        ISNULL(p.PrimerNombre, '') as Primer, 
		ISNULL(xmf.VentaCodigoId, '') as XMF, 
	    ISNULL(gxm.VentaCodigoId, '') as GXM, 
	    ISNULL(cs7.VentaCodigoId, '') as CS7,
		ISNULL(agp.VentaCodigoId, '') as AGP,
		ISNULL(pwr.VentaCodigoId, '') as RBL,
		c.CodigoRecepcion 'Travesaño',
		pt.CajaId 'Núm. Serie',
		c.AlmacenId 'Estación'
	from InventarioPT pt
	left join v_Cajas c on c.CajaId = pt.CajaId
	left join v_SecuenciasSPD s on s.VIN = c.VIN
	left join v_ModelosEstilos m on m.ModeloEstiloIdFix = c.ModeloEstiloIdFix
	left join Colores cl on cl.ColorId = c.ColorId
	left join Primers p on p.PrimerId = c.PrimerId
	--cross apply (
	--	select co.VentaCodigoId + ' '
	--	from CajaOpciones co
	--	left join VentaCodigos v on v.VentaCodigoId = co.VentaCodigoId
	--	where co.CajaId = pt.CajaId
	--	order by v.SPDOperacion
	--	for xml path ('')) D (Opciones)	
	left join SPDSecuenciaOpciones xmf on s.VIN = xmf.VIN and xmf.VentaCodigoId = 'XMF'
    left join SPDSecuenciaOpciones gxm on s.VIN = gxm.VIN and gxm.VentaCodigoId = 'GXM'
    left join SPDSecuenciaOpciones cs7 on s.VIN = cs7.VIN and cs7.VentaCodigoId = 'CS7'
	left join SPDSecuenciaOpciones agp on s.VIN = agp.VIN and agp.VentaCodigoId = 'AGP'
	left join SPDSecuenciaOpciones pwr on s.VIN = pwr.VIN and (pwr.VentaCodigoId = 'MW4' OR pwr.VentaCodigoId = 'RBL')
	where pt.Remisionada = 0 and c.CajaId is not null
	order by m.ModeloCodigo, cl.ColorId, p.PrimerNombre
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder