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
7.11
sales_enterprise

Hello Community!

In a script task need get from the EntitySchemaQuery the column name and the value (string) of them.

Any example?

 

Like 0

Like

2 comments

You could create new ESQ instance, then pull columns with the addcolumn method, then do something with that date. 

 

Example:

//Create esq instance 

var esq = new EntitySchemaQuery(UserConnection.EntitySchemaManager, "Account");

//Add column method returns object, and save a reference to column object in var nameColumn

var nameColumn = esq.AddColumn("Name");

//add a filter or more columns . . .

//when youre finished setting up the columns and filter you can run the "GetEntityCollection" method to grab data

var entityCollection = esq.GetEntityCollection(UserConnection);

//do something with data 

return true;

 

What exactly are you trying to do?

Please find the answer in the post by the link below

https://community.bpmonline.com/questions/get-title-columns-esq

Show all comments
7.11
sales_enterprise



Hello community!

I need your help.

I'm using a BaseFieldDetail like the sample in the academy:

https://academy.bpmonline.com/documents/technic-sdk/7-11/creating-custom-detail-fields

the problem is that my mastercolum is not the Id of the record, is just a column with a related contact.

i need reload/refresh the detail when the contact change for another. I did try with loadDetail() because the reloadDetail is obsolete but not refresh the data.



Any Idea?

 

Like 0

Like

2 comments

Solved with this.updateDetail({detail: "DetailName"});

Frederico, thanks for the update!. I was facing the same issue and it solved my problem. Regards.

Show all comments

Hello Community!

I need put the same style of mobile and email to a custom section. 

When can find the style to implement in a custom CSS.

Regards,

 

Like 0

Like

1 comments

Dear Federico,

The implementation of the custom style is discussed in the thread below:

https://community.bpmonline.com/questions/how-add-custom-style-control-page-based-condition

You can inspect the elements using the developer tools and check which styles you want to use.

Best regards,

Matt

Show all comments
style
control
align
7.11
sales_enterprise

Hello community!!

I need apply a style to the left container but don't know who.

The idea is have the label and control align to left on all controls of the container.

Any style to apply this??

Like 0

Like

3 comments

Please find the answer on how to add a custom style to a page in the article by the link below.

https://community.bpmonline.com/questions/how-add-custom-style-control-…

Thanks Eugene Podkovka, exist a sample on the system to inherit?

It's not possible to inherit styles.

Show all comments
7.11
sales_enterprise

Hello Community!

I need know how detect when a lookup is change get the old value and new value.

Any have a example?

Regards,

 

Like 0

Like

1 comments

Dear Federico,

You can set up the Change Log for the object the lookup is based on. This way you'll be able to track all the modifications including old/new values.

Lisa

Show all comments