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 Mike Lewis 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. 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
  2. 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/
  3. codexPOSed

    EMC Login Error (After Restart)

    check out the logs: \MICROS\Simphony2\EgatewayService\EGatewayLog it should you give you more details on why...
  4. 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...
  5. 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...
  6. codexPOSed

    3700 5.7 Mi Availability SIM FIx

    https://codexposed.com/
  7. 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.
  8. 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
  9. 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!
  10. 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)...
  11. 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
  12. 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"...
  13. 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...
  14. 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...
  15. codexPOSed

    Simphony Create Web From Dll

    Hello Bassel, Unfortunately there is no grid-like component available through opscontext api. The closest thing to it is OpsContext.ShowTextList. if your Service Host clients are all windows32 clients, you can instantiate and display a winforms or wpf forms with grids on them. 19.2 docs...
  16. codexPOSed

    How to get selected tender reference entry name via ISL code ?

    Oh, OK. Yeah it seems 3700 works as a bool: If memory serves, the references are the next detail after the tender. So try this: if selected = 1 if (@DTL_TYPE [ecnt+1] = "R") InfoMessage "RefName",@DTL_NAME[ecnt+1] endif endif
  17. codexPOSed

    How to get selected tender reference entry name via ISL code ?

    hey Vedank, Assuming this is Simphony-SE, @DTL_SELECTED is not a bool as you expect to get looking at your code. it returns the DetaiLink.
  18. codexPOSed

    Res3700 5.74 Sim format command text limit

    Hey Azrobert, I don't think the size limit on variables changed, and Format is still the best way to build your sql commands. However i seem to remember a change where they have done something with DateTime values that are returned frm SQL as well as how you need to send them. I think you need...
  19. codexPOSed

    Micros SIM - How to add a open/dynamic menu item to the check in a SIM script using LoadkybdMacro

    Hey Vedank, It should be something like this: loadkybdmacro makekeys(<Qty>),key(1,458752),key(3,<MiNumber>),MakeKeys(<Amount>),@KEY_ENTER,MakeKeys(<Reference>),@KEY_ENTER good luck
  20. codexPOSed

    Micros 3700 ISL SIM, error inserting record

    hey JCCR, Depending on what Db, user schema your table is and what user you use in your connection string, you may have to fully qualify the table names you insert into, like micros.micros.mytable, or micros.custom.mytable

Part and Inventory Search

Back
Top