Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
leonardo_sudo
Contributor III
Contributor III

Autocomplete Left Zero

Hi,

When I execute this script,  (without EMS5MOV.PUB."tit_acr"."cod_espec_docto" = 'CC' )

 

tit_acr:
SQL   SELECT *
FROM  EMS5MOV.PUB."tit_acr"
where EMS5MOV.PUB."tit_acr"."dat_transacao" >= '$(DataTransacao)'
  and EMS5MOV.PUB."tit_acr"."cod_tit_acr" = '233'
  //and EMS5MOV.PUB."tit_acr"."cod_espec_docto" = 'CC'  
with (nolock);
STORE tit_acr into [lib://Dados/Extraidos/teste/tit_acr.qvd](qvd);
DROP Table tit_acr;

 

 

The result is:

Eg. Look to 6. Collumn, Line 2

Titulos.PNG

But, when a I execute: (with EMS5MOV.PUB."tit_acr"."cod_espec_docto" = 'CC' )

 

tit_acr:
SQL   SELECT *
FROM  EMS5MOV.PUB."tit_acr"
where EMS5MOV.PUB."tit_acr"."dat_transacao" >= '$(DataTransacao)'
  and EMS5MOV.PUB."tit_acr"."cod_tit_acr" = '233'
  and EMS5MOV.PUB."tit_acr"."cod_espec_docto" = 'CC'  
with (nolock);
STORE tit_acr into [lib://Dados/Extraidos/teste/tit_acr.qvd](qvd);
DROP Table tit_acr;

 

 

The result is:

Titulos2.PNG

Same line, but QLIK autocomplete with left zero.

I know it's "AI", but how to disable it? I do not want to use function, because it wants my true data.

 

Thanks

 

2 Replies
Marcos_rv
Creator II
Creator II

try this:

 

tit_acr:

//load precedente

LOAD 

FIELD1,

FIELD2,

FIELDN,

.....

TEXT(cod_parcela) AS cod_parcela;


SQL SELECT *
FROM EMS5MOV.PUB."tit_acr"
where EMS5MOV.PUB."tit_acr"."dat_transacao" >= '$(DataTransacao)'
and EMS5MOV.PUB."tit_acr"."cod_tit_acr" = '233'
and EMS5MOV.PUB."tit_acr"."cod_espec_docto" = 'CC'
with (nolock);
STORE tit_acr into [lib://Dados (integrada_setec)/Extraidos/teste/tit_acr.qvd](qvd);
DROP Table tit_acr;

 

 

leonardo_sudo
Contributor III
Contributor III
Author

Hi, i think this ok,
But i just want my real data. Without functions.