Greetings to all! Faced with such a problem, I ask for help, someone with great practical skills I think has already implemented this.The task was not to delete any objects from the database, but somehow mark this data deleted by client, because of this, I added Property Deleted As% Boolean [InitialExpression = 0];in the class.And in the redefined method %OnDelete:
Hi guys,
I'm trying to immigrate some of my HealthInsight dashboards and pivot tables to another HS instance.
In some pivot tables, I defined them with a set of calculated dimensions defined in the analyzer, e.g as below:
Then when I exported the cubes and pivot tables in used to my new envirmonment. When I open my pivot tables again, the calculated dimensions are missing and hence my pivot tables no longer work:
Is there any way to export those calculated dimensions so that I can used them else where?
Hi, Community!
This week we have two videos. Check all new session recordings from Global Summit 2017:
Hello,
every time I open the management portal (http://localhost:57774/csp/sys/UtilHome.csp) the default namespace is %sys.
How to set the namespace to my preferred namespace instead %sys?
Is there a setting or could I change the link?
Thank you
Helmut
P.S.: In my attached example image I want always to have default namespace EXPERT when I open management portal
Advent of Code is a series of 25 small programming challenges, it's an ideal way for beginners to start learning a computer language, and for advanced people to sharpen their programming skills.
There are small and bigger puzzles, which you can solve typically in half an hour to a few hours. (Looking at the leaderboard, the top aces can do them in less than 10 minutes.)
Advent of Code is created by Eric Wastl, you can find all info on https://adventofcode.com/.
We are getting the input as xml in ftp inbound adapter and need to send the xml content to the soap webservice. I have to create a business operation to handle this operation
Hi, Community!
This post is a digest of the Developer Community postings in October 2017.
Most Viewed
Developers Meetup 25th of October, Cambridge MA, CIC 269
COS extension for Microsoft Visual Studio Code 183
Release of Caché / Ensemble 2017.2.0 and HealthShare Health Connect v15.03 for 2017.2.0 179
How to interactively run a Windows or Unix command from inside Caché/Ensemble 172
Yet Another Way to Duplicate Quotes in String 162
Studio Source Control in Atelier 161
Using $fromObject throws error 155
Global Masters Badges Descriptions 147
Hi, Community!
See the Key Notes videos from Global Summit 2017 with new InterSystems IRIS Data Platform announcement.

Is there a group for InterSystems IRIS? If not, can you create it?
Hi, Community!
The Global Summit 2017 Key Notes session will start in two hours at 9-00AM (PT).
Here is the link for live streaming.
Join!

I want to limit the length of the value of a textarea in Zen. In HTML the textarea element has a 'maxlength' attribute, but the Zen component doesn't have an equivalent property. Is there any way to add a maximum length in Zen short of creating my own custom component?
I am logged in and cannot seem to edit my background information and some other attributes.
What gives?
Most likely I am doing something wrong but any help would be appreciated.
Hi, Community!
Suppose If you develop a client js application which works with Caché server via REST API (CSP Gateway).
What are the options for Authentication and working with Caché session then?
I'm extracting text from HTML (more on how - here), and after I extract text it has two problems:
- Lot's of $c(10) control characters
- Multiple whitespaces
Here's an example of the text extracted from HTML page:
This small function is of great need sometimes. My solution is straightforward:
dupquote(str) ; duplicate quotes in str quit $replace(str,$char(34),$char(34,34))
I'm just curious whether other solutions exist. Is there some "standard" and/or quicker approach which I've just overlooked?
Hello,
I would like to implement the Activity Monitor in a Sharepoint page.
How is it possible to integrate only the Zen element?
Is it necessary to develop a CSP application in which this element exists?
Has anyone done this before and can I get a tip?
With kind regards
Armin
Hi, Community!
We have a lot of good articles posted on Community to the date. Even more questions with great answers (see the stats). Thank you for your contribution!
So sometimes it worth to use search to find an answer or the best practices or the post you remember was posted but cannot find.
I successfully connected the Cache instance to Atelier but I can just view the code and not edit it. Any suggestions ?
Thanks
Kumar
I have a classname and a property name. I want to know, when I get object value directly from a global, which property corresponds to which position in the $lb structure.
Here's what I got so far:
Hi All,
I have a rasing task from BPL using <call>, it needs to add an entry in workflow task list and the task has to rais.
after performing,
I didn't see the entry in workflow task list, but the task gets raised.
In What is the root cause for this.
Why there is no entry in tasklist after raising task?, How to verify it?
Thanks
Hi team,
i send an http request to my rest class, i want to extract ID , full name , pass word from this request , can you show me how doing it.
thank's
I defined the variables in Cache, as follows:
Property Content As% Stream.GlobalCharacter [Required, SqlColumnNumber = 3, SqlFieldName = B_Content];
And then use the SQL statement to add:
insert into table_name (B_Content) values ('very long string');But the error:
Apache Spark has rapidly become one of the most exciting technologies for big data analytics and machine learning. Spark is a general data processing engine created for use in clustered computing environments. Its heart is the Resilient Distributed Dataset (RDD) which represents a distributed, fault tolerant, collection of data that can be operated on in parallel across the nodes of a cluster. Spark is implemented using a combination of Java and Scala and so comes as a library that can run on any JVM. Spark also supports Python (PySpark) and R (SparkR) and includes libraries for SQL
Hi, Community!
Please find a new session recording from Global Summit 2017:
I am designing the software architecture for an Ensemble/Healthshare production to be deployed on Amazon AWS EC2 servers (2 mirrored m4.large - 4 vCPUs / 16 GiB RAM running RedHat Linux 3.10.0-327.el7.x86_64 and Healthshare for RHEL 64-bit 2016.2.1). It's a rather CPU-intensive production involving massive XSLT 2.0 transformations (massive both in terms of size and volume). I was wondering if anyone has experience configuring Ensemble productions on EC2 servers. My question or concern has to do with the following statement in the Ensemble documentation:
Greetings to all!!!How to get the value of the Content-Type field from the object of the class %Stream.Object obtained with:
stream=% request.GetMimeData (FormDataName, 1)I tried:
write stream.GetAttribute("Content-Type")write %request.Get("Content-Type")
but always returns a void, although it should be "image/jpeg", "application/pdf" or something like that.
In JS:
var formData = new FormData(); formData.append('file', element[0].files[0]); console.log(element[0].files[0].type);
The console of browser displays "image / jpeg", "application / pdf", etc.
Looking through Mirroring routines sources, I've noticed these terms, while even the latest documentation keeps silence on them. I'm just curious what are they, and how to configure / to use them?
Greetings to all!!!Suppose there is a table Mother (ID, Name) and Child (ID, Name, Mother), Mother in the table Childis a relationship.Let's say the task is to deduce the names of all the children whose their moms' names start with the letter 'A', I can do this in two ways in sql, and I can not understand the difference, the pros and cons that when to use:
1) SELECT Child.Name FROM Mother INNER JOIN Child ON Mother.ID = Child.Mother WHERE Mother.Name LIKE 'A%'
2) SELECT Child.Name FROM Child WHERE Child.Mother->Name LIKE 'A%'
I have two databases, and both of them have a global ^Data with subscripts going from 1 to 10 000 000.
I want to get one database with global ^Data but with subscripts going from 1 to 20 000 000.
Since each db is around 100 Gb and they are on a different hosts, what's the best way to merge them?
Hi,
I have a persistent class “sp.SensorReading” which has a number of Properties: Date, SensorName, SensorReading. (sometimes multiple readings from the same sensor, on a given day)
...
Temp 28 Jan 33.5
Temp 29 Jan 31.2
Temp 30 Jan 33.1
Temp 30 Jan 34.1
Temp 31 Jan 32.1
Temp 31 Jan 33.1

