Learning Documentation Community Open Exchange Global Masters Certification Partner Directory Ideas Portal
Developer Community
  • Posts
    • InterSystems Official
    • Articles
    • Questions
    • Announcements
    • Discussions
    • Tags
  • Events
    • Tech Article Contest
    • Programming Contest
    • InterSystems Ideas Contest
    • Event Calendar
  • Products
    • InterSystems IRIS
    • InterSystems IRIS for Health
    • HealthShare
    • TrakCare
    • Caché
    • Ensemble
    • InterSystems Analytics (DeepSee)
    • InterSystems Text Analytics (iKnow)
  • Jobs
    • Job Opportunity
    • Job Wanted
  • Members
  • About
    • About Us
    • FAQ
    • Feedback
    • Report an Issue
    • Share an Idea
    • Code of Conduct
    • Contact Us

EN

Search by posts, members, tags
Language
EN|
ESPTJPCNFREN
New post
  • Profile page
  • Posts (313)
  • Replies (3,504)
  • Mentions (365)
  • Official certification & Credly badges (4)
  • Global Masters badges (90)
  • Following (0)
  • Followers (50)
AllAccepted answers
    go to post
Eduard Lebedyuk · Jul 6, 2018

You can receive all filter values for cube if you pass its name as a datasource:

/Info/FilterMembers/YourCubeName
0 0 https://community.intersystems.com/post/question-about-infofiltermembers?page=112#comment-104391
    go to post
Eduard Lebedyuk · Jul 6, 2018

Here's an output I get:

USER>

USER>

USER>

This is written by INT routine
USER>

 which is created from a script injected to csession.
USER>

USER>

D ^MyBootRoutine
^
<NOROUTINE> *MyBootRoutine
USER>

USER>

USER>

Looks like it's still line-by-line execution.

0 0 https://community.intersystems.com/post/multi-line-terminal-commands?page=112#comment-53196
    go to post
Eduard Lebedyuk · Jul 6, 2018

It's executed during container build, so to load something I need a script.

0 0 https://community.intersystems.com/post/multi-line-terminal-commands?page=112#comment-53191
    go to post
Eduard Lebedyuk · Jul 6, 2018

This answer by @Timothy Leavitt explains how to get CLS line from INT line.

Maybe we can add that functionality to Atelier?

0 0 https://community.intersystems.com/post/zgetfile8userread1?page=112#comment-53186
    go to post
Eduard Lebedyuk · Jul 5, 2018

First you need to load CSV into class.

After that you can convert objects of your new class into json using SQL JSON_OBJECT function or %ZEN.Auxiliary.altJSONProvider.

2 0 https://community.intersystems.com/post/how-can-i-convert-csv-json?page=112#comment-104361
    go to post
Eduard Lebedyuk · Jul 5, 2018

You can determine, where does the message comes from by inspecting it's header, get header Id from:

 $$$JobCurrentHeaderId

and query Ens.MessageHeader class.

Alternatively, check "process" variable in BPL or current context in ObjectScript processes. Maybe the whole object would be available somewhere.

0 0 https://community.intersystems.com/post/how-access-header-properties-message-code?page=112#comment-104351
    go to post
Eduard Lebedyuk · Jul 4, 2018

Check out this list of tools for C#/InterSystems interoperability.

I think you need Caché Managed Provider for .NET.

In <installdir>\dev\dotnet there are several examples available.

0 0 https://community.intersystems.com/post/question-connect-cache-object-cor-vb?page=112#comment-104331
    go to post
Eduard Lebedyuk · Jul 3, 2018

Here's an example of accessing properties and array elements:

set jsonObj = [].%FromJSON(filename)
set i = jsonObj.resultSets.%GetIterator()
while i.%GetNext(.key , .resultSet ) {
    set i2 = resultSet.rowSet.%GetIterator()
    write resultSet.name,!
    while i2.%GetNext(.key , .rowSet ) {
        write rowSet.%Get(0),!
    }
}
1 0 https://community.intersystems.com/post/json-parsing-and-streaming?page=112#comment-104326
    go to post
Eduard Lebedyuk · Jul 3, 2018
$zu(68,40,switch)

can be replaced with:

set old=$system.Process.SetZEOF(switch)

Also, what does this command do?

kill ^TMP($zn,$j)
0 0 https://community.intersystems.com/post/comando-zf?page=112#comment-53056
    go to post
Eduard Lebedyuk · Jul 3, 2018

This error indicates that either login and password are incorrect or that user has insufficient permissions to access management portal.

1 0 https://community.intersystems.com/post/error-822-access-denied-0?page=112#comment-104316
    go to post
Eduard Lebedyuk · Jul 2, 2018

Generally you'll need to check the service and adapter method lists. Callbachs are often called "On*".

Similar discussion for SQL adapter.

0 0 https://community.intersystems.com/post/business-service-events?page=112#comment-104291
    go to post
Eduard Lebedyuk · Jul 2, 2018

1. Connect to other system via xDBC

2. Query %Dictionary package on a local and remote system and compare results.

1 0 https://community.intersystems.com/post/accessing-cache-data-another-system?page=112#comment-104286
    go to post
Eduard Lebedyuk · Jun 29, 2018

But prior to 2010.1 we didn't have $NAMESPACE

As @Lucas.Fernandes uses $namespace in his solution:

 #dim currentNamespace As %String = $namespace 

that is not a concern in this particular case.

1 0 https://community.intersystems.com/post/installation-manifest-i-can-disabled-journal-globals-xml?page=112#comment-52926
    go to post
Eduard Lebedyuk · Jun 28, 2018

Here's my URL template

jdbc:Cache://{host}[:{port}]/{database}

If you connect but get Access Denied, try user with %ALL permissions to remove doubts about insufficient privileges.

0 0 https://community.intersystems.com/post/can-i-connect-cache-using-ssms-sql-server-management-studio?page=112#comment-52856
    go to post
Eduard Lebedyuk · Jun 28, 2018

Are there advantages to using:

set currentNamespace = $namespace
znspace "%SYS"
// do stuff
znspace currentNamespace

Instead of:

new $namespace
set $namespace = "%SYS"
// do stuff
0 0 https://community.intersystems.com/post/installation-manifest-i-can-disabled-journal-globals-xml?page=112#comment-52846
    go to post
Eduard Lebedyuk · Jun 27, 2018

What about output file size?

0 0 https://community.intersystems.com/post/custom-file-pass-through-operation-writing-out-unreadable-pdf-files?page=112#comment-52751
    go to post
Eduard Lebedyuk · Jun 27, 2018

Sample integration with Moscow Exchange.

0 0 https://community.intersystems.com/post/how-can-i-connect-stream-data-api-iris-plattform?page=112#comment-52746
    go to post
Eduard Lebedyuk · Jun 27, 2018

You can use %Stream.FileBinary and %Stream.GlobalBinary classes.

0 0 https://community.intersystems.com/post/parse-binary-data-intersystems-objectscript?page=112#comment-104211
    go to post
Eduard Lebedyuk · Jun 26, 2018

Try to replace %XML.String with %String(MAXLEN="");

0 0 https://community.intersystems.com/post/how-display-property-containing-html-without-encoding-all-special-characters?page=112#comment-104176
    go to post
Eduard Lebedyuk · Jun 26, 2018

4. Didn't found how to do that automatically, but adding <br/> to text value adds a new line, i.e.:

 Set var(0,1) = "!!!!!!!!!!!!!!!!<br/>!!!!!!!!!!!!!!!!!!!!!"
0 0 https://community.intersystems.com/post/generating-pdf-tables-programmatically?page=112#comment-52676
  • first
  • ‹ previous
  • …
  • 111
  • 112
  • 113
  • 114
  • 115
  • …
  • next ›
  • last
Eduard Lebedyuk
@Eduard.Lebedyuk
Senior Cloud Architect at InterSystems
MOD
Follow
Open Exchange profile

User statistics

Posts
313
Replies
3.5K
Likes
2.2K
Applications
39
Badges
90
Followers
50
People reached
316.2K
Accepted answers
786
  • Privacy & Terms
  • Guarantee
  • Section 508
  • Contest Terms
  • Cookies Settings
© 2025 InterSystems Corporation, Cambridge, MA. All rights reserved.

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up