Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts - I have a below data
Fruits
Apple
Orange
Grape
Mango
Banana
I just need to load Apple & Grape alone.. Please help me how can i get this..
My Data in script is like
LOAD SALES_PROD_W_OPTION_NR,
PART_DN,
LOCAL_STD_COST_AM,
ISO_CURRENCY_CD,
CURRENCY_RATE,
USD_STD_COST_AM,
PRODUCT_LINE_CD,
PROD_LINE_NM,
FRUIT
FROM
C:\Users\Public\Desktop\Reports\CSV_Files\WW_IPG_INVENTORY_WEEKLY_HISTORY.csv
(txt, codepage is 1252, embedded labels, delimiter is ',', msq);
STORE IPG_Inventory INTO
Where will i use that now?
try here
LOAD SALES_PROD_W_OPTION_NR,
PART_DN,
LOCAL_STD_COST_AM,
ISO_CURRENCY_CD,
CURRENCY_RATE,
USD_STD_COST_AM,
PRODUCT_LINE_CD,
PROD_LINE_NM,
FRUIT
FROM
C:\Users\Public\Desktop\Reports\CSV_Files\WW_IPG_INVENTORY_WEEKLY_HISTORY.csv
(txt, codepage is 1252, embedded labels, delimiter is ',', msq) Wildmatch(field, 'value1','value2');
STORE IPG_Inventory INTO
i see script error.. Garbage after statement
My bad, Missed Where condition
LOAD SALES_PROD_W_OPTION_NR,
PART_DN,
LOCAL_STD_COST_AM,
ISO_CURRENCY_CD,
CURRENCY_RATE,
USD_STD_COST_AM,
PRODUCT_LINE_CD,
PROD_LINE_NM,
FRUIT
FROM
C:\Users\Public\Desktop\Reports\CSV_Files\WW_IPG_INVENTORY_WEEKLY_HISTORY.csv
(txt, codepage is 1252, embedded labels, delimiter is ',', msq) Where Wildmatch(field, 'value1','value2');
STORE IPG_Inventory INTO
Yes i got hat now... What if i need to do same for one more field?
Why not?
Where Wildmatch(field, 'value1','value2') and WildMatch(field1, 'value1','value2')
Thanks a lot for taking your precious time to explain this!! Appreciate it!! ![]()
I would suggest you to Buy Cook book, This may helps you lot and lot as i feel
Note - Please mark as Helpful over thread that may helps for next landing persons ![]()
Just for curiosity, What is wrong in my answer???
Regards,
Prashant
Me too.