Re: CVE-2023-51467-release18.12.11

2024-01-25 Thread Jacques Le Roux

It's not ready yet. We had to restart the vote. It should be available in a 
week or 2

Jacques

Le 25/01/2024 à 16:02, Sameer Alwosaby a écrit :

Where we can find 18.12.12 version please?

On Thu, 18 Jan 2024, 13:42 Jacques Le Roux, 
wrote:


Hi Vikas,

There is currently a vote for the 18.12.12 version. Better wait for this
new version

HTH

Jacques

Le 12/01/2024 à 08:21, Vikas Jaiswal a écrit :

Hello,
I don’t see the tag for release18.12.11 where the

vulnerability Active Exploitation of Apache OFBiz Zero-day Vulnerability -
NHS Digital  is fixed.

Regards,
Vikas

Sent from Mail  for

Windows


Re: CVE-2023-51467-release18.12.11

2024-01-25 Thread Sameer Alwosaby
Where we can find 18.12.12 version please?

On Thu, 18 Jan 2024, 13:42 Jacques Le Roux, 
wrote:

> Hi Vikas,
>
> There is currently a vote for the 18.12.12 version. Better wait for this
> new version
>
> HTH
>
> Jacques
>
> Le 12/01/2024 à 08:21, Vikas Jaiswal a écrit :
> > Hello,
> >I don’t see the tag for release18.12.11 where the
> vulnerability Active Exploitation of Apache OFBiz Zero-day Vulnerability -
> NHS Digital  is fixed.
> > Regards,
> > Vikas
> >
> > Sent from Mail  for
> Windows
> >


How to join two dynamic views?

2024-01-25 Thread Tomek

Hi,

I would like to create two dynamic views and link with together. It is 
possible? I try like this:


// Currently the following view can be replaced by entity
// but I assume that it will be more complex.
final DynamicViewEntity productFacilityView = new DynamicViewEntity();
productFacilityView.addMemberEntity("PF", "ProductFacility");
productFacilityView.addAliasAll("PF", "", new LinkedList<>());

final DynamicViewEntity view = new DynamicViewEntity();
view.addMemberEntity("PRD", "Product");
view.addMemberEntity("PF", productFacilityView.getEntityName());
view.addAliasAll("PRD", "", new LinkedList<>());

final ModelKeyMap modelKeyMap = new ModelKeyMap("productId", "productId");
final List maps = new LinkedList<>();
maps.add(modelKeyMap);
view.addViewLink("PRD", "PF", false, maps);
final List list = 
EntityQuery.use(delegator).from(view).queryList();


But it does not work.

Tomek