Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
bushpalaamarnat
Creator
Creator

Table not found error in resident load

Hello All,

Can any one help why i am getting this error again and again. I have used Noconcatenate

WEEKData:

Load

*

Resident  [allexcel];

CorridorStatus:

NoConcatenate

LOAD

Week,

Text(Material) as MATERIAL,

     [Material Description],

     [Material Type],

     Category,

     [Inventory Volume],

[Demand Volume (Eaches)],

     Brand,

     Variant,

Text([Customer Loc]) AS [Customer Loc],

     [Customer Location Description],

     [Customer Zone],

     [Supplier Loc] ,

     [Supplier Location Description],

     [Supplier Zone],

     [Corridor Status],

Num(DFC, '#0') as  DFC,

Num([Min DFC], '#0') as [Min DFC],

Num([Max DFC], '#0') as [Max DFC],

Num([Safety Days Supply],'#0') as [Safety Days Supply],

(Material) & [Customer Loc] as matchProdsku,

TEXT([Customer Loc]) & TEXT(Material) as %MasterKey

resident [WEEKData];

drop table WEEKData;

1 Solution

Accepted Solutions
sunny_talwar

Try this

WEEKData:

NoConcatenate

Load

*

Resident  [allexcel];

CorridorStatus:

NoConcatenate

LOAD

Week,

Text(Material) as MATERIAL,

    [Material Description],

    [Material Type],

    Category,

    [Inventory Volume],

[Demand Volume (Eaches)],

    Brand,

    Variant,

Text([Customer Loc]) AS [Customer Loc],

    [Customer Location Description],

    [Customer Zone],

    [Supplier Loc] ,

    [Supplier Location Description],

    [Supplier Zone],

    [Corridor Status],

Num(DFC, '#0') as  DFC,

Num([Min DFC], '#0') as [Min DFC],

Num([Max DFC], '#0') as [Max DFC],

Num([Safety Days Supply],'#0') as [Safety Days Supply],

(Material) & [Customer Loc] as matchProdsku,

TEXT([Customer Loc]) & TEXT(Material) as %MasterKey

resident [WEEKData];

View solution in original post

3 Replies
Miguel_Angel_Baeyens

The error appears on the LOAD, not on the DROP, it seems that is the WEEKData table the one that does not exist (maybe already concatenated or just not loaded or empty?)

sunny_talwar

Try this

WEEKData:

NoConcatenate

Load

*

Resident  [allexcel];

CorridorStatus:

NoConcatenate

LOAD

Week,

Text(Material) as MATERIAL,

    [Material Description],

    [Material Type],

    Category,

    [Inventory Volume],

[Demand Volume (Eaches)],

    Brand,

    Variant,

Text([Customer Loc]) AS [Customer Loc],

    [Customer Location Description],

    [Customer Zone],

    [Supplier Loc] ,

    [Supplier Location Description],

    [Supplier Zone],

    [Corridor Status],

Num(DFC, '#0') as  DFC,

Num([Min DFC], '#0') as [Min DFC],

Num([Max DFC], '#0') as [Max DFC],

Num([Safety Days Supply],'#0') as [Safety Days Supply],

(Material) & [Customer Loc] as matchProdsku,

TEXT([Customer Loc]) & TEXT(Material) as %MasterKey

resident [WEEKData];

bushpalaamarnat
Creator
Creator
Author

Helpful! thank you so much