Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
sridhar_sigired
Creator
Creator

Unknow error

I am running a code and it was fine for many months.

All of sudden, i am receiving an unknown error. If i comment this inline statement script working properly.

What might be the issue? Can anyone help me?

8 Replies
Chanty4u
MVP
MVP

remove single quotes for values in the inline and reload,

olivierrobin
Specialist III
Specialist III

hello

is it running on a server  or desktop client ?

do you have the log of the execution ?

and the source code ?

did you modify something somewhere in the script ?

sridhar_sigired
Creator
Creator
Author

Hi,

That is variable, hence kept single quotes.

sridhar_sigired
Creator
Creator
Author

It is desktop version and need to check if it gets failed from server today.

Receiving the below error.

Error: Unknown Error

olivierrobin
Specialist III
Specialist III

could you post the code and the content of the log ?

Chanty4u
MVP
MVP

check is that variable generating the value or not ?

post scramble data of variables also

sridhar_sigired
Creator
Creator
Author

Thanks for trying to help me. Code is something like this.

LET Starttime =Now();

Table1:

Load * from table;

LET Endtime =Now();

LET NoOfRows =noofrows('Table1');

Load * inline

[

TableName,Starttime,Endtime,NoOfRows

'Table1','$(Starttime)','$(Endtime)','$(NoOfRows)'

];

sridhar_sigired
Creator
Creator
Author

Thanks for trying to help me. Code is something like this.

LET Starttime =Now();

Table1:

Load * from table;

LET Endtime =Now();

LET NoOfRows =noofrows('Table1');

Load * inline

[

TableName,Starttime,Endtime,NoOfRows

'Table1','$(Starttime)','$(Endtime)','$(NoOfRows)'

];