7.11
sales_enterprise

Hello Community!

I have a custom package with a section and need to use the 

BaseFiltersGenerateModule.OwnerFilter

I did add the dependence in the code and NUI dependence in the package, put the filter in the attributes like:

            "Owner": {

                "dataValueType": Terrasoft.DataValueType.LOOKUP,

                "lookupListConfig": {"filter": BaseFiltersGenerateModule.OwnerFilter}

            }

add the reference in the top like:

 

define("UsrMycustomPage", ['BaseFiltersGenerateModule'], function(BaseFiltersGenerateModule) {

 

but when debbug the code the variable is not reference.

 

I'm are missing something?

 

 

Like 0

Like

1 comments

Try to open the google chrome console (developer tools) and check the code of the page. It seems like everything should be fine. I've just done the same on my demo and it worked. 

 

Show all comments
7.11
sales_enterprise

Hello Community!

I have a custom web service created in a source code c#. How can call this method form a external c# application calling OData Services?

 

Regards,

 

Like 0

Like

3 comments

Dear Federico,

The integration with the web services will be available out of the box in the 7.12 release, which will be available very shortly. The documentation is already present on the academy. You can read more about it in the academy article below:

https://academy.bpmonline.com/documents/studio/7-12/integration-web-services

Warm regards,

Matt

Matt Watts,

I have a implementation just like the documentation. 

https://academy.bpmonline.com/documents/technic-sdk/7-12/how-create-own…;

And want to call the method to get the result from a visual studio project in c#. 

The web service is implemented inside of bpm'online.

Exist a way to call the method from my visual studio project? 

Dear Federico,

The web service you have created is not a part of OData protocol, but a separate controller for the GET or POST methods. Therefore, you need to call it by the means of C# for GET or POST requests:

https://stackoverflow.com/questions/4015324/how-to-make-http-post-web-request

However, please pay attention, that you need to authorize initially, so to send authorization cookies along with your request. You can also check ServiceHelper schema for the way the URL should look.

Regards, 

Anastasia

Show all comments
dashboard
infographics
7.11
sales_enterprise

Hello Community! 

I would like to show a % and not the count of records in a graphic. That is posible?

 

Like 0

Like

2 comments

Dear Federico Buffa,

There is no option to display percent sign in the dashboards in the current version of the system. We have the suggestion registered, though. Thus we’ll consider it to be added in one of our future releases.

With best regards,

Oliver Wingston

This is a great idea. Being able to do some coding would be great for the Dashboards to make own equations for columns

Show all comments
7.11
sales_enterprise

Hello Comunity!

How can get the result of imput in a autogenerated-page to use them in a script task?

 

Regards,

 

Like 0

Like

1 comments

Please set auto generated page output values into parameters of the business process and then use the parameters in the script task using the following syntax

get/set value in a business process script task

var parameter1 = Get<Guid>("Parameter1");

Set("Parameter2", parameter1.ToString());

var parameter2 = Get<string>("Parameter2");

get object of type UserConnection

var userConnection = Get<UserConnection>("UserConnection");

Show all comments
  • The process creates a task to call each customer who has not had any calls for the last 30 days.
Like 0

Like

1 comments

Hello,

The business case was taken from our certification program questions. We do not provide an assistance in building the processes that are used to assess the user level of the system understanding. 

Lisa

Show all comments
7.11
sales_enterprise

Hello Community!

I want to know if is posible remove filters from the section list. Example remove some filters in the accounts list?

 

Regards,

 

Like 0

Like

1 comments

Dear Federico,

You can do that in the following way:

1) Open the replacing object that is usually in the Custom package (in the configuration).

2) Open all settings of the object: http://prntscr.com/ioprlo

3) Then you can set the usage mode for the column is None.

!!! Please note that if you set such usage mode for the column, you won't be able to filter the records by it but also you won't be able to add this field to be displayed in the tile or list view in the section. 

Best regards,

Lily

 

Show all comments
ESQ
Client-side
joins
7.11
sales_enterprise

Hello, 

I am trying to do something like this:

Grab information to current page, based off of value in Lookup field.

Example would be, on the current page when the User (Contact) lookup is filled in, also grab the contacts Address (String value), Phone Number (String value), and Account name (Lookup value) and fill it in on the current page. 

I am fairly sure I need to run a client side ESQ, and a few joins to get the information I am looking for, but I have not been successful yet. 

Any help is appreciated!

Like 0

Like

1 comments

Please investigate how to work with ESQ

https://academy.bpmonline.com/documents/technic-sdk/7-11/use-entitysche…

Then check the article by the link below. It shows how to select aggregate data.

https://community.bpmonline.com/questions/esq-query-find-role

Then check the next article. There you'll find how to fill in a lookup value. 

https://community.bpmonline.com/questions/update-query-change-lookup-va…

If you want to set a text or integer value, you need to use the following syntax:

this.set("fieldname", value); in a replacing client module.

Please find more information about modules in the article by the link below.

https://academy.bpmonline.com/documents/technic-sdk/7-11/adding-calcula…

Show all comments
7.11
sales_enterprise

Hello Community! How can order a new custom container in the page?

I need put them on top of the page.

Any cod of example?

Like 0

Like

1 comments
dll
External Assemblies
script task
bpm. processes
7.11
sales_enterprise

Hi there! 

I'm looking an example and a step by step to call an own DLL from an element of BPM, probably "Task Script".

I tried to use something similar to what is proposed in the article: https://community.bpmonline.com/questions/integration-bpmonline-other-a…

but it did not work

Regards.

 

Like 0

Like

1 comments
7.11
sales_enterprise

Hello Community! Is posible make multiline a column with text multiline in a detail?

The idea is show the text with the break lines like the text control multiline.

I did try with CSS but the text is load without the breaklines.

Regards,

 

Like 0

Like

6 comments

Dear Federico,

Unfortunately, currently there is no option to make multi-line fields for the grid. They just don't work there yet. However, such opportunity may be added in one of our future releases. We have added this to our backlog.

Lisa

Thanks Lisa

Lisa any workarround to make that?

Dear Federico,

There is no workaround, I'm afraid. Kindly wait until the functionality is implemented into the out-of-the-box system version. 

Lisa

Lisa Brown,

Hello Lisa! this was implement in the new release 7.12?

Regards,

Dear Federico,

I'm afraid there is no ETA for the implementation yet, so the option will not appear in the nearest releases.

Lisa

Show all comments