Skip to content

Commit

Permalink
Add support PG15
Browse files Browse the repository at this point in the history
  • Loading branch information
yamelsenih committed Jul 16, 2024
1 parent 2d3e36f commit 1093479
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/spin/eca46/setup/CreateDKron.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public String doIt(Properties context, String transactionName) {
private void createRegistration(Properties context, String transactionName) {
MADAppRegistration registration = new Query(context, MADAppRegistration.Table_Name, "EXISTS(SELECT 1 FROM AD_AppSupport s "
+ "WHERE s.AD_AppSupport_ID = AD_AppRegistration.AD_AppSupport_ID "
+ "AND s.ApplicationType = ?"
+ "AND s.IsActive = 'Y'"
+ "AND s.ApplicationType = ? "
+ "AND s.IsActive = 'Y' "
+ "AND s.Classname = ?)", transactionName)
.setParameters(APPLICATION_TYPE, DKron.class.getName())
.setClient_ID()
Expand Down

0 comments on commit 1093479

Please sign in to comment.