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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Field missing

Hi

I am new to qlikview and would like to know how can I load flowfield from Nav

I tried to type the name of the field in load and / or select without success.

the flow field I need is in the job table "Total Budget"


Thank you for your help

JobTable:

LOAD

    "No_"  AS JobID,

    "Description",

    "Bill-to Customer No_",

    "Creation Date",

    "Allow Precl_ R__Prov_ Loss";

SQL SELECT

  "No_",

    "Description",

    "Bill-to Customer No_",

    "Creation Date",

    "Allow Precl_ R__Prov_ Loss"

FROM test.dbo."db$Job";

16 Replies
sunny_talwar

flowfield? What is that? Can you elaborate a little?

Not applicable
Author

Hi Sunny

It's a calculated field

nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II

Can u please explain clearly?

So that we ll try to help you.

-Nagarjun

Not applicable
Author

HI all

It appears my problem is not clear enough for everyone.

I have on table "Job" the following information, I would like to load field "Total Budget" in Qlikview

   

EnabledField No.Field NameData TypeLengthDescriptionField Class
Yes1No.Code20 Normal
Yes3DescriptionText50 Normal
Yes4Description 2Text50 Normal
Yes5Bill-to Customer No.Code20 Normal
Yes12Creation DateDate Normal
Yes19StatusOption Normal
Yes20Person ResponsibleCode20 Normal
Yes29Last Date ModifiedDate Normal
Yes58NameText50 Normal
Yes67Country/Region CodeCode10 Normal
Yes11012001Total BudgetDecimal FlowField
vinieme12
Champion III
Champion III

Ask the database guys for the exact field name in the Job table and then add as below

JobTable:

LOAD

    "No_"  AS JobID,

    "Description",

    "Bill-to Customer No_",

    "Creation Date",

    "Allow Precl_ R__Prov_ Loss"

     "TOTAL BUDGET"

     ;

SQL SELECT

  "No_",

    "Description",

    "Bill-to Customer No_",

    "Creation Date",

    "Allow Precl_ R__Prov_ Loss"

     "TOTAL BUDGET"

FROM test.dbo."db$Job";

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
Not applicable
Author

I tried it but it's not working

ErrorSource: Microsoft OLE DB Provider for SQL Server, ErrorMsg: Invalid column name 'TOTAL BUDGET'.

vinieme12
Champion III
Champion III

You need to know the exact name of the field in the table/view...ask the Database Admin

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
stabben23
Partner - Master
Partner - Master

if you have a connection to the database, press select in script. Find your table test.dbo."db$Job"

Here can you see what fields the table have. Pick the one you need.

You can also do as select * and LOAD * to get all fields from the table.

maxgro
MVP
MVP

try with a select * and then in table viewer (CTRL-T) look at the fields you can load

SQL SELECT *

FROM test.dbo."db$Job";