Hello Community,

We have created a button in Leads_FormPage that opens AddTaskMiniPage

Code in Leads_FormPage that opens the AddTaskMiniPage

  {
        request: "usr.OpenTaskModalPageRequest",
        handler: async (request, next) => {
            const handlerChain = sdk.HandlerChainService.instance;
            await handlerChain.process({
                type: 'crt.OpenPageRequest',
                schemaName: 'AddTaskMiniPage',
                $context: request.$context,
                scopes: [...request.scopes]
            });
            return next?.handle(request);
        }
    }		,

 

Our end goal: We want that upon the Activity is created (Save button clicked in AddTaskMiniPage) the value of 'Start' field in AddTaskMiniPage, is copied to another Date field in the Leads_FormPage.

How can this be acheived?

Regards

Sasor

Like 0

Like

0 comments
Show all comments

I want to send email from Activities which is a standard function in creatio and I am not able to. It keeps showing a dialogue box and asks for start value which is not even present on the email tab and is required but it is already filled in. How do I resolve this issue and send an email from Activities? 

Like 0

Like

2 comments

Hello,
 

By default, the "StartDate" (Start) field should be populated with the default value (the current date). Please check if this default value is not being overridden in your packages.

Additionally, consider checking if the issue might be related to another field with the same name.
 

It’s also possible that you lack permissions for the column value, etc.
 

I recommend investigating the error in more detail within the Insert request in the network to see what parameters are being passed into the fields.
 

I hope this helps!

Thank you! I will try that. 

Show all comments

Hi Community,

 

We have this business requirement, where we need to add a "Quick Complete" button to the NextStep line. Similar to what this marketplace app have, but for FreedomUI.

 

https://marketplace.creatio.com/app/quick-complete-order-activities-creatio

 

We want to add the button next to the "Complete" one.

 

 

How can we achieve such business requirement? What do we need to change?

 

Thank you in advance.

 

Best Regards,

Pedro Pinheiro

Like 1

Like

1 comments

Hello,
 

Unfortunately, at the moment, the Message-composer element is not customizable from the inside using no-code/low-code tools.
 

Currently, we do not have a ready-made instruction for adding such a button. However, we have created a task for the responsible team to either create such an instruction or add no-code tools for adding custom buttons to the element.
 

Thank you for helping make our product better!

Show all comments

In Classic UI there was a section at the top of Account and Contact pages where new Activities, Calls, Emails, etc. could be created and automatically connected to the current object.  Where are these tools hidden in Freedom UI??

Like 1

Like

2 comments

Hello,
To enable this section in Freedom UI, go to the Page Designer and add the "Next Steps" component to the page.

Hi John, 

1) Yes these were removed by default in Freedom UI, not sure why, especially on contacts. You need to add the next steps manually. 

2) The automatic linking surprisingly does not exist yet : https://community.creatio.com/questions/bewildered 

Cheers, 

Damien

Show all comments

Hi. 

 

Can you help me to know if there is a way to add more options to this menu? 

I add new results in the lookup, but those options don't appear here. 

Like 0

Like

1 comments

You can add/modify those in the Activity results lookup. However, those values are tied to specific Activity categories. If you select a row in the Activity results lookup there's an icon you can click to define which Categories it is for - see https://share.customerfx.com/QwuoY8RK

Ryan

Show all comments

Hi Academy,

 

We would like to make one of the sections in the 'Connections' on the activity mini page mandatory when the category is "task".

Do you have any suggestions on how we can accomplish this?

 

Thank you in advance.

Like 1

Like

2 comments

Hello,

 

It depends on which column should be required here. One particular example: this method can be added to ActivityMiniPage:

save: function(callback, scope) {
				var opportunity = this.get("Opportunity");
				if (opportunity) {
					this.callParent(arguments);
				} else {
					Terrasoft.showInformation("Opportunity is required");
				}
			}

In this case saving of the mini page is not possible in case an opportunity is not connected to an activity and the information message will be shown on the page.

Hi Oleg,

 

Thank you, it works!

Show all comments

In classic UI we used to override/extend the ActivityDashboardItemViewModel in order to handle the "Complete" activity button click.

 

How can we do this using FreedomUI?

 

Thanks!

Like 3

Like

2 comments

Hello,

 

I'm afraid we don't have any possibility to contol this behavior using page handlers. But if anyone has an example to share please share it. I've registered a task for our R&D team to make it possible to control it using no-code tools.

Oleg Drobina,

it would be great to be able to intercept it via request handlers in code too. Overriding the behaviour is essential to a lot of our customisation for clients.

Show all comments

Hi All,

 

I have added a task in a business process with category "To-do" that requires input from certain users; but I would like to limit result options to just "Completed" for the user and remove other options such as information received, canceled & rescheduled. Can someone please help? Thank you

Like 0

Like

1 comments

Hello,

 

You can use the Activity Results lookup and choose what options you want to leave for the users.

Show all comments

Hi,

I have a problem with the new open Activity in an already created Lead.

I create a new lead, I add an activity on that lead and after that, I change the owner of the Lead. Unfortunately the activity owner changes too.

I want to know if it's a core functionality that changes the owner of the activity after I change the owner of it's Lead and if so, how can I deactivate it?

Thank you,

 

Rares

Like 0

Like

8 comments

Hi Ivan,

 

I think, this can be switched off with feature "ChangeEntityActivitiesAndProcessOwner"



Kind regards,

Vladimir

Vladimir Sokolov,

Hi! 

Thank you Vladimir for your response. 

I changed the state into 0 and nothing happens. I changed the code in "ActivityPageV2" and the I have the same result as before. 

Should I make other changes? 

 

Thank you, 

Rares

Could you please check if feature is switched off for every role and cache is cleared?



There is nothing to change in the Page, this functinality is implemented in the EventListener



And it would be nice if Creatio describes all implemented feature in the field 'Description'...



Kind regards,

Vladimir

Hi!

I have an older version of Creatio (8.0.0.5476) and the Feature Toggle doesn't  exists. Is there any possibility to change that from somewhere else?

 

Best regards, 

Rares 

Vladimir Sokolov,

Ivan Rares Marian,

You can find them in database and update:

Select * from "AdminUnitFeatureState" Where "FeatureId" = (Select "Id" from "Feature"

Where "Name" = 'ChangeEntityActivitiesAndProcessOwner')

 

Vladimir Sokolov,

 

Hi,

I checked and in the database the FeatureState is 1 for both of them.

What should I try now?

Best regards, 

Rares 

Update it with 0

Show all comments

Dear,

I would like to display on the Activity page detail, the modification history tab.

 

When i go into the section assistant, i can see an unregistered Detail.

 

 

Logging is enabled in the system settings change log .

 

But the history tab is not displayed in the activity detail page.

 

Does anybody have an idea to solve this issue please ?

Thank you,

Nicolas

Like 0

Like

1 comments

Hello,



There is no such OOB functionality.

You can track changes directly in the Change log section or check additional add-ons, for example:

https://marketplace.creatio.com/app/banza-change-log-creatio?_gl=1*13hf…;



 

Show all comments