Skip to content
Snippets Groups Projects
Commit 63e9db21 authored by Martin Groppe's avatar Martin Groppe
Browse files

merged 1077540_redirect_webservice into dev_xrm_marketing

parents 26f69235 a7fc442d
No related branches found
No related tags found
No related merge requests found
Showing
with 350 additions and 8 deletions
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
<changeSet author="m.groppe" id="96816f54-3067-470d-b698-dc7ad7685d84"> <changeSet author="m.groppe" id="96816f54-3067-470d-b698-dc7ad7685d84">
<addColumn tableName="BULKMAIL"> <addColumn tableName="BULKMAIL">
<column name="DATE_TO_SEND" type="DATETIME"/> <column name="DATE_TO_SEND" type="DATETIME"/>
<column name="INTEREST_ID" type="char(36)"/>
</addColumn> </addColumn>
<renameColumn tableName="BULKMAIL" oldColumnName="SENDER" newColumnName="SENDER_EMAIL_ADDRESS "/> <renameColumn tableName="BULKMAIL" oldColumnName="SENDER" newColumnName="SENDER_EMAIL_ADDRESS "/>
</changeSet> </changeSet>
......
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<changeSet author="m.groppe" id="15e13453-42c1-413e-bc0d-611a23486890">
<insert tableName="AB_KEYWORD_CATEGORY">
<column name="AB_KEYWORD_CATEGORYID" value="d37c3935-c029-44d5-b19d-af7c3a2a21dd"/>
<column name="NAME" value="DeviceType"/>
<column name="SORTINGBY" valueNumeric="0"/>
<column name="SORTINGDIRECTION" value="ASC"/>
</insert>
<insert tableName="AB_KEYWORD_ENTRY">
<column name="AB_KEYWORD_ENTRYID" value="54b767c8-5347-4e1d-95db-96f6d40f9fb7"/>
<column name="KEYID" value="console"/>
<column name="TITLE" value="Console"/>
<column name="CONTAINER" value="DeviceType"/>
<column name="AB_KEYWORD_CATEGORY_ID" value="d37c3935-c029-44d5-b19d-af7c3a2a21dd"/>
<column name="SORTING" valueNumeric="0"/>
<column name="ISACTIVE" valueNumeric="1"/>
<column name="ISESSENTIAL" valueNumeric="1"/>
</insert>
<insert tableName="AB_KEYWORD_ENTRY">
<column name="AB_KEYWORD_ENTRYID" value="de0f5a77-bbb4-4109-bf93-3c0807239980"/>
<column name="KEYID" value="mobile"/>
<column name="TITLE" value="Mobile"/>
<column name="CONTAINER" value="DeviceType"/>
<column name="AB_KEYWORD_CATEGORY_ID" value="d37c3935-c029-44d5-b19d-af7c3a2a21dd"/>
<column name="SORTING" valueNumeric="1"/>
<column name="ISACTIVE" valueNumeric="1"/>
<column name="ISESSENTIAL" valueNumeric="1"/>
</insert>
<insert tableName="AB_KEYWORD_ENTRY">
<column name="AB_KEYWORD_ENTRYID" value="806143e9-be70-47ff-ba37-5bc64fa88f3b"/>
<column name="KEYID" value="tablet"/>
<column name="TITLE" value="Tablet"/>
<column name="CONTAINER" value="DeviceType"/>
<column name="AB_KEYWORD_CATEGORY_ID" value="d37c3935-c029-44d5-b19d-af7c3a2a21dd"/>
<column name="SORTING" valueNumeric="2"/>
<column name="ISACTIVE" valueNumeric="1"/>
<column name="ISESSENTIAL" valueNumeric="1"/>
</insert>
<insert tableName="AB_KEYWORD_ENTRY">
<column name="AB_KEYWORD_ENTRYID" value="689e5978-ddb2-46f8-98a0-97ec0a95ee6f"/>
<column name="KEYID" value="smarttv"/>
<column name="TITLE" value="Smart TV"/>
<column name="CONTAINER" value="DeviceType"/>
<column name="AB_KEYWORD_CATEGORY_ID" value="d37c3935-c029-44d5-b19d-af7c3a2a21dd"/>
<column name="SORTING" valueNumeric="3"/>
<column name="ISACTIVE" valueNumeric="1"/>
<column name="ISESSENTIAL" valueNumeric="1"/>
</insert>
<insert tableName="AB_KEYWORD_ENTRY">
<column name="AB_KEYWORD_ENTRYID" value="fba7888e-a1a6-45f4-8389-e5c4b98ca13b"/>
<column name="KEYID" value="desktop"/>
<column name="TITLE" value="Desktop"/>
<column name="CONTAINER" value="DeviceType"/>
<column name="AB_KEYWORD_CATEGORY_ID" value="d37c3935-c029-44d5-b19d-af7c3a2a21dd"/>
<column name="SORTING" valueNumeric="4"/>
<column name="ISACTIVE" valueNumeric="1"/>
<column name="ISESSENTIAL" valueNumeric="1"/>
</insert>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<include relativeToChangelogFile="true" file="AddBulkmailStatus"/> <include relativeToChangelogFile="true" file="AddBulkmailStatus"/>
<include relativeToChangelogFile="true" file="createMailLog.xml"/> <include relativeToChangelogFile="true" file="createMailLog.xml"/>
<include relativeToChangelogFile="true" file="createMailRun.xml"/> <include relativeToChangelogFile="true" file="createMailRun.xml"/>
<include relativeToChangelogFile="true" file="createMailOpener.xml"/>
<include relativeToChangelogFile="true" file="createBulkMailTestRecipient.xml"/> <include relativeToChangelogFile="true" file="createBulkMailTestRecipient.xml"/>
<include relativeToChangelogFile="true" file="AlterBulkmailRecipient.xml"/> <include relativeToChangelogFile="true" file="AlterBulkmailRecipient.xml"/>
<<include relativeToChangelogFile="true" file="addDeviceTypeKeyword.xml"/>
</databaseChangeLog> </databaseChangeLog>
\ No newline at end of file
<?xml version="1.1" encoding="UTF-8" standalone="no"?> <?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd"> <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="m.groppe" id="3323c8a8-7a20-4836-b7b1-36b4ec2caf3d"> <changeSet author="m.groppe" id="e60dc52b-87dc-4f73-80e7-adc5b46d6935">
<createTable tableName="mail_opener"> <createTable tableName="LINK_CLICK">
<column name="MAIL_OPENERID" type="CHAR(36)"> <column name="LINK_CLICKID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/> <constraints nullable="false" primaryKey="true"/>
</column> </column>
<column name="IP_ADDRESS" type="VARCHAR(50)"/> <column name="IP_ADDRESS" type="VARCHAR(50)"/>
<column name="LINK_ID" type="CHAR(36)"/>
<column name="MAIL_LOG_ID" type="CHAR(36)"/> <column name="MAIL_LOG_ID" type="CHAR(36)"/>
<column defaultValueComputed="NULL" name="DATE_OPENED" type="datetime"/> <column name="DEVICE_TYPE" type="VARCHAR(255)"/>
<column name="OPERATING_SYSTEM" type="VARCHAR(255)"/>
<column name="BROWSER" type="VARCHAR(255)"/>
<column name="DATE_OPENED" type="datetime"/>
</createTable> </createTable>
<createIndex tableName="LINK_CLICK" indexName="IDX_LINK_CLICK_MAIL_LOG_ID">
<column name="MAIL_LOG_ID"/>
</createIndex>
</changeSet> </changeSet>
</databaseChangeLog> </databaseChangeLog>
\ No newline at end of file
<?xml version="1.1" encoding="UTF-8" standalone="no"?> <?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd"> <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="m.groppe" id="9d8f3580-92c5-423e-b709-09383969ccf0"> <changeSet author="m.groppe" id="9d8f3580-92c5-423e-b709-09383969ccf0">
<createTable tableName="mail_log"> <createTable tableName="MAIL_LOG">
<column name="MAIL_LOGID" type="CHAR(36)"> <column name="MAIL_LOGID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/> <constraints nullable="false" primaryKey="true"/>
</column> </column>
...@@ -14,7 +14,13 @@ ...@@ -14,7 +14,13 @@
<column name="RECIPIENT_EMAIL" type="VARCHAR(255)"/> <column name="RECIPIENT_EMAIL" type="VARCHAR(255)"/>
<column name="MAILING_SUBJECT" type="VARCHAR(100)"/> <column name="MAILING_SUBJECT" type="VARCHAR(100)"/>
<column name="DATE_SEND" type ="DATETIME"/> <column name="DATE_SEND" type ="DATETIME"/>
<column name="FILEPATH" type="VARCHAR(255)"/> <column name="OPENER_LINK_CLICK_ID" type="char(36)"/>
</createTable> </createTable>
<createIndex tableName="MAIL_LOG" indexName="IDX_MAIL_LOG_MAIL_RUN_ID">
<column name="MAIL_RUN_ID"/>
</createIndex>
<createIndex tableName="MAIL_LOG" indexName="IDX_MAIL_LOG_OPENER_LINK_CLICK_ID">
<column name="OPENER_LINK_CLICK_ID"/>
</createIndex>
</changeSet> </changeSet>
</databaseChangeLog> </databaseChangeLog>
\ No newline at end of file
<?xml version="1.1" encoding="UTF-8" standalone="no"?> <?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd"> <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="m.groppe" id="6c910d60-43b1-400b-8e31-e3a1a93155e6"> <changeSet author="m.groppe" id="6c910d60-43b1-400b-8e31-e3a1a93155e6">
<createTable tableName="mail_run"> <createTable tableName="MAIL_RUN">
<column name="MAIL_RUNID" type="CHAR(36)"> <column name="MAIL_RUNID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/> <constraints nullable="false" primaryKey="true"/>
</column> </column>
...@@ -13,5 +13,8 @@ ...@@ -13,5 +13,8 @@
<column defaultValueComputed="NULL" name="DATE_RUN_START" type="datetime"/> <column defaultValueComputed="NULL" name="DATE_RUN_START" type="datetime"/>
<column defaultValueComputed="NULL" name="DATE_RUN_FINISHED" type="datetime"/> <column defaultValueComputed="NULL" name="DATE_RUN_FINISHED" type="datetime"/>
</createTable> </createTable>
<createIndex tableName="LINK_CLICK" indexName="IDX_MAIL_RUN_INTEREST_ID">
<column name="INTEREST_ID"/>
</createIndex>
</changeSet> </changeSet>
</databaseChangeLog> </databaseChangeLog>
\ No newline at end of file
...@@ -15,6 +15,8 @@ ...@@ -15,6 +15,8 @@
<column name="DATE_NEW" type="DATETIME"/> <column name="DATE_NEW" type="DATETIME"/>
<column name="USER_EDIT" type="NVARCHAR(50)"/> <column name="USER_EDIT" type="NVARCHAR(50)"/>
<column name="DATE_EDIT" type="DATETIME"/> <column name="DATE_EDIT" type="DATETIME"/>
<column name="REDIRECT" type="SMALLINT"/>
<column name="WORKFLOWPROCESSDEFINITION_KEY" type="VARCHAR(255)"/>
</createTable> </createTable>
</changeSet> </changeSet>
</databaseChangeLog> </databaseChangeLog>
\ No newline at end of file
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<include relativeToChangelogFile="true" file="Bulkmail/changelog.xml"/>
<include relativeToChangelogFile="true" file="LinkManagement/changelog.xml"/>
</databaseChangeLog>
\ No newline at end of file
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
<include relativeToChangelogFile="true" file="basic/2021.0.0/changelog.xml"/> <include relativeToChangelogFile="true" file="basic/2021.0.0/changelog.xml"/>
<include relativeToChangelogFile="true" file="basic/2021.0.1/changelog.xml"/> <include relativeToChangelogFile="true" file="basic/2021.0.1/changelog.xml"/>
<include relativeToChangelogFile="true" file="basic/2021.0.2/changelog.xml"/> <include relativeToChangelogFile="true" file="basic/2021.0.2/changelog.xml"/>
<include relativeToChangelogFile="true" file="basic/2021.0.3/changelog.xml"/>
<!--enable this only when you definetly want to overwrite the existing data with demo records:--> <!--enable this only when you definetly want to overwrite the existing data with demo records:-->
<include relativeToChangelogFile="true" file="basic/_demoData/changelog.xml" context="example"/> <include relativeToChangelogFile="true" file="basic/_demoData/changelog.xml" context="example"/>
......
...@@ -18665,6 +18665,34 @@ ...@@ -18665,6 +18665,34 @@
<title></title> <title></title>
<description></description> <description></description>
</entityFieldDb> </entityFieldDb>
<entityFieldDb>
<name>WORKFLOWPROCESSDEFINITION_KEY</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="12" />
<size v="255" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
<entityFieldDb>
<name>REDIRECT</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="5" />
<size v="5" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
</entityFields> </entityFields>
</entityDb> </entityDb>
<entityDb> <entityDb>
...@@ -18859,6 +18887,48 @@ ...@@ -18859,6 +18887,48 @@
<title></title> <title></title>
<description></description> <description></description>
</entityFieldDb> </entityFieldDb>
<entityFieldDb>
<name>BROWSER</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="12" />
<size v="255" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
<entityFieldDb>
<name>DEVICE_TYPE</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="12" />
<size v="255" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
<entityFieldDb>
<name>OPERATING_SYSTEM</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="12" />
<size v="255" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
</entityFields> </entityFields>
</entityDb> </entityDb>
<entityDb> <entityDb>
...@@ -19729,6 +19799,138 @@ ...@@ -19729,6 +19799,138 @@
</entityFieldDb> </entityFieldDb>
</entityFields> </entityFields>
</entityDb> </entityDb>
<entityDb>
<name>LINK_CLICK</name>
<dbName></dbName>
<idColumn>LINK_CLICKID</idColumn>
<idGeneratorType v="0" />
<idGeneratorInterval v="1" />
<documentation></documentation>
<title></title>
<description></description>
<auditSyncConfig>
<name>auditSyncConfig</name>
<auditMode v="0" />
<syncActive v="false" />
<syncComplete v="true" />
<syncDirection v="1" />
<syncIds></syncIds>
</auditSyncConfig>
<entityFields>
<entityFieldDb>
<name>BROWSER</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="12" />
<size v="255" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
<entityFieldDb>
<name>DEVICE_TYPE</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="12" />
<size v="255" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
<entityFieldDb>
<name>LINK_CLICKID</name>
<dbName></dbName>
<primaryKey v="true" />
<columnType v="1" />
<size v="36" />
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="true" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
<entityFieldDb>
<name>MAIL_LOG_ID</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="1" />
<size v="36" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
<entityFieldDb>
<name>IP_ADDRESS</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="12" />
<size v="50" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
<entityFieldDb>
<name>LINK_ID</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="1" />
<size v="36" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
<entityFieldDb>
<name>OPERATING_SYSTEM</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="12" />
<size v="255" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
<entityFieldDb>
<name>DATE_OPENED</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="93" />
<size v="19" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
<index v="false" />
<documentation></documentation>
<title></title>
<description></description>
</entityFieldDb>
</entityFields>
</entityDb>
<entityDb> <entityDb>
<name>COMMUNICATIONBLACKLIST</name> <name>COMMUNICATIONBLACKLIST</name>
<dbName></dbName> <dbName></dbName>
......
...@@ -90,6 +90,12 @@ ...@@ -90,6 +90,12 @@
<fieldName>Contacts</fieldName> <fieldName>Contacts</fieldName>
<isConsumer v="false" /> <isConsumer v="false" />
</entityDependency> </entityDependency>
<entityDependency>
<name>cb874ee2-e147-4311-bdf1-a94df537bb9e</name>
<entityName>LinkClick_entity</entityName>
<fieldName>Contacts</fieldName>
<isConsumer v="false" />
</entityDependency>
</dependencies> </dependencies>
</entityProvider> </entityProvider>
<entityProvider> <entityProvider>
......
...@@ -364,6 +364,38 @@ ...@@ -364,6 +364,38 @@
</entityParameter> </entityParameter>
</children> </children>
</entityConsumer> </entityConsumer>
<entityConsumer>
<name>Clicks</name>
<dependency>
<name>dependency</name>
<entityName>LinkClick_entity</entityName>
<fieldName>#PROVIDER</fieldName>
</dependency>
<children>
<entityParameter>
<name>ObjectRowId_param</name>
<valueProcess>%aditoprj%/entity/BulkMail_entity/entityfields/clicks/children/objectrowid_param/valueProcess.js</valueProcess>
</entityParameter>
<entityParameter>
<name>ObjectType_param</name>
<valueProcess>%aditoprj%/entity/BulkMail_entity/entityfields/clicks/children/objecttype_param/valueProcess.js</valueProcess>
</entityParameter>
</children>
</entityConsumer>
<entityField>
<name>INTEREST_ID</name>
<title>Interest</title>
<consumer>Interests</consumer>
<displayValueProcess>%aditoprj%/entity/BulkMail_entity/entityfields/interests_id/displayValueProcess.js</displayValueProcess>
</entityField>
<entityConsumer>
<name>Interests</name>
<dependency>
<name>dependency</name>
<entityName>Interest_entity</entityName>
<fieldName>#PROVIDER</fieldName>
</dependency>
</entityConsumer>
</entityFields> </entityFields>
<recordContainers> <recordContainers>
<dbRecordContainer> <dbRecordContainer>
...@@ -445,6 +477,10 @@ ...@@ -445,6 +477,10 @@
<name>DATE_TO_SEND.value</name> <name>DATE_TO_SEND.value</name>
<recordfield>BULKMAIL.DATE_TO_SEND</recordfield> <recordfield>BULKMAIL.DATE_TO_SEND</recordfield>
</dbRecordFieldMapping> </dbRecordFieldMapping>
<dbRecordFieldMapping>
<name>INTEREST_ID.value</name>
<recordfield>BULKMAIL.INTEREST_ID</recordfield>
</dbRecordFieldMapping>
</recordFieldMappings> </recordFieldMappings>
<linkInformation> <linkInformation>
<linkInformation> <linkInformation>
......
import("system.vars");
import("system.result");
result.string(vars.get("$field.BULKMAILID"));
\ No newline at end of file
import("system.result");
import("Context_lib");
result.string(ContextUtils.getCurrentContextId());
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment