Hi community!

How are you?

I just installed the module "change log" of marketplace, configure the permissions for "System administrators" to the operations,

configure the fields of the section of which I want to register the changes,

but I do not know how to see the tab "History of Changes" on the page of Cases. Surely I'm missing some step. Could you help me?

King Regards,

Ezequiel

Like 0

Like

2 comments

Hi Community!


 

It was language problem. Configuring the user's language in English and entering again works. Any suggestions on what to modify so that it works in another language? In this case Spanish.

King Regards,

Ezequiel

Dear Ezequiel,

The procedure of localizing the applications differ depending on whether you are going to move the customization to another application or not. Please note that the necessary condition to be able to translate the application is activating the language in the system beforehand. 



If you are going to use the translation on the specific instance only, you need to open the Translations section and translate the necessary lines one-by-one. You can find the necessary lines by the date the package was installed. Once all the necessary lines are translated, you need to apply the translation. 

Lisa

Show all comments

Hello,

I made an approval process and I  set the approver which role, after I set  functionnal  role .

Is it possible to do that if someone belong to the list of user in my functionnal role, he does not receive the approval notification if he is the one who is calling the process?

Thank you.

Like 0

Like

2 comments

Hello,

According to the system logic every user who belongs to the role that you choose as Approver will receive a notification. I have registered your request for our R&D team to include the ability not to receive the notification if you belong to the group of approvers. In case you use the Approval process, it is presupposed to be approved by some manager who has a higher rank than you, for example. If you want to send the approval to the same group and not receive the notification, then you need to think of the functional or organizational roles to be created in such way that you will be excluded from it. 

Best regards,

Lily

Hello,

Thank you for your answer.

 

Show all comments

Hi Bpm'online Community,

I'm new to bpm'online and I'm trying to validate an object on the Saving - Validate event. I added the event and I'm able to write the logic that throws an exception if the validation fails. Now, I want to get the exception message from the LocalizableStrings structure on the event.

I added a new localizable string schema but I cannot how to get it from the script.

This is the code of the script:

var cfrStageId = Entity.GetTypedColumnValue("UsrCfrStageId");

var errorMessage = string.Empty;

if (!cfrStageId.ToString().Equals(UsrCfrConstants.Initiation, StringComparison.OrdinalIgnoreCase)) {

 var numberOfBeneficiaries = Entity.GetTypedColumnValue("UsrNumberOfBeneficiaries");

 if (numberOfBeneficiaries < 1) {

  //errorMessage = new LocalizableString(Storage, Schema.GetResourceManagerName(),

          //                          "LocalizableStrings.NumberOfBeneficiariesNotPositive.Value").ToString();

        errorMessage = "The number of beneficiaries must be > 0";

  throw new Exception(errorMessage);

 }

}

return true;

The commented out code is what is not working. I also tried "UsrCfrEventsProcess" as the resource manager name but it did not work either.

 

I'd appreciated any help you can provide.

 

Thanks,

Jose

Like 0

Like

1 comments

I would say that you need to build the localizable string in the following way:

string title = UserConnection.GetLocalizableString("YourSchemaName", "LocalizableStringName");

or if it's the same schema.

string title = UserConnection.GetLocalizableString(Schema.GetResourceManagerName(), "LocalizableStringName");

However, you need to test this. 

Please deploy the application locally and debug it. This way you'll see how to resolve the issue. 

Show all comments

Hi Community!

¿How could I change the default value that appears in the column list when I enter the lookup of a custom entity? I want that initially when I open the lookup, I can filter by a field, without changing the display value in the system

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

In this case, I want the default value to search not be "Nombre y Apellidos" but, another field.

King Regards,

 

Ezequiel

 

 

 

Like 0

Like

4 comments

Dear Ezequiel,

The lookup field values are sorted based on the column that was set to be the primary column in the Configuration. You may go to the lookup in the Configuration and change the primary column to the one you'd like to use and so, the values would be sorted based on it.

Alternatively, you may reach your aim with the help of the development. In this case you need to replace the ‘LookupPageViewModelGenerator’. The column for the search is configured in it in ‘GenerateViewModel’.

Lisa

Dear Lisa,

Thanks you for your response!

I replaced the "LookupPageViewModelGenerator". Copy all text y edit "generateViewModel" function. Code in the image below

 

in this function I can not use this.callParent (arguments) because? In red marked the customizations that i made to the function.

This in principe works, but for all system lookups the lookup title starts with "undefined". How do I solve that problem?

King Regards,

Ezequiel

Dear Ezequiel,

You need to re-add "CaptionLookupPage" localizable string and re-save the schema. For the changes to be displayed, you also would need to empty the cache and log out and back in.

Lisa

 

Dear Lisa,

I re-added "CaptionLookupPage" and it worked!

Thanks you!

Regards!

Ezequiel

Show all comments

Hi Community!

How are you?

I hope you can help me!

When I mouse over the name of a custom entity,

I want it to open a popup similar to the one opened when I mouse over the name of a contact.

 

I want to show information of several fields in that popup

How could I do it?

King Regards,

 

Ezequiel

 

 

Like 0

Like

2 comments

Dear Ezequiel,

This functionality is implemented via mini cards. Please follow this link tot check what it is used for: https://academy.bpmonline.com/documents/technic-sdk/7-12/mini-page

If you want to add it to your custom section, please check the articles in our development guide: https://academy.bpmonline.com/documents/technic-sdk/7-12/how-create-mini-page

Best regards,

Lily

Dear Lily!

Thanks for you response!

It was very helpful

Regards,

Ezequiel!

Show all comments

Hi community!

How are you?

How can I replicate the same functionality that exists under the tab "Files and Links" of "Cases" in another custom entity?

I created the object detail "UpriArchivosIntervenciones" that inherits from "Files (Base)",  and I add ed a field called "UpriIntervención".



But after creating the detail using the wizard and adding it in "Intervenciones" entity, the detail configuration is not similar to the case. I observed that in CasePage, the schemaDetail for "Files and Links"" es FileDetailV2

King Regards,

 

Ezequiel

Like 0

Like

1 comments

Dear Ezequiel,

The addition of the attachments detail is described in the article below:

https://academy.bpmonline.com/documents/technic-sdk/7-12/adding-attachments-detail

The Notes part is a rich text field, however, you can simply check how it is implemented on a page and replicate it.

Warm regards,

Matt

Show all comments

Hello,

Together with a team from my company I am using BPMOnline trial version to evaluate its possibilities. Sadly, anything we introduce to new packages (including Custom) disappears after a few hours without a trace, thus rendering our efforts futile. No, we did not delete packages manually as technical support suggested.

Is it an issue connected to trial version? How can we overcome this issue?

Thank you,

Michał Świnoga

Like 0

Like

1 comments

Dear Michał Świnoga,

Bpm'online has no functionality for deleting the packages automatically, it can only be dome manually. Unfortunately, there is no logging for the configuration in order to track the actual deleting.

You can deploy the application locally in order to avoid having such situation. Feel free to send an email to support@bpmonline.com for receiving the files needed for on-site application.

With best regardsm

Oliver Wingston

Show all comments

Hello,

I have created a trial account for bpmonline studio and wanted to explore bpmonline.

When I create a new section or save an existing section (without modification) the browser displays a busy indicator with the text "Saving client schemas". The page then hangs forever.

The behavior is the same with Internet Explorer and Chrome 64.0.3282.119.

Is this a known problem?

Thanks & best regards

Andreas

 

Like 0

Like

4 comments

Dear Andreas,

During saving the compilation and publishing are performed, so it always take some amount of time to be completed. 

The way the section wizard saves the record will be changed in 7.12. The compilation will no longer be required so you will be able to save changes in 1 minute or less.

Once publishing/compiling starts it will either stop after certain period of time and will display the time-out message, or will be ended only when completed successfully.

With best regards,

Oliver

Oliver,

Dear Oliver,

thanks for your reply. However long I wait, the request neither completes nor times out. This seems like a showstopper for evaluating bpmonline studio.

I have asked bpmonline for a phone callback, maybe they can help. That's really sad, because the product looks quite interesting.

Best regards

Andreas

Andreas Awenius, 

You can always send an email describing the issue to support@bpmonline.com in order to receive the solution for the issue.

With best regards,

Oliver Wingston

Oliver,

thanks, I have done so. I wasn't aware that the support can also be used during the trial.

Best regards,

Andreas

Show all comments

Hi community!

How are you?

I hope you can help me!

How could you add a record totalizer in a detail?

The following image shows what I need

Something similar to what there is at the section level...

King Regards!

 

Ezequiel

Like 0

Like

2 comments

Dear Ezequiel,

The following functionality cannot be achieved with the help of the user tools. In case you want to develop this feature you can inspect it in the section for the example of the implementation.

Moreover, in case you do not want to implement such functionality yourself you can contact your account manager in order to get some help.

Warm regards,

Matt

Hi Ezequiel, you can install from marketplace (there're  lot of free usefull app/templates) the app to do waht you need, please see https://marketplace.bpmonline.com/app/detail-summaries-bpmonline

Enjoy It,

Julio Falcón

Show all comments

Hi everyone!

How are you? I hope you can help me!

I want hide the "Search Contact" option of the Command Line

How can I do this? I attached image

Regards!

Like 0

Like

3 comments

It's possible only by c# development. If you need to avoid users from seeing contacts, you can set that up in the "object permissions" section.

Hi Eugene!

how are you?

Thanks for your answer!

How can i do this by c# development?

I can not restrict access because internally by code I use contact data. If I restrict access, I could not work with that data

King Regards

 

Ezequiel

The functionalify is in the getDefaultCList method in the CommandLineModule schema. It's a base schema and you'll not be able to override it in a way that we use for overriding pages and sections. Please investigate the base documentation of Ext.js and find a way on how to change the method. https://www.sencha.com/products/extjs/

Show all comments