Время создания
Filters
Components_Pack
syntech
Pack
marketplace
automation
release

Syntech Components Pack for Creatio Is Now Available on Creatio Marketplace

We are excited to announce the release of Syntech Components Pack for Creatio, now available on the Creatio Marketplace.

The package brings together 9 powerful Freedom UI components designed to enhance visualization, planning, analytics, and productivity directly within Creatio.

Included in the package:
- Kanban View
- Gantt View
- Scheduler
- Pivot Tables
- Interactive Maps
- To Do Lists
- Hierarchy View
- Relation Diagram
- Slider Component

Instead of searching for multiple solutions, organizations can now access a comprehensive set of ready-to-use components in a single package, helping teams accelerate implementation, improve user experience, and extend Creatio capabilities without additional development.

Whether you're managing projects, analyzing data, planning resources, visualizing business processes, or building more intuitive applications, Syntech Components Pack provides the tools to do it faster and more efficiently.

Explore the application on Creatio Marketplace: https://marketplace.creatio.com/app/syntech-components-pack-creatio

Like 1

Like

Share

0 comments
Show all comments

The problem every Creatio Cloud admin knows

If you administer Creatio Cloud, you've hit this wall. You need to answer a data question — find users created last week who haven't logged in, verify records after a migration, audit which entities were modified during a specific window, or debug why a process instance behaved unexpectedly. In an on-premise setup, you'd write a quick SQL query. On Cloud, you don't have direct database access.

So the question that should take thirty seconds becomes a support ticket, a UI reconstruction exercise, or a CSV export into Excel. None of these scale, and every Creatio team I've worked with absorbs this cost silently, week after week.

I built SQL Cor to close that gap — without throwing away the safety that made Cloud abstract the database in the first place.

What SQL Cor is

SQL Cor is a Creatio application that adds a controlled SQL terminal directly inside your environment. It's installed as a standard package and runs on both Cloud and on-premise, against PostgreSQL or MSSQL.

The design principle is simple: give admins direct query access, but make every layer of it controlled and auditable.


How access control works

This is the part that matters most, so I'll be specific.

Permission levels are graded per user. Each authorized user is assigned one of three levels:

  • Read-only — SELECT queries only. This covers the overwhelming majority of day-to-day operational questions.
  • DML — INSERT, UPDATE, DELETE. For users who need to fix data, not just read it.
  • DDL — schema-level operations. Granted rarely and deliberately.

A query blacklist operates above roles. You can block patterns system-wide, regardless of a user's permission level. For example, you can block all DROP TABLE operations entirely, so even a DDL-level user cannot execute them. Blacklist rules can be defined by pattern or by category.

Safe defaults protect the environment. SELECT queries get automatic row-limit injection so a careless query can't pull millions of rows and strain the server. Timeouts are configurable. There's a dry-run mode that previews which rows a DML operation would affect before you actually run it.

The audit log

Every query that runs through SQL Cor is logged: the user who ran it, the timestamp, the query text, the result summary, and the execution time.

This is the piece that makes direct database access defensible in environments where traceability matters. You're not giving up the audit trail to gain query access — you keep both. In a compliance-sensitive setup, being able to answer "who ran what against the database, and when" is not a nice-to-have. It's a requirement.


Why it's built this way

The interesting realization while building SQL Cor was that the value isn't the SQL terminal itself. Tools like pgAdmin and SSMS have existed for years. The value is controlled access in an environment that deliberately removed it.

Both sides of the tension are legitimate. Creatio Cloud abstracts the database for good reasons — safety, stability, separation of concerns. But admins still have a real, recurring need to query data directly. SQL Cor resolves that tension instead of ignoring either side: the access is real, but it's graded, gated, and logged.

There's also a quieter benefit. When the cost of asking a data question drops to near zero, people ask more questions — and the quality of their work goes up. When every question costs a two-day ticket, teams ration questions without realizing it. That rationing has a hidden cost nobody measures.

Feature summary

  • Direct SQL execution against the Creatio database (PostgreSQL or MSSQL)
  • Graded access control — Read-only / DML / DDL, assigned per user
  • Query blacklist — block dangerous patterns system-wide, regardless of role
  • Full audit log — every query logged with user, timestamp, result, execution time
  • Safe defaults — automatic row-limit injection on SELECTs, configurable timeouts
  • Dry-run mode — preview affected rows before running a DML statement
  • Dark / light themes, English and Ukrainian
  • Administration page for managing access rules, blacklist entries, and viewing logs
  • Installs as a standard Creatio package — self-contained, no external dependencies
  • Works on Creatio Cloud and on-premise

Current status

SQL Cor is currently in an open testing period. The build is stable and in active use. Over the testing period I'm focusing on:

  • Expanding the pre-defined blacklist categories
  • Refining the audit log export
  • A saved-query library for common admin tasks
  • Per-environment configuration profiles for agencies managing multiple clients

After the testing period, SQL Cor will be published for download and installation as a standard Creatio package.

Getting started

Documentation & installation guide: 👉 sql.opuscor.com — full feature reference, user guide, admin guide, and installation instructions

Source code (coming soon after testing period): 👉 github.com/OpusCor/SQL — public repository where the package will be available for download and installation

Live demo access: Currently in open testing. Demo credentials are shared via LinkedIn — visit linkedin.com/in/koliada-artem and check the beta announcement post for access to a live Creatio environment where you can run actual SQL Cor queries.

Feedback welcome

This is a tool built by someone who runs Creatio, for people who run Creatio. If you administer Creatio Cloud and have hit the no-database-access wall, I'd genuinely like to hear how you currently handle it — tickets to the vendor, dashboards for everything, exports to BI tools, or something else.

And if the access-control model, the audit approach, or any feature here sparks a question or a "you should also handle X" — that's exactly the kind of feedback that makes the testing period worth running. Reply here in the Community, and let's talk.
 

Like 3

Like

Share

2 comments

Hi it seems there is no install package on Github

Artem Evdokimenko,

Hi Artem, thanks for checking! You're right - the install package isn't on GitHub yet. That's intentional. SQL Cor is currently in an open testing period. The package will be published to GitHub after testing wraps up.

For now, the live demo is available - you can test the actual functionality without installing. See the "Getting started" section in the article above for the demo access link (via LinkedIn). Documentation is complete at sql.opuscor.com if you want to understand how it works before the release.

The GitHub repo is active with full documentation and status updates - github.com/OpusCor/SQL. You can follow the repo to get notified when the package is released.
If you have ideas for improvements or feedback on the design - reach out directly or reply here. Always open to how this can be better.

Show all comments
custom_components
Customization
Studio_Creatio
8.0

Starting with Creatio 8.3.3, Marketplace developers can add custom properties panels to custom Freedom UI components implemented using remote modules.

This makes Marketplace apps easier to configure for no-code creators. Instead of requiring users to edit page schema or ask developers to adjust component parameters, you can expose key settings directly in the Freedom UI Designer. When a user selects your custom component on the canvas, the properties panel opens on the right and lets them configure the component in the same familiar way as out-of-the-box Creatio components.

Check the details in the Academy guide and consider extending your app with a custom properties panel to make configuration easier for no-code creators.

Read the Academy guide 

If you encounter any questions or issues along the way, please do not hesitate to reach out to us at marketplace@creatio.com.

Like 6

Like

Share

1 comments

Finally, good job!

Show all comments
project management
syntech
Project_Management_Studio
New_in_Syntech

What’s New in Syntech Project Management Studio for Creatio 1.2: Templates, AI Agent, Hierarchy View, and To Do Workspace
 

Managing projects isn’t just about tracking deadlines anymore.

Teams today need to launch faster, reduce manual coordination, and keep execution visible across multiple workstreams - without adding more tools.

That’s why we released Syntech Project Management Studio for Creatio 1.2.

This update introduces new capabilities designed to reduce setup time, simplify project execution, and help teams move from planning to delivery with less manual effort.


New in Version 1.2

Compatible with: Creatio 8.3.1
 

Launch projects faster with Templates

Starting every project from scratch slows teams down.

Version 1.2 introduces reusable templates for:

  • Projects
  • Tasks
  • Milestones
  • Checklists

Teams can now standardize delivery processes and eliminate repetitive setup activities.

Whether you run implementation projects, internal initiatives, or customer delivery programs, templates help teams begin execution immediately while maintaining consistency across projects.

Business impact:

  • Faster project initiation
  • Standardized delivery processes
  • Reduced manual setup effort

Meet the Project Management AI Agent

One of the biggest additions in this release is the new AI-powered Project Management Agent.

Instead of navigating multiple views and manually updating data, teams can interact using natural language to support daily project operations.

The AI Agent helps users:

  • Create projects from templates
  • Track project progress
  • Detect execution risks
  • Analyze resource workload
  • Generate stakeholder reports
  • Accelerate project coordination

The goal isn’t to replace project managers.

It’s to reduce operational overhead so teams can spend more time delivering and less time maintaining project data.

Understand complex structures with Hierarchy List View

Projects rarely exist in isolation.

Large initiatives include phases, tasks, dependencies, and related workstreams.

The new Hierarchy List View gives teams a structured way to navigate project relationships and view nested data directly inside Creatio.

Users can expand and manage connected records without losing context.

Business impact:

  • Better project visibility
  • Easier navigation of complex structures
  • Improved cross-team alignment

Stay focused with the new To Do List View

Execution often breaks not because of planning - but because priorities become fragmented.

The new To Do List View provides a simplified workspace focused on immediate action.

Teams can quickly identify:

  • current assignments
  • pending activities
  • next priorities
  • execution progress

This creates a cleaner operational experience and helps reduce task switching.

Built for project execution inside Creatio

Syntech Project Management Studio continues to provide a unified environment for:

  • Kanban project management
  • Gantt planning
  • budget and cost control
  • workload monitoring
  • centralized project coordination
  • AI-assisted execution

With version 1.2, the platform becomes even more focused on helping teams execute faster while keeping planning, collaboration, and delivery connected inside Creatio.

Explore the latest update and see what changes when project management becomes part of your operational workspace.

Request a live demo → https://marketplace.creatio.com/app/syntech-project-management-studio-c…

Like 1

Like

Share

0 comments
Show all comments
Syntech_Absence
Absence
HRM
syntech
new release

🚀 Syntech Absence for Creatio - now available on the Marketplace. Free.

Hi everyone!

We're excited to share that Syntech Absence for Creatio is now available on the Creatio Marketplace - and it's completely free.

What it does

Syntech Absence centralizes employee absence management directly inside Creatio. Plan vacations, sick leaves, and time off, manage approvals, and ensure full visibility across teams - all without leaving the platform.

Key Features

See the bigger picture. Get a clear overview of all employee absences in one place. Filter by period, type, or employee - statuses, dates, and leave types at a glance.

One form. Every detail. Nothing gets lost. Every absence request in a single structured form. Track approval status, replacement, notes, and manager comments - nothing slips through the cracks.

Click. Approve. Done. Approve or reject requests in one click, right from the record or the notifications panel. No emails, no delays - fast, transparent decisions.

Get started: 
→ Install from Creatio Marketplace 
→ Compatible with Creatio 8.3.1
→ Free to install, free to use

Check it out → https://marketplace.creatio.com/app/syntech-absence-creatio 

We'd love to hear your feedback — share your experience in the comments!

Like 1

Like

Share

0 comments
Show all comments