Время создания
Filters

Hi,



I am seeing lots of advancements in Creatio nocode but also in the evolution of clio & clio explorer with visual studio code . There are still cases where either some small things need to be developped and Creatio is still a sensitive tool that needs to be debugged also by no code creators.



Anybody else would love to have more up-to-date official e-learning videos, guided learning, corporate training on how to best develop on Creatio using best practices, how to make the best use of clio & clio explorer ?



Kind regards,



Damien

4 comments

Hello,



Perhaps these links will be useful to you:

https://www.youtube.com/watch?v=Qy7BsGrxbB0

https://github.com/Advance-Technologies-Foundation/clio



Best regards,

Malika

Hi Malika,

Thank you for the links, it's a start. But a more structured & up-to-date advanced training/documentation/recommendation are needed.



The video is a good example, but it relates to Creatio from 3 years ago. Since then Creatio has evolved a lot (with different backend behavior), Clio also and Clio explorer also.



Official structured training/tutorial tracks from Creatio would be more than welcome and necessary, rather than having to dig through academy / community / github in an unstructured way.



Cheers,

Damien



P.S. : Advance-Technologies-Foundation: is it Creatio or 3rd party ?

Damien Collot,

 

Excellent idea indeed!

 

I have just discussed internally with my colleagues that while a lot of information is available on the academy, the community, and the GitHub readme/documentation of clio, we miss a training that clearly points out how this all works together and was meant to be used.

Ultimately, the software vendor should provide best practices and guidelines!

 

Cheers,

Robert

Damien Collot,

Thank you for providing this great suggestion. We have already forwarded this idea to the responsible team for Clio, for consideration and creation of additional newer Clio training videos and tutorials.

 

Show all comments

Clio version 6.1.0.3 allows managing features on the Creatio instances via a manifest file.

Add section features to the manifest file

environment:
  url: ************************
  authappurl: *****************
 
features:
  - code: "FEATURE CODE 1"
    value: false
    users_values:
      "User1": true
      "Role 1": true
      "User2": false
  - code: "FEATURE CODE 2"
    value: false
 
apps:
  # list of installed apps
 
app_hubs:
 # connected app hubs

Allowed to set a default value for all users or specify it for each user/role,

To apply manifest to your environment, use the following command.

clio apply-manifest C:\my-configuration.yam -l user-p pwd

P.S Managing SysSettings and WebServiveUrls via manifest coming soon

0 comments
Show all comments
Idea
Discussion

Hello everyone! We are glad to share with you that Clio released version 6.1.0.1, which started to control the change management process for Creatio users.

Now you can store the configuration for Creatio environment in the yaml file

environment:
  url: https://myapp.creatio.com
 
apps:
  - name: CrtCustomer360
    version: "1.0.1"
    apphub: MyAppHub
  - name: CrtCaseManagment
    version: "1.0.2"
    apphub: MyAppHub
  - name: MrktAppollo
    version: "1.0.2"
 
app_hubs:
  - name: MyAppHub
    path: "//file.shareserver/MyAppHub"

This configuration file describes the desired states for the Creatio environment. Clio will compare the current and desired states and apply necessary changes (install/update applications from local AppHub, remove applications). You can register your several AppHubs in one configuration file.

To apply changes to the environment, use the following command

clio apply-manifest C:\my-configuration.yam -l user-p pwd

This approach implements best practices for managing and change logging.

In next releases will be added support for configuration:

  - sestem settings

  - feature states

  - web service base urls

  - packages

P.S:  Clio provides commands for versioning and publishing your composable applications to AppHub.

0 comments
Show all comments

Clio release version 6.0.2.51 provides new features for setting versions to Composable applications in CI\CD pipelines. 

Feature compatible with clio workspace code structure:

clio set-app-version [WORKSPACE_FOLDER_NAME] -v 1.0.1

Also, this command can be used for the single package with application description in cases when not used clio workspace structure

clio set-app-version -f [PACKAGE_FOLDER_PATH] -v 1.0.2

P.S: This feature and publish-app command fully cover all cases for versioning artifacts of composable applications. 

0 comments
Show all comments

Hi, all,



     I found Creatio can generate word template and send it as attachment via email. 

But I can't find any solution if the user want to have an excel report. Can you put them in the future solution?



Jeffrey.

1 comments

Hello!

 

The Excel report cannot be selected as a generated report in the File Processing element. This option is only available for reports of basic functionality.

Regarding Excel reports, you can find information about their integrated options for the core product on the Marketplace page: https://marketplace.creatio.com/app/excel-reports-builder-creatio

 

Currently, you can use "object attachments" for such file types and add a table form to generate a report Information about:

https://academy.creatio.com/docs/user/bpm_tools/process_elements_refere…

https://academy.creatio.com/docs/8.x/no-code-customization/8.0/customiz…

Show all comments