Hi Everyone.

 

I have created a detail in my Order's sceen in Classic UI. I want to now enable Multi-select in that Detail. Similar to something like this:

https://customerfx.com/article/programmatically-enabling-multi-select-a…

 

Now, I am new to creatio. I just need to know where to put this code in the Source code? And Can I use this selection of multiple contacts to trigger a message to those that are selected only from that grid?

Like 1

Like

1 comments

Hello!

 

To implement it, you will need at least basic developer skills. In this case, we advise you to contact the manager about this issue.

Show all comments

Hi Creatio Team,

 

We are currently using Creatio V8.0 demo environment for internal training for Certification purposes.

1. On creating an Invoice using the option "Create Invoice based on Invoice", the system took the full amount specified on Order, instead of Advance Payment. Even when we changed the amount it reverted back to the full Order Amount.

2. After Invoice was created and status changed to Paid, Installment Plan does not show the Actual Amount Paid and the Invoice Number.

Would appreciate your feedback on these 2 queries

Thank you,

Regards

Nauzer Talati

 

Like 0

Like

1 comments

Hi!

 

1. There are 2 ways to create invoices. 

 

- When you use the [ New invoice based on this order ] action from the [ Actions ] menu.

This will open a page with an invoice created based on the order. The [ Amount ] value on the invoice page is calculated as the total value of the products, not the [ Payment amount ] of the order. 

 

- Add an invoice automatically based on any installment step of the order. To do this:



Go to the [ Orders ] section and open the required record with the [ Installment ] details filled in. Select the needed step with the “Payment“ type and click on loupe in the [ Invoice ] column. The value in the [ Amount ] field on the invoice page can be calculated in two ways:

1) If no products have been added in the corresponding step, the [ Amount] field on the invoice page will be filled with the corresponding value from the [ Estimated amount] field from the installment step.

2) If the items were not added in the corresponding step, the [ Amount] field on the invoice page will be calculated as the total cost of the selected products.



After adding an invoice, a link with the invoice number will be displayed in the detail list. Click the link to open the invoice page - https://i.imgur.com/28Oj7K4.png



Therefore, it is normal that the The [ Amount ] value on the invoice page is formed from the total amount of products, not the [ Payment amount ] (Advance Payment) of the order. 



2. If the invoice added automatically based on any installment step of the order, a link with the invoice number displayed in the detail list (https://i.imgur.com/28Oj7K4.png) and status of the invoice changed to Paid - [ Actual amount ] Paid will the column will be equal to [ Amount ] value on the invoice (https://i.imgur.com/CRDoIrZ.png).



We recommend that you read more about this here - https://academy.creatio.com/docs/user/sales_tools/short_sales_orders_an…



Best regards,

Anton

 

Show all comments

I want to know if I can sort value in a lookup field. Currently I understand that the fields are alphabetical order but I dont want it to display in that order. I want to change it. Is there any way to do it?

Like 0

Like

1 comments

If this is for a classic page, you can sort the lookup, but the below method only works for dropdown list lookups, not sure how to sort a lookup that pop open the dialog (although I assume that is possible):

// add an attribute with the same name as your lookup column
// specify "orders" for which column to sort by  
attributes: {
  "UsrTestLookup1": {
        lookupListConfig: {
            orders: [
                {
                    columnPath: "UsrSorting",
                    direction: Terrasoft.OrderDirection.DESC
                }
            ]
        }
    }
}

If this is a Freedom UI page, not sure, but I don't think you're able to do that yet.

Ryan

Show all comments

Hi Everyone,

 

I was thinking of a button within my screen. This button will be used to change tabs. There are different tabs (Steps) on my screen. And when a user clicks on this button it takes him to the next tab, which is his next step also. So instead of clicking on tabs themselves. Is it possible to do it through buttons? Thanks!

Like 0

Like

5 comments

Hello,

 

Please note that there is no way to achieve such logic using basic user tools at the moment. 

However, we registtered this idea for our R&D team for review and this functionality may appear in future releases.

Assuming this is a classic page, you can do the following, passing the Code for the tab you want to set as the active/selected tab:

// set tab with code "GeneralInfoTab" as selected tab
this.setActiveTab("GeneralInfoTab");

Full article here on this topic: https://customerfx.com/article/programmatically-selecting-showing-or-hi…

If this is a Freedom UI page, not sure.

Ryan

Being able to do so in Freedom UI is a must. Anybody have any way of doing so? There must be some way.

It looks like this can be achieved in Freedom UI by setting the attribute <Tab element code>_SelectedTabIndex_Profile to the index of the tab you want to display, so the first tab would be 0, the second 1 etc. To show the 2nd tab for me, the code was:

request.$context.Tabs_SelectedTabIndex_Profile=1

Worth noting that when I try to set this in the init event (crt.HandleViewModelInitRequest) it throws an error in the console (though it does change the tab, so not sure what actually breaks, if anything). I worked around this by putting the set of the value inside a JS timeout for 800ms, which is quick enough to not really be noticeable to users while preventing the error. I'm guessing it's some kind of data loading race condition or something, loading the data for a tab that then isn't being shown.

Show all comments

Hi Guys,

 

Is it possible to add Details in Freedom UI?

Like 0

Like

5 comments

Hello, 



 

Please refer to this article for detailed information:



https://academy.creatio.com/docs/user/nocode_platform/elements_reference/UI_designer



Best regards,

Orkhan 

Orkhan,

There is no information about having a detail in Freedom UI?

Hassan Tariq,

The Freedom UI component that is the equivalent to a Detail is the Expanded List.

Ryan

Hi!



I wonder, maybe there is step-by-step tutorial or video how to add new detail in Freedom UI?

I've tried several ways, none of them has given success to me



Kind regards,

Vladimir

This is the screen shot of the field details. The question is how to replicate Field Detail in Freedom UI... the table detail is the expanded list, but the field detaill?

Show all comments

Hi everyone,

 

I have just created a multi-select text field on Classic UI but I am trying to implement the same code within Freedom UI and it is not working. Any idea why, Does Freedom UI not support such feature? I am using the 3rd party for multi-select from Creatio Marketplace

Like 0

Like

3 comments
Best reply

Not yet supported in Freedom UI. 

Ryan

Not yet supported in Freedom UI. 

Ryan

The need for multiselect lookup is immense in our current project. Is there anyway to go about this or do we have to build our own component?

Shivani Lakshman,

In version 8.1 lookups now have the ability to do multi select.

Ryan

Show all comments

Hello community,



I have a use case where I need to hide the menu buttons in the "LeftPanelTopMenuModule" for all users except for System Administrators in FreedomUI.

I tried using these community posts, but I am unable to hide the buttons for other users.

https://community.creatio.com/questions/hide-run-process-button-side-panel-roles-1

and https://community.creatio.com/questions/hide-run-process-button-side-panel-roles-replacing-client-module







Could you please help me with this issue.



Thanks in advance 

Goparna Nasina

Like 0

Like

1 comments

Hello,

 

There is no ready instruction for this case in Freedom UI unforutnately and according to the code there is no property to override and it's not obvious how to add it:

I will ask our R&D team to make it possible to control the visibility of this panel based on the user role. Thank you for reporting this question to us and helping us in making the app better!

Show all comments

Hello community!

When we create a Business Process is there C#  code generated automatically that relates to that process ?

If so where and how can I find it ?

I need the answer for debugging purposes.sa

Thank you

Sasori

Like 0

Like

2 comments

Good day,

 

Thank you for your question.

If you are using some custom methods or functions in the business processes, your code should be displayed in the source code of the process:

 

Thank you.

Thank you very much for the response Artem!

I can not see the code that is generated behind the Low-Code elements like 'Add Data' for example ?

Where is that code located , or is it generated during runtime ?

Sasori

Show all comments

In Lead and Opportunity is a list names "Reason for closing" which is populated by some lookup (OpportunitycloseReason it seems).

I find no matching lookup with that name but a configuration object where the values are listed but not editable. How do I edit those values?

Thanks for your help

Like 0

Like

3 comments

I think it is these. 

Hello Christian, Keith, 

 

The needed lookup is called "Opportunity results". If for some reason it's not available in your system, you can create it manually based on "Reason won/lost" object.



Best regards,

Anastasiia

Anastasiia Zhuravel,

Thank you - I was not aware that the System uses data without an existing lookup and that I have to create those manually to edit the data.

Show all comments

Approvals by the user's manager are showing in the Approvals tab on the Opportunities section edit page, however I assume they should also show on the Communications panel / Notification centre / Approvals tab with the 'Show only my approvals' flag unticked.

 

Is there any reason why they might not show here?

 

Thanks,

Like 0

Like

6 comments

Hello,

 

basically, there might be only a few reasons for that.

One of the most common ones is the absence of the Time zone in the user profile.

Can you please check on that? If there is no time zone selected, you can fill it with the necessary one and check on the issue again.

 

Regards,

Gleb.

Thank you for your reply, much appreciated.

 

I have set the time zones for both the user and the user's manager, the approval is still not showing in the communications panel.  Are there any other reasons this might be the case? 

Gareth Osler,

 

then you will need to check all of the right for the object that the user has.

I suggest registering a case for the support team in order to help you resolving the issue as it may take much time and knowledge of the system.

Also, some of the settings may not be correct so it is better to check them as well.

 

Regards,

Gleb.

Gleb,

Thanks.

Gareth Osler,

Hello Gareth did you find any solution ?

Anas Znibi,

 

Hey Anas, this was a long time ago, I cannot remember, apols.

Show all comments