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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Netvoid

    RES 3700 SIM Scirpt ISL Send Item to KDS

    Yeah, printline isn't supported for KDS. Do things on a trans even if its fake. Like menu item with reference entry with you info or check info lines maybe (dont recall if those show on kds off top of my head).
  2. Netvoid

    ISL error on ws5A

    It's likely the IFS hostname isn't getting refreshed on the WS5a, maybe a wipe of the CF and re-setup?
  3. Netvoid

    RES 3700 SIM Scirpt ISL Send Item to KDS

    The routing of products to KDS should work like any order device when configured. The print classes of the product need to include the enabling the KDS device. Unless I am misunderstanding your question...
  4. Netvoid

    How to call event after FINAL_TENDER complete in Micros res pos 3700 isl

    Sample: LoadKyBdMacro KEY(24,( 16384 * 222) + @PMSSeqNum) Some info on it... KeyType 24 = Interface key call type 222 is the inquiry number @PMSSeqNum if the event you want to call is in the current SIM/ISL file, you can hard code this or call events in other interface files. 16384 ... just...
  5. Netvoid

    Micros & Door Dash

    Unfortunately the easiest way is to create a segmented menu just for Doordash or other online partners with a average upcharge. If you use 3-5 delivery providers average what you want the consumer upcharge to be with potential consideration of what you are willing to take a hit for these fees...
  6. Netvoid

    Micros 3700 Example of integration through transaction services web service

    Don't have it in C# but this should be close enough .. Should give you directional information on how to get a service for ISL comms working. //Constants package com.simComs.model; import java.io.*; import java.util.Arrays; import java.util.ArrayList; import java.util.Enumeration; import...
  7. Netvoid

    Update Micros 3700 "micros"."emp_password_def"

    Welcome to email me for full sample code inetvoid@gmail.com ...
  8. Netvoid

    Update Micros 3700 "micros"."emp_password_def"

    It is possible to set the password value using the same one way encryption and salt as Micros / Oracle uses but as AndreasZ stated, if you just need to be able to get into POS and reset the password enable classic security, update the password, and re-enable. If you need a way to sync employees...
  9. Netvoid

    Ho can I call external API and print response in SIM file of Micros POS 3700

    Another way is a SERVICE compatible with the PMS message formats that provides your return information and use RX/TX message to obtain your information.
  10. Netvoid

    Print QR from SIM

    Found this from another post here on the tek tips forums, didn't test but thought you may find it useful (even if it's just directionally helpful) event INQ : 200000 var qrCodeData: A255 var qrCodeDataLen : N3 var rawDataLen: N3 var PrintDataCode : A1000 startprint @CHK format qrCodeData...
  11. Netvoid

    Micros 3700 Example of integration through transaction services web service

    In case this helps... Simple post of transaction to RES 3700 via TS attached below with some thoughts.. Not sure it hits your need. There are creative ways to fire SIM from a TS post using idle no trans and evaluating for a specific transaction element, fairly rough to explain here though. I...
  12. Netvoid

    Running Simphony 18.2+ on and android VM

    Not exactly the answer to your question but have used Apache Guacamole with a Windows VM to "run" Micros on anything, iPad, Android, Mac's, etc., etc.. https://guacamole.apache.org/ I know it's not directly related to your question but someone may find it useful.
  13. Netvoid

    Micros 3700 (windows 7) Password Expired Please HELP!

    using dbisql (hopefully you have a sybase DB login if not different more complicated but still solve-able), This will set your ID number in micros to something easily usable. update micros.emp_def set id = '11',pc_appl_id='11' where obj_num = 555 Then you need to turn on classic security...
  14. Netvoid

    employee stuck in Clock IN Status

    Thanks for finishing him out Pmegan, I got heavily distracted. Regards,
  15. Netvoid

    employee stuck in Clock IN Status

    Pretty much the same thing in the time card detail table, SELECT * FROM micros.time_card_dtl WHERE emp_seq = (SELECT emp_seq FROM micros.emp_def WHERE eDef.obj_num = 9999) ORDER BY clk_in_date_tm; Shouldn't be anything here that is sensitive data, if you post it, it would be a lot easier to...
  16. Netvoid

    employee stuck in Clock IN Status

    Call micros if you are under support... Or, run DBISQL, Replace the 9999 with the employee number of the employee you are having trouble with sticking on the clock. SELECT tm_clk_status FROM micros.emp_def eDef JOIN micros.emp_status eStatus ON eDef.emp_seq = eStatus.emp_seq WHERE...
  17. Netvoid

    Micros Schedule DB issue with Hot Schedules

    Almost forgot ... You need to grant permissions for this to be executable from Micros as an autosequence step.... As I recall the last one is the most important to Micros these days but no problem to do this to all of the groups. grant execute on custom.sp_PurgeTermEmpSched to...
  18. Netvoid

    Micros Schedule DB issue with Hot Schedules

    Sorry for delayed response ... This is just a sample but it does work, it will delete all schedule / break schedule records for employees that are terminated. The first couple lines will add an entry to Micros so that you can use this stored procedure as an autosequence "stored proc" step...
  19. Netvoid

    autosequence

    Pretty sure its available still but you cannot have any security level set on the autoseqeunce. Check to be sure it's set to 0.
  20. Netvoid

    Micros Schedule DB issue with Hot Schedules

    In POS Configurator | Time & Attendance | Number of days to store schedules ... That is one thing. If you want to purge them quicker for termed employees.. It's a pretty simple procedure, if you would like me to post a sample please let me know.

Part and Inventory Search

Back
Top