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: 
dseelam
Creator II
Creator II

Mapping

Hello All

I have 2 fields ID & categories in data model from oracle, Now I have an flat file with diff ID and categories missing from oracle

now I want to include flat file in to data model and map categories from both sources in to Make or Buy

how is it possible?

Message was edited by: Dinesh Reddy Seelam

11 Replies
krishnacbe
Partner - Specialist III
Partner - Specialist III

Hi Dinesh,

Please find the attached solution.

After concatenate/Join/Add statement, you have used apply map with * statement, that caused the Synthetic Keys.

Dropping the first table will solve the issue. But verify the data.

vishsaggi
Champion III
Champion III

Try this to concatenate !

Leave the Mapping table and Finished table as is and do below and refresh and see?

In the Edit Script Flatfile Tab:->

Concatenate

LOAD id,

     category

FROM

C:\Users\VNAGARAJ\Desktop\Book1.xlsx

(ooxml, embedded labels, table is [all items]);

Concatenate

load *,

applymap('CatMap',category,'NA') as MakeBuyFlag

Resident finished;