Greetings,
I am trying to export all my CURRENT menu items to excel or CSV file so that I can change the prices and Import back into micros 3700.
My micros is RES 3700 5.4 MR1.
I am using this command in "dbisql"
SELECT
def.mi_seq,
def.obj_num,
def.name_1,
prices.preset_amt_1,
prices.preset_amt_2,
prices.preset_amt_3,
prices.preset_amt_4,
prices.preset_amt_5,
prices.preset_amt_6,
prices.preset_amt_7,
prices.preset_amt_8,
prices.preset_amt_9,
prices.preset_amt_10
FROM
MICROS.mi_def def JOIN
MICROS.mi_price_def prices
ON def.mi_seq = prices.mi_seq
ORDER BY def.obj_num ASC;
OUTPUT TO 'C:\temp\Menu_Item_Prices.txt';
But the exported file has all old prices. Please see attached.the prices are not current. (see Attached screenshot form excel).
How do I export the menu items with the latest prices?
Second, how do I import back into SQL after changing the prices?
thank you, everyone.
mxap
I am trying to export all my CURRENT menu items to excel or CSV file so that I can change the prices and Import back into micros 3700.
My micros is RES 3700 5.4 MR1.
I am using this command in "dbisql"
SELECT
def.mi_seq,
def.obj_num,
def.name_1,
prices.preset_amt_1,
prices.preset_amt_2,
prices.preset_amt_3,
prices.preset_amt_4,
prices.preset_amt_5,
prices.preset_amt_6,
prices.preset_amt_7,
prices.preset_amt_8,
prices.preset_amt_9,
prices.preset_amt_10
FROM
MICROS.mi_def def JOIN
MICROS.mi_price_def prices
ON def.mi_seq = prices.mi_seq
ORDER BY def.obj_num ASC;
OUTPUT TO 'C:\temp\Menu_Item_Prices.txt';
But the exported file has all old prices. Please see attached.the prices are not current. (see Attached screenshot form excel).
How do I export the menu items with the latest prices?
Second, how do I import back into SQL after changing the prices?
thank you, everyone.
mxap