go to post Ben Spead · May 5, 2022 if you import this class into IRIS you will then be able to run the methods. Look up the docs for $system.OBJ.Load() .. you will load and compile the class and the. you can call the methods like this: Do ##class(User.Ready.ConvertCSV).ConvertN() (I assume you cut out the actual logic of the methods when you pastes it above as what you pasted is incomplete)
go to post Ben Spead · Apr 6, 2022 @Cryze Zhang - it looks like this was an issue in prior versions as well. Did you know you can report this directly to the InterSystems Documentation team? Click on the blue "Feedback" button on the right side of the screen and it will give you a chance to tell Docs directly what is wrong with the page. Here is the 2021.1 link you can use for your convenience:https://docs.intersystems.com/irislatest/csp/documatic/%25CSP.Documatic.... Thank you for noticing this and bringing it to our attention! Please confirm once you have reported the issue and it will get addressed.
go to post Ben Spead · Mar 29, 2022 You are most welcome! There is a lot of power there at your disposal ... enjoy the discovery process!
go to post Ben Spead · Mar 18, 2022 @Alistair Hutchinson - probably best to contact TrakCare Support on this: https://www.intersystems.com/support-learning/support/
go to post Ben Spead · Mar 3, 2022 Halt or just 'H' https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls...
go to post Ben Spead · Feb 28, 2022 @prashanth ponugoti - a couple of things to look at: 1) When you open the first link in /csp/healthshare does it open for you after authenticating? 2) Is your /csp/test web application definition set to work in the same namespace as /csp/healthshare? 3) Is a copy of your person.csp file moved to the web application root that you defined for /csp/test? Hope that helps get you started on finding a solution.
go to post Ben Spead · Feb 24, 2022 Note ... make sure you have downloaded the actual Community Edition kit (if you did not then it won't have a license embedded). Go to evaluation.intersystems.com and select the option for Community Edition to make sure you have the right kit.
go to post Ben Spead · Feb 9, 2022 @A.R.N. H Hafeel - are you specifically interested in Caché or are you looking for the latest and greatest and therefore interested in learning InterSystems IRIS?
go to post Ben Spead · Feb 3, 2022 In the \bin directory is the csystray.exe file. Run that to get the cube running. Alternatively, you can use the cube that you do see in your systray and select "Remote System Access" to get to Studio, SMP, etc of your second instance.
go to post Ben Spead · Feb 3, 2022 Is there a single development server which all developers connect to? If you are not able to have a fully isolated development environment for each developer then you will end up getting frustrated trying to use client-side source control. You might want to consider the new server-side Git source control hooks which were recently launched: https://community.intersystems.com/post/git-shared-development-environments This won't solve your issue of working while not on VPN, but it will allow multiple developers to work against the same instance without stepping on each others' toes.
go to post Ben Spead · Feb 3, 2022 I know this is an old thread, but we do have a solution available now for this scenario which will work with Studio, Atelier or VSCode. See https://community.intersystems.com/post/git-shared-development-environments
go to post Ben Spead · Dec 1, 2021 Absolutely! You will need to write a method that contains the SQL and then execute the method from a Task. As the linked docs suggest, write your own task by creating a class that extends %SYS.Task.Definition: https://docs.intersystems.com/latest/csp/documatic/%25CSP.Documatic.cls?...
go to post Ben Spead · Nov 12, 2021 @Nicola Sartore - what does your organization use for a source control strategy? if you use server-side source control hooks and you are on at least Cache 2017.1 (or any version of IRIS) then you can mix and match Studio and VS Code as VSCode fully supports server side source control (as well as client side, but if you are a Studio shop then you don't have any client side source control in place)
go to post Ben Spead · Nov 9, 2021 2021 Update - there is now a solution available that fills this need: https://community.intersystems.com/post/git-shared-development-environments
go to post Ben Spead · Sep 30, 2021 Lookup Tables are covered by the Source Control hooks in the management portal so they will automatically be added to your uncommitted queue upon check-out so you can include it in a future ItemSet upload. See slides 12-14 of ftp://ftp.intersystems.com/isc/customers/ccrtraining/ICC530(Presentation)%20CCR%20Tier%201%20-%20Interoperability%20Components.pdf
go to post Ben Spead · Sep 9, 2021 @Stephen Ali - thanks for asking the question (and welcome to the Developer Community!). Typically detailed questions like this on TrakCare products are worked out directly with InterSystems Support. Globally we have TrakCare product tuned to regional requirements so it's important to connect with you product specialists from your specific region. I suggest you go to https://www.intersystems.com/support-learning/support/ to see how to contact Support and they can help you get this question sorted out.
go to post Ben Spead · Sep 3, 2021 Just curious - where are you seeing this? Could you please include a URL? The InterSystems SSO account is what controls your access to open as well as restricted applications provided by InterSystems to help customers and prospects get stuff done. If you go to Login.InterSystems.com you can see the various apps available to you (after you sign in). This would include things like D.C., OEX, Learning, Download, etc for Prospects, and supported customers would also get access to WRC, iService, HS Docs, CCR, etc (depending on what products they have). Hope that helps - let me know if any additional clarification is needed.
go to post Ben Spead · Apr 19, 2021 Are you asking how to check a global to see if the system is Dev/Test/Production as per the "System Mode" dropdown in the "Memory and Startup" page in the SMP? If so, then this is stored in the following global: ^%SYS("SystemMode") It should have values like "DEVELOPMENT", "TEST" and "LIVE"
go to post Ben Spead · Mar 4, 2021 There are different kernels but other than that you should be able to run the same ObjectScript code on both platforms and it will behalf identically. If you are going to be doing file interactions, then I suggest using the %File library class which will make your code portable between Windows and UNIX file systems. Likewise if you are calling out to other executables, you will need to instrument your code to call out appropriately based on your platform.
go to post Ben Spead · Feb 18, 2021 I am assuming you want to create a tag-based CSP page as a quick and dirty way to through up some data in a table? If so, the basic steps would be: Load a JS library like https://www.tablefilter.com/ to make your filtering easy Write out your <table> and <th> tags Create a <script language='cache' runat='server'> block to hold your ObjectScript which will fetch your result set Use %SQL.Statement to create and run the query and fetch the data Iterate over the resultset, and write out a row of HTML for each row in the resultset using &html<> End your </script> tag and then end your </table> tag Hope that gets you rolling!