go to post Cristiano Silva · May 12, 2023 Hi @Christine Nyamu Use $Piece function to get the value of a delimited string. In you specific case: Set value = $Piece(obxValue, "<>", 2) I assumed that the variable obxValue was set before in the code. Note if the in the obx segment the value change the order like, "TESTED POSITIVE FOR ANEMIA<>BLOOD WORK WAS DONE<>TESTED NEGATIVE FOR HEPATITIS", the above sample code will fail
go to post Cristiano Silva · May 5, 2023 @Jon Astle See the setting ArchivePath in documentation. Regards.
go to post Cristiano Silva · May 5, 2023 @Humza Arshad You can create a REST API/ SOAP API, or any other kind of protocol/technology, to get authentication, retrieve and send data to IRIS. See the documentation: REST SOAP These other two link are two Open Exchange apllication to create Rest Services and Form UI. RESTForms2 RESTFormsUI2 Search in the Leraning Portal for some course that help you. Best Regards.
go to post Cristiano Silva · May 4, 2023 Hi @Vinay Purohit See the Caché documentation about CSP Sessions, I think can help you.
go to post Cristiano Silva · May 4, 2023 Create a two new classes that inherit from the "Big Class", and Override the methods that you need in each specific class. When finished remove the inheritance.
go to post Cristiano Silva · May 3, 2023 Hi @Raja Mohan and @Haitem El Aaouani Bellow a sample method ClassMethod CreatProdution(package As %String = "test", name As %String = "AutoCreatedProduction") As %Status { #Dim produtionClassName As %String = package _ "." _ name If ('$ZName(produtionClasName, 4)) { Return $System.Status.Error(5001, "Invalid Production package or name.") } // Create empty production class definition #Dim productionDefinition As %Dictionary.ClassDefinition = ##Class(%Dictionary.ClassDefinition).%New() // Set productionDefinition.Name = produtionClassName Set productionDefinition.Super = "Ens.Production" Set productionDefinition.ClassVersion = 25 // // Create the XData definition #Dim xdataDefinition As %Dictionary.XDataDefinition = ##Class(%Dictionary.XDataDefinition).%New() // Set xdataDefinition.Name = "ProductionDefinition" // Do xdataDefinition.Data.WriteLine("<Production Name="""produtionClassName"""/>") // // Insert XData Definition into Production Definition Do productionDefinition.XDatas.Insert(xdataDefinition) // #Dim statusCode As %Status = productionDefinition.%Save() // If ($System.Status.IsError(statusCode)) { Return statusCode } // Compile the production class Set statusCode = $System.OBJ.Compile(produtionClassName,"k-d") If ($System.Status.IsError(%Dictionary.XDataDefinition)) { Return statusCode } // fill in production: #Dim production As Ens.Config.Production = ##Class(Ens.Config.Production).%OpenId(produtionClassName) If ('$IsObject(production)) { Return $System.Status.Error(5001, "Unable to open new production: " _ produtionClassName) } Set production.Name = produtionClassName Set production.ActorPoolSize = 2 // // save production (and item), update production class and account for Source Control Return ##Class(EnsPortal.Template.prodConfigSCPage).CallProductionUpdateAndSaveToClass(production,"","SaveProduction") }
go to post Cristiano Silva · May 3, 2023 Hi @Mohammed Alhato The error tell that the class *User.IRISPRODTEST does not exists, did you compile this class?
go to post Cristiano Silva · May 2, 2023 Hi @Scott Roth Like the @Jeffrey Drumm told, the problem are because the Database ENSLIB are Read Only. The error occur because you are using the Macros $$$FormatText and $$$Text. When you use $$$Text macro, the macro try to create a entry in the global ^IRIS.Msg. The global ^IRIS.Msg is mapped from ENSLIB database that is by default Read Only. See imagem bellow that the ^IRIS.Msg("ENSEMBLE") is mapped, but the root global ^IRIS.Msg is mapped to the namespace data base. To solve the compilation error do change calls to $$$Text("some text", "Ensemble") for some think like $$$Text("some text", "MyDomain") Click in Replace all Then compile: For more information see the documentation String Localization and Message Dictionaries Regrads.
go to post Cristiano Silva · Apr 26, 2023 @Nezla You need to create a instance of %SQL.Statement with the first parameter of %New method iqual 2. #Dim stmt As %SQL.Statement = ##Class(%SQL.Statement).%New(2) For more details see https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=GSQL_dynsql#GSQL_dynsql_objinstance
go to post Cristiano Silva · Apr 25, 2023 @Punit Shah you right. Sorry by not warning about it. You can use some methods of %File class to help. DirectoryExists CreateDirectory CreateDirectoryChain CreateNewDir
go to post Cristiano Silva · Apr 25, 2023 @Punit Shah Remeber that if the file already exists, new writes will be appended to end of the file.
go to post Cristiano Silva · Apr 24, 2023 Hi @Punit Shah Use the method LinkToFile below a example. C:\temp before create the file: Execute the code Set file = ##Class(%Stream.FileBinary).%New() Set statusCode = file.LinkToFile("c:\temp\test_file.txt") If ($System.Status.IsError(statusCode)) { Do $System.Status.DisplayError(statusCode) Return } Do file.WriteLine($ListBuild("Some bin data")) Write $System.Status.DisplayError(file.%Save()) After execution:
go to post Cristiano Silva · Apr 20, 2023 only uninstall option is the unattended section at https://docs.intersystems.com/ens201817/csp/docbook/DocBook.UI.Page.cls?... You can use add or remove programs too. would I be correct to interpret 'CacheC' in the example command as the instance name of the Ensemble installation to be uninstalled? Or is that the folder name on the filesystem where it is in installed? Is the instance name. Not familiar with Windows Registry editing, so can I safely delete those two trees in the registry if i want a completely fresh start? After uninstall and if you have only one installation yes.
go to post Cristiano Silva · Apr 20, 2023 Below you find information about Installation and Uninstallation https://docs.intersystems.com/ens201817/csp/docbook/DocBook.UI.Page.cls?KEY=GCI_windows About the register this two tree are created: HKEY_CURRENT_USER\Software\InterSystems HKEY_LOCAL_MACHINE\SOFTWARE\Intersystems
go to post Cristiano Silva · Mar 21, 2023 Hi Dmitrii Baranov, I think that a better approch is that you create a new class that extends the original class and change only the method that you need.
go to post Cristiano Silva · Feb 3, 2023 Hi Pedro, You can retrieve this information querying the class %Dictionary.PropertyDefinition. An example: SELECT Name FROM %Dictionary.PropertyDefinition WHERE parent = "mypackage.MyClassName" The field parent is fully qualified name of the class that you want to list properties name.
go to post Cristiano Silva · Jan 12, 2023 HI @Freddy Baier You can change your query, given alias to the columns: SELECT id,room,client->name as ClientName,functionary->name as FunctionaryName FROM rooms ORDER BY id Then in COS you access the columns by name: Write rs.%Get("ClientName") Write rs.%Get("FunctionaryName")
go to post Cristiano Silva · Jan 4, 2023 HI @Mehul Patel Maybe the documentation help you: Enable Cipher Suites Syntax to enable or disable which version is or not supported by the connection.