Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Exporting Menu Items to txt files

Status
Not open for further replies.

9Coder

IS-IT--Management
Apr 16, 2019
53
ID
Dear Folx,

Do you guys know how to exporting menu item on sybase for res 3700 like below result

image001_gpuono.png


Do you guys have any script that i can run for generating that result?


Thanks
 
this looks like a custom mi export.

you can try running the following script from sybase
select * from micros.v_R_sys_menuitem
once you find the data that you want to export in each column rewrite the sql to something like this

select menuitem_number, mi_seq, menuitem_name1, major_group_name from micros.v_R_sys_menuitem

if thats the data that you are looking for then to export you will need to write it like this

select menuitem_number, mi_seq, menuitem_name1, major_group_name from micros.v_R_sys_menuitem
output to c:\menu.txt
format ascii;

 
also if this data was generated from the computer that you are looking at there is a chance that the sql is somewhere
maybe under c:\micros\res\pos\scripts\
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top