Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.
Nivel 1
Nivel 2
Iniciar sesión en la comunidad
Iniciar sesión para ver todas las insignias
Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.
Hi, please help me with this.
¡Resuelto! Ir a solución.
Vistas
Respuestas
Total de me gusta
Hi ,
The following code will print all the lines from a file into the workflow journal logs.
You can customize it to read only the first line
var file = new File( fName );
var arr = [];
file.open();
try
{
for each(var line in file)
{
arr.push( line );
}
for ( var i = arr.length - 1; i >= 0; i-- )
logInfo(arr[i]);
logInfo( "###===== " + fName );
}
finally
{
file.close();
}
Hope this helps.
Regards,
Vipul
Vistas
Respuestas
Total de me gusta
Hi ,
The following code will print all the lines from a file into the workflow journal logs.
You can customize it to read only the first line
var file = new File( fName );
var arr = [];
file.open();
try
{
for each(var line in file)
{
arr.push( line );
}
for ( var i = arr.length - 1; i >= 0; i-- )
logInfo(arr[i]);
logInfo( "###===== " + fName );
}
finally
{
file.close();
}
Hope this helps.
Regards,
Vipul
Vistas
Respuestas
Total de me gusta
Hi Vipul,
Thanks for the code.
var file = new File( fName );
Can this code be modified to use a file downloaded from the file collector activity which is in temp db.
Could you please help me with that?
Vistas
Respuestas
Total de me gusta
Yes, it is just use "vars.filename" instead of fName
Regards,
Ankur A.
Vistas
Respuestas
Total de me gusta
Vistas
me gusta
Respuestas
Vistas
me gusta
Respuestas