SOLUCIONADO: error pb migración v280

Tengo problemas con estos 3 objetos:
siu_gmat_reportes.pbl\dp_multilistados_anios_legajo.srd
siu_gmat_reportes.pbl\dp_multilistados_legajo.srd
siu_gmat_reportes.pbl\w_reporte_detalle_multilistados_807ag.srw

Intentan obtener datos de la tabla mg_list_matri y esa tabla en mi base de datos no existe…
Si intento editarlos PB no deja… dice que deben ser regenerados; Al regenerarlos PB se cierra, igual al momento de compilar o al intentar importarlos.

Con esta consulta:

SELECT *
FROM acc_parametros
WHERE parametros like '%dp_multilistados_anios_legajo%'
   or parametros like '%dp_multilistados_legajo%'
   or ventana = 'w_reporte_detalle_multilistados_807ag';

Intento fijarme si uso esos objetos en algún lado y en principio las operaciones estándar no los usan…

¿Los borro de siu_gmat_reportes.pbl?
¿Alguien sabe dónde se usa/ba la tabla mg_list_matri y para qué?

Diego, esas dos dw consultan la tabla sga_anio_academico, por ejemplo dp_multilistado_legajo:

  SELECT 'Nuevos Inscriptos y algo mas' contar,
			sga_anio_academico.anio_academico,  
			'Periodo y no se que otra cosa mas' filas,
			'Estado Civil y otras cosas mas' columnas,
			'Carrera y años academicos' grupo,
			'Grafico doble agrupamiento' salida
    FROM sga_anio_academico   
	order by anio_academico

En donde viste la tabla mg_list_matri ?

La window es la que hace referencia directa a la tabla mg_list_matri.
Las 2 DP en la definición de sus columnas hacen referencia a 3 objetos que no tengo (dw_mg_list_matri, dw_mg_list_matri_distintodeuno y dw_mg_list_matri_distintodedos) y supongo traerian datos de la misma tabla.

No tengo ni la tabla ni los 3 objetos antes mencionados…

Te dejo un copy-paste de una búsqueda de texto:

  • dp_multilistados_anios_legajo.srd (2 hits):

    Line 22: column(band=detail id=3 alignment=“0” tabsequence=50 border=“5” color=“0” x=“1691” y=“100” height=“64” width=“951” format=“[general]” protect=“0~tif( isNull( grupo ), 1, 0 )” name=filas tag=“dda=grupo;” dddw.name=dw_mg_list_matri_distintodeuno dddw.displaycolumn=muestra dddw.datacolumn=valor dddw.percentwidth=0 dddw.lines=0 dddw.limit=0 dddw.allowedit=yes dddw.useasborder=yes dddw.case=any dddw.nilisnull=yes dddw.vscrollbar=yes font.face=“Arial” font.height=“-10” font.weight=“400” font.family=“2” font.pitch=“2” font.charset=“0” background.mode=“1” background.color=“536870912” )
    Line 24: column(band=detail id=5 alignment=“0” tabsequence=40 border=“5” color=“0” x=“507” y=“96” height=“64” width=“951” format=“[general]” name=grupo tag=“40” dddw.name=dw_mg_list_matri dddw.displaycolumn=muestra dddw.datacolumn=valor dddw.percentwidth=0 dddw.lines=0 dddw.limit=0 dddw.allowedit=no dddw.useasborder=yes dddw.case=any dddw.required=yes dddw.vscrollbar=yes font.face=“Arial” font.height=“-10” font.weight=“400” font.family=“2” font.pitch=“2” font.charset=“0” background.mode=“1” background.color=“536870912” )

  • dp_multilistados_legajo.srd (3 hits):

    Line 20: column(band=detail id=5 alignment=“0” tabsequence=30 border=“5” color=“0” x=“992” y=“100” height=“64” width=“955” format=“[general]” name=grupo tag=“40” dddw.name=dw_mg_list_matri dddw.displaycolumn=muestra dddw.datacolumn=valor dddw.percentwidth=0 dddw.lines=0 dddw.limit=0 dddw.allowedit=no dddw.useasborder=yes dddw.case=any dddw.required=yes dddw.vscrollbar=yes font.face=“Arial” font.height=“-10” font.weight=“400” font.family=“2” font.pitch=“2” font.charset=“0” background.mode=“1” background.color=“536870912” )
    Line 27: column(band=detail id=3 alignment=“0” tabsequence=40 border=“5” color=“0” x=“288” y=“200” height=“64” width=“951” format=“[general]” protect=“0~tif( isNull( grupo ), 1, 0 )” name=filas tag=“dda=grupo;” dddw.name=dw_mg_list_matri_distintodeuno dddw.displaycolumn=muestra dddw.datacolumn=valor dddw.percentwidth=0 dddw.lines=0 dddw.limit=0 dddw.allowedit=yes dddw.useasborder=yes dddw.case=any dddw.nilisnull=yes dddw.vscrollbar=yes font.face=“Arial” font.height=“-10” font.weight=“400” font.family=“2” font.pitch=“2” font.charset=“0” background.mode=“1” background.color=“536870912” )
    Line 29: column(band=detail id=4 alignment=“0” tabsequence=50 border=“5” color=“0” x=“1591” y=“200” height=“64” width=“951” format=“[general]” protect=“0~tif( isNull( filas ), 1, 0 )” name=columnas tag=“dda=grupo, filas;” dddw.name=dw_mg_list_matri_distintodedos dddw.displaycolumn=muestra dddw.datacolumn=valor dddw.percentwidth=0 dddw.lines=0 dddw.limit=0 dddw.allowedit=yes dddw.useasborder=yes dddw.case=any dddw.nilisnull=yes dddw.vscrollbar=yes font.face=“Arial” font.height=“-10” font.weight=“400” font.family=“2” font.pitch=“2” font.charset=“0” background.mode=“1” background.color=“536870912” )

  • w_reporte_detalle_multilistados_807ag.srw (9 hits):

    Line 23: from mg_list_matri &
    Line 31: from mg_list_matri &
    Line 45: from mg_list_matri &
    Line 53: from mg_list_matri &
    Line 59: from mg_list_matri &
    Line 80: from mg_list_matri &
    Line 88: from mg_list_matri &
    Line 94: from mg_list_matri &
    Line 100: from mg_list_matri &

Hasta tener novedades quité la window y las 2 DP de la biblioteca…

Diego, creo estos objetos pertenecian a un reporte “multilistado” que era de una personalización de alguna Universidad.
En los objetos estandares del SIU no encuentro que dichos objetos pertenezcan a alguna operación.
Con lo cual si lo sacas de la libreria no deberias tener problema en el sistema.

OK doy por cerrado el hilo…