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

Recent content by codexPOSed

  1. codexPOSed

    Create a Simphony JavaScript Extensibility extension application and Configuration.

    Thanks, very helpful! Do you have any examples on the other "Host Types": Service and TS?
  2. codexPOSed

    Simphony ISL Trailer Event not firing

    I think the Tender or Service Total you are using need to be configured to print the check trailer in order for the event to be fired. Option bits 22 and 28 Z
  3. codexPOSed

    Get Input via Mag Stripe Reader Data to Ops Alpha Request Entry

    Use request OpsContext.RequestEntry instead. here is a thread that talks about how to do it: https://www.tek-tips.com/threads/micros-simphony-how-to-get-mag-swipe-data-c-extensibility.1830389/
  4. codexPOSed

    EMC Login Error (After Restart)

    check out the logs: \MICROS\Simphony2\EgatewayService\EGatewayLog it should you give you more details on why...
  5. codexPOSed

    Developing an extension on Simphony Android

    I am doing exploration into this as well. From what i gather so far, you will need to do all that within JS snippets in your HTML5 code. Alternatively, you can look into 19.7 JS Extensibility support instead of SIM/ISL. I believe you can do File System operations in JS ext, but not API calls...
  6. codexPOSed

    Call OpsContext methods from Simphony JavaScript Extensibility extension application

    Were you able to make any progress on this? I am messing around with JS support as well but ran into the same issue. I can't seem to locate the equivalent of @OpsContext in ISL or Ops.OpsContext in .Net ext apps. I only see the properties you mentioned. The only thing i got to work is the...
  7. codexPOSed

    3700 5.7 Mi Availability SIM FIx

    https://codexposed.com/
  8. codexPOSed

    Micros Simphony - Create Custom View

    I don't think so, As far i know, with Ext App, you can only deal with the current check.
  9. codexPOSed

    Micros Simphony - Create Guest Check, Extension Application

    Check out these threads: https://www.tek-tips.com/viewthread.cfm?qid=1811785 https://www.tek-tips.com/viewthread.cfm?qid=1806045
  10. codexPOSed

    How to Read Itemdiscount using Simphony Extensibility C# Code

    you are welcome, glad it helped, and thanks for the macro implementation, that is very useful!
  11. codexPOSed

    How to Read Itemdiscount using Simphony Extensibility C# Code

    hey Abhi, Can you please share the snippet of how you managed to ring up the reference? how did you setup the macro? I wasn't able to do that. here's how you can get the reference entries: public void ShowItemDiscounts() { foreach (var checkDetail in OpsContext.CheckDetail)...
  12. codexPOSed

    Simphony Create Web From Dll

    Hey Bassel, It hosuld be just like any other winform application. Add a windows form to your Ext App dll, and just new it up and show it
  13. codexPOSed

    How to Read Itemdiscount using Simphony Extensibility C# Code

    Hi Abhi, I thought you can chain the OpsCommands like we were used to be able to with LoadKybdMacro in ISL, but i think you need to create a macro, which i don't know how to do. The commands you can use to save a reference to discount (Asssming that the discount has "Reference Entry Required"...
  14. codexPOSed

    How to Read Itemdiscount using Simphony Extensibility C# Code

    i don't have working sample, but you need to new up some OpsCommands and process them using OpsContext.ProcessCommand. That's like LoadKybdMacro in isl. I seem the remember some samples in this blog. Search for OpsCommand... If you can't get it to work, post back, i'll try to pro-type a sample...
  15. codexPOSed

    How to Read Itemdiscount using Simphony Extensibility C# Code

    Hello Abhi, Something like this whould work: public void ShowItemDiscounts() { foreach (var checkDetail in OpsContext.CheckDetail) { if (checkDetail.DetailType != CheckDetailType.DtlTypeDsc) continue; var discDtl = checkDetail as...

Part and Inventory Search

Back
Top