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. codexPOSed

    EMC Login Error (After Restart)

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

    3700 5.7 Mi Availability SIM FIx

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

    Simphony POS Client Extension Application, subscribe to OpsTmedEvent method

    JCCR, Hmmm. Not sure, what's happening. I took your class and built an EA out of it an it works for me. Here is the configuration screen shots from EMC: Extension App: After i setup the above in EMC, on the Service Host I did: 1. "Reload DB" 2. Killed the Service Host 3. Restarted Service...
  20. codexPOSed

    Simphony POS: SQL Export to Consolidate Split Checks

    Use the transaction DB(MCRPOS) rather than the reporting DB (LOCATION_ACTIVITY_DB). Here is UML that might help: Also, keep in mind that you won't have access to databases if it's Simphony SE on the cloud. then your options are to: 1. Build a custom R&A report 2. Use Enterprise Back Office...

Part and Inventory Search

Back
Top