system.report.executeAndDistribute() NO imprime

Saludos
Tengo un codigo el cual me permite imprimir datos de una Power Table
table = event.source.parent.getComponent('PROX_MANTENIMIENTOS')
rows = table.getSelectedRows()

if rows:
dataIn = system.dataset.toPyDataSet(table.data)
headers = list(table.data.getColumnNames())
dataOut =

for i,row in enumerate(dataIn):
	if i in rows:
		dataOut.append(row)
		
printData = system.report.executeAndDistribute(path = "Reports", project = "PRUEBA_PLANILLA" , action = "print")	

pero al ejecutarlo tengo este error:

Traceback (most recent call last):

File "event:mouseClicked", line 13, in

com.inductiveautomation.ignition.client.gateway_interface.GatewayException: com.inductiveautomation.ignition.client.gateway_interface.GatewayException: In system.report.executeReport(), project PRUEBA_PLANILLA not found.

caused by GatewayException: In system.report.executeReport(), project PRUEBA_PLANILLA not found.
caused by IllegalArgumentException: In system.report.executeReport(), project PRUEBA_PLANILLA not found.

Ignition v7.9.7 (b2018032914)
Java: Oracle Corporation 1.8.0_211

su ayuda por favor

Hello John, based on the error message it looks like your are referencing the wrong project name in your code on line 13. Can you confirm the name of your project and the name of the report.

Hola John, según el mensaje de error, parece que estás haciendo referencia al nombre de proyecto incorrecto en tu código en la línea 13. ¿Puedes confirmar el nombre de tu proyecto y el nombre del informe?