77 Application(s) results for #objectscript
Filter
Show only
Last release on OEX
Categories
Works with
Industry
Application NameDeveloperMade withRatingLast updatedViewsInstalls

objectscript-docker-template

Template project for InterSystems ObjectScript with InterSystems IRIS community Edition docker container

Evgeny Shvarov
Docker
5.0 (1)03 Jul, 2025 1.3k

intersystems-iris-dev-template

A basic template to develop with InterSystems IRIS

Evgeny Shvarov
Docker
Python
5.0 (3)03 Jul, 2025 1.7k

InterSystems Ideas Waiting to be Implemented

Programmatic reports

The report creation is a tedious and non-productive task. You need an IDE, create a connection, create a SQL query, define report bands, drag-and-drop/design report columns, fields, labels, summarizations, margins, charts and prepare perfect pixel reports for print. To create a tradicional report the effort takes 4 to 12 hours. The idea is to define reports using object script instructions. With some minutes and with writing a few object script lines you can get a report equivalent to a tradicional report, with the benefit to create dynamic content for the reports (productivity). The idea includes yet the feature to allows to the developer set print restrictions for the PDF report generated (reduce carbon emission, not allowing print, only read). Benefits of this idea: 1 - Productivity - develop a report in minutes not in hours 2 - Reduce carbon emission - is possible restrict the PDF print 3 - Create dynamic reports using ObjectScript 4 - No need to install a report server, saving processor and memory resources (decreasing emissions) To create a report using source code, see this sample with Java, but could be in ObjectScript too: TextColumnBuilder<String> itemColumn = col.column("Item", "item", type.stringType()); TextColumnBuilder<Date> orderDateColumn = col.column("Order date", "orderdate", type.dateType()); TextColumnBuilder<Integer> quantityColumn = col.column("Quantity", "quantity", type.integerType()).setFixedWidth(50); TextColumnBuilder<BigDecimal> unitPriceColumn = col.column("Unit price", "unitprice", type.bigDecimalType()); ColumnTitleGroupBuilder titleGroup2 = grid.titleGroup("Group 2", quantityColumn, unitPriceColumn); ColumnTitleGroupBuilder titleGroup1 = grid.titleGroup("Group 1", orderDateColumn, titleGroup2).setTitleFixedWidth(450); report() .setTemplate(Templates.reportTemplate) .columnGrid(itemColumn, titleGroup1) .columns(itemColumn, orderDateColumn, quantityColumn, unitPriceColumn) .title(Templates.createTitleComponent("ColumnTitleGroup")) .pageFooter(Templates.footerComponent) .setDataSource(createDataSource()) .setSecurityRule(PrintRule.READ_ONLY) //if you want restrict print .printPDF();

Y
by Yuri Marx

5

Votes

3

Comments
Vote

shvarov-persistent

A simple persistent class with helpful properties we (almost) always need

Evgeny Shvarov
Docker
IPM
5.0 (1)02 Jul, 2025 56

ollama-ai-iris

Analyze PDF by extracting text and sending chat to ollama

O
Oliver Wilms
Docker
Python
AI
5.0 (1)24 May, 2025 71

bg-iris-agent

AI IRIS Agent

Elena Karpova
Docker
IPM
AI
5.0 (1)04 Apr, 2025 357 1

iris-data-analysis

Implementing data query and analysis

l
lando miller
Docker
Python
IPM
AI
4.0 (1)01 Apr, 2025 134

objectscript-errors

Example class which reproduces typical ObjectScript errors

Evgeny Shvarov
Docker
IPM
5.0 (1)05 Mar, 2025 214 55

objectscript-copilot-demo

An ObjectScript App completely (almost) written with AI Copilot

Evgeny Shvarov
Docker
AI
5.0 (1)25 Feb, 2025 93

Jupyter Server Proxy for VS Code

VS Code extension to provide a local Jupyter server acting as a proxy for IRIS servers defined in Server Manager

John Murray
Docker
5.0 (1)02 Jan, 2025 372

InterSystems Package Manager

InterSystems Package Manager

R
Robert Kuszewski
Docker
Python
4.8 (23)20 Dec, 2024 7.8k

tz - ObjectScript Time Zone Conversion Library

ObjectScript Time Zone Conversion Library

E
Eric Fortenberry
Docker
IPM
5.0 (1)19 Dec, 2024 207 6

Native-API-for-ObjectScript

A small demo on how to use it

Robert Cemper
Docker
IPM
5.0 (1)26 Nov, 2024 458 41

CPIPE

Example of using CPIPE programmatically

Robert Cemper
Docker
5.0 (2)26 Nov, 2024 441

ObjectScript-Over-ODBC

Allow running ObjectScript and especially Global copy over ODBC

Robert Cemper
Docker
IPM
4.5 (1)26 Nov, 2024 421 18

Test Coverage Tool

Run your typical ObjectScript %UnitTest tests and see which lines of your code are executed. Includes Cobertura-style reporting for use in continuous integration tools.

Timothy Leavitt
Python
IPM
5.0 (2)04 Nov, 2024 1.9k 2.0k

pxw-lib-sql

A replacement of SQLQuery that helps simplfy complex queries

P
Paul Waterman
Docker
IPM
4.0 (1)10 Oct, 2024 117 3

IRIS-Test-Data-Generator

Used to generate test data

D
Dylan Cole
Docker
IPM
3.0 (1)29 Sep, 2024 161

objectscript-package-example

ObjectScript Package example with simplified folder structure

Evgeny Shvarov
Docker
IPM
5.0 (1)12 Aug, 2024 605 45

CommentToObjectScript

Add comments to ObjectScript in VSCode

Akio Hashimoto
0.0 (0)01 Aug, 2024 80

OPNLib-Timer

Timers Generator Tool. Allows whatever application process to easily orchestrate taks, defining its own timers that will wake it up to make actions.

J
Jose Tomas Salvador
Docker
IPM
5.0 (1)10 Jul, 2024 198 14

geo-vector-search

mathematical use of vector search

Robert Cemper
Docker
IPM
5.0 (3)27 Apr, 2024 315

deployed-code-template

An example of how to deploy ObjectScript without source via IPM

Evgeny Shvarov
Docker
IPM
5.0 (2)22 Apr, 2024 167 9

cpipe-for-AoC2020

A practical example to consume external modules as solutions using cpipe

Robert Cemper
Docker
Python
IPM
5.0 (1)25 Mar, 2024 276 26

iris-csv-anonymizer

Version: store/intersystems/iris-community:2020.3.0.221.0

R
Renan Lourenco
Docker
IPM
5.0 (1)25 Mar, 2024 434 46

objectscript-package-template

Template for InterSystems ObjectScript classes published to Package Manager ZPM

Evgeny Shvarov
Docker
IPM
5.0 (1)25 Mar, 2024 543 50

iris-rest-api-template

The simplest template with REST CRUD for InterSystems IRIS

Evgeny Shvarov
Docker
IPM
5.0 (2)25 Mar, 2024 1.4k 59

Vector-inside-IRIS

run vector search inside IRIS

Robert Cemper
Docker
Python
IPM
5.0 (1)21 Mar, 2024 234 1

Row Storage vs. Columnar in IRIS native

performance check with COS inside IRIS

Robert Cemper
Docker
IPM
5.0 (2)05 Mar, 2024 145 1

yaml-utils

Simple ObjectScript YAML-to-JSON converter

B
Benjamin De Boe
IPM
4.5 (2)01 Mar, 2024 737 895

AoC2023_test

2 test data sets for AoC2023 quality check

Robert Cemper
Docker
0.0 (0)08 Dec, 2023 141