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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
mato32188
Specialist
Specialist

Resident Load

Hello,

I just want to load data from previously joined tables by resident load...but table is not created...Has anyone solution?

Thanks

tmp1:

LOAD PrOrderNum as [PrOrderNumBOM],

     ItemCode as Material,

     Qty,

     Price

FROM

..\ProdBOM.qvd

(qvd)

where PrOrderNum>=9000000 and WildMatch(CtrlType, '*Pur*', '*isual');  

left Join(tmp1)

prodorder:

LOAD PrOrderNum as [PrOrderNumBOM],

     UpPrOrderNum as [UpPrOrderNum(BOM)]

FROM

..\ProdOrder.qvd

(qvd)

where PrOrderNum>=9000000;

final:

LOAD

[PrOrderNumBOM],

Material,

Qty,

Price,

[UpPrOrderNum(BOM)]

Resident tmp1

;

DROP Table tmp1;

ECG line chart is the most important visualization in your life.
1 Solution

Accepted Solutions
PrashantSangle

Hi,

there is two way to acheive it.

1) use Noconcatenate before Creating Final Table

like,

tmp1:

LOAD PrOrderNum as [PrOrderNumBOM],

     ItemCode as Material,

     Qty,

     Price

FROM

..\ProdBOM.qvd

(qvd)

where PrOrderNum>=9000000 and WildMatch(CtrlType, '*Pur*', '*isual');  

left Join(tmp1)

//prodorder:

LOAD PrOrderNum as [PrOrderNumBOM],

     UpPrOrderNum as [UpPrOrderNum(BOM)]

FROM

..\ProdOrder.qvd

(qvd)

where PrOrderNum>=9000000;

noconcatenate

final:

LOAD

[PrOrderNumBOM],

Material,

Qty,

Price,

[UpPrOrderNum(BOM)]

Resident tmp1

;

DROP Table tmp1;

2) Rename one field in Final table

Like,

tmp1:

LOAD PrOrderNum as [PrOrderNumBOM],

     ItemCode as Material,

     Qty,

     Price

FROM

..\ProdBOM.qvd

(qvd)

where PrOrderNum>=9000000 and WildMatch(CtrlType, '*Pur*', '*isual');  

left Join(tmp1)

//prodorder:

LOAD PrOrderNum as [PrOrderNumBOM],

     UpPrOrderNum as [UpPrOrderNum(BOM)]

FROM

..\ProdOrder.qvd

(qvd)

where PrOrderNum>=9000000;

noconcatenate

final:

LOAD

[PrOrderNumBOM] as New_PrOrderNumBOM,

Material,

Qty,

Price,

[UpPrOrderNum(BOM)]

Resident tmp1

;

DROP Table tmp1;

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

View solution in original post

5 Replies
Anonymous
Not applicable

Do the preceding load like this and confirm.

load [PrOrderNumBOM],Material,Qty,Price,[UpPrOrderNum(BOM)];

final:

LOAD

[PrOrderNumBOM],

Material,

Qty,

Price,

[UpPrOrderNum(BOM)]

Resident tmp1

;

DROP Table tmp1;

marcus_sommer

You need a noncatenate load by your final-table the qv concatenated tables with the same columns automatically.

- Marcus

Anonymous
Not applicable

I suppose you Need to add noconcatenate as the fields have the same name

by Default Qv concatenates the data

final:

noconcatenate load ..

PrashantSangle

Hi,

there is two way to acheive it.

1) use Noconcatenate before Creating Final Table

like,

tmp1:

LOAD PrOrderNum as [PrOrderNumBOM],

     ItemCode as Material,

     Qty,

     Price

FROM

..\ProdBOM.qvd

(qvd)

where PrOrderNum>=9000000 and WildMatch(CtrlType, '*Pur*', '*isual');  

left Join(tmp1)

//prodorder:

LOAD PrOrderNum as [PrOrderNumBOM],

     UpPrOrderNum as [UpPrOrderNum(BOM)]

FROM

..\ProdOrder.qvd

(qvd)

where PrOrderNum>=9000000;

noconcatenate

final:

LOAD

[PrOrderNumBOM],

Material,

Qty,

Price,

[UpPrOrderNum(BOM)]

Resident tmp1

;

DROP Table tmp1;

2) Rename one field in Final table

Like,

tmp1:

LOAD PrOrderNum as [PrOrderNumBOM],

     ItemCode as Material,

     Qty,

     Price

FROM

..\ProdBOM.qvd

(qvd)

where PrOrderNum>=9000000 and WildMatch(CtrlType, '*Pur*', '*isual');  

left Join(tmp1)

//prodorder:

LOAD PrOrderNum as [PrOrderNumBOM],

     UpPrOrderNum as [UpPrOrderNum(BOM)]

FROM

..\ProdOrder.qvd

(qvd)

where PrOrderNum>=9000000;

noconcatenate

final:

LOAD

[PrOrderNumBOM] as New_PrOrderNumBOM,

Material,

Qty,

Price,

[UpPrOrderNum(BOM)]

Resident tmp1

;

DROP Table tmp1;

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Not applicable

tmp1:

LOAD PrOrderNum as [PrOrderNumBOM],

     ItemCode as Material,

     Qty,

     Price

FROM

..\ProdBOM.qvd

(qvd)

where PrOrderNum>=9000000 and WildMatch(CtrlType, '*Pur*', '*isual'); 

left Join(tmp1)

prodorder:

LOAD PrOrderNum as [PrOrderNumBOM],

     UpPrOrderNum as [UpPrOrderNum(BOM)]

FROM

..\ProdOrder.qvd

(qvd)

where PrOrderNum>=9000000;


Noconcatenate

final:

LOAD

[PrOrderNumBOM],

Material,

Qty,

Price,

[UpPrOrderNum(BOM)]

Resident tmp1

;

DROP Table tmp1;

or rename the fields