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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
janturon
Contributor III
Contributor III

Field Not Found When Converting Field to Text()

Hi,

I need to convert field hk_US to text, because QlikView automaticly takes this field (when is without cast...) as Num and makes TOTALS which I dont want. For example If values are 31 and 031, Qlik merge this values to 031.

I used script like below... But always have Error code Field not found.

P.S. Select is from ORACLE

TABLE:

LOAD

  Text (hk_US) as hk_USyn,

$(vminobd) as OBDOBIE,

    *;

SQL

SELECT

UCTY.ID,

cast (UCTY.UCET as varchar(10)) as hk_US,

...

...

1 Solution

Accepted Solutions
zhadrakas
Specialist II
Specialist II

try in upper case

TABLE:

LOAD

  Text (HK_US) as hk_USyn,

$(vminobd) as OBDOBIE,

    *;

SQL

SELECT

UCTY.ID,

cast (UCTY.UCET as varchar(10)) as hk_US,

View solution in original post

4 Replies
zhadrakas
Specialist II
Specialist II

try in upper case

TABLE:

LOAD

  Text (HK_US) as hk_USyn,

$(vminobd) as OBDOBIE,

    *;

SQL

SELECT

UCTY.ID,

cast (UCTY.UCET as varchar(10)) as hk_US,

janturon
Contributor III
Contributor III
Author

Ooo Yes,

thank you very much.

I forgot that ORACLE always names fields with UPPER CASE signs.

janturon
Contributor III
Contributor III
Author

It´s Monday....

zhadrakas
Specialist II
Specialist II

..

you can override this Setting with the force function if needed.

Force ‒ QlikView