diff --git a/entity/Productprice_entity/Productprice_entity.aod b/entity/Productprice_entity/Productprice_entity.aod
index 039922c708f81775e5285feb0d1fd9cc8af6af88..ca1afd1d7430513260d54904b89e777dcb965a01 100644
--- a/entity/Productprice_entity/Productprice_entity.aod
+++ b/entity/Productprice_entity/Productprice_entity.aod
@@ -11,6 +11,15 @@
   <conditionProcess>%aditoprj%/entity/Productprice_entity/conditionProcess.js</conditionProcess>
   <orderClauseProcess>%aditoprj%/entity/Productprice_entity/orderClauseProcess.js</orderClauseProcess>
   <onDBInsert>%aditoprj%/entity/Productprice_entity/onDBInsert.js</onDBInsert>
+  <recordContainer>db</recordContainer>
+  <linkInformation>
+    <linkInformation>
+      <name>4535ba84-879c-43c1-8fb4-24ecc4b8e13e</name>
+      <tableName>PRODUCTPRICE</tableName>
+      <primaryKey>PRODUCTPRICEID</primaryKey>
+      <isUIDTable v="true" />
+    </linkInformation>
+  </linkInformation>
   <entityFields>
     <entityField>
       <name>BUYSELL</name>
@@ -246,12 +255,84 @@
       <name>#INCOMING</name>
     </entityIncomingField>
   </entityFields>
-  <linkInformation>
-    <linkInformation>
-      <name>4535ba84-879c-43c1-8fb4-24ecc4b8e13e</name>
-      <tableName>PRODUCTPRICE</tableName>
-      <primaryKey>PRODUCTPRICEID</primaryKey>
-      <isUIDTable v="true" />
-    </linkInformation>
-  </linkInformation>
+  <recordContainers>
+    <dbRecordContainer>
+      <name>db</name>
+      <alias>Data_alias</alias>
+      <maximumDbRows v="0" />
+      <conditionProcess>%aditoprj%/entity/Productprice_entity/recordcontainers/db/conditionProcess.js</conditionProcess>
+      <orderClauseProcess>%aditoprj%/entity/Productprice_entity/recordcontainers/db/orderClauseProcess.js</orderClauseProcess>
+      <linkInformation>
+        <linkInformation>
+          <name>b65e4aab-35f4-49d0-8f05-389572f29dcb</name>
+          <tableName>PRODUCTPRICE</tableName>
+          <primaryKey>PRODUCTPRICEID</primaryKey>
+          <isUIDTable v="true" />
+          <readonly v="false" />
+        </linkInformation>
+      </linkInformation>
+      <recordFieldMappings>
+        <dbRecordFieldMapping>
+          <name>BUYSELL.value</name>
+          <value>PRODUCTPRICE.BUYSELL</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>CURRENCY.value</name>
+          <value>PRODUCTPRICE.CURRENCY</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>DATE_EDIT.value</name>
+          <value>PRODUCTPRICE.DATE_EDIT</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>DATE_NEW.value</name>
+          <value>PRODUCTPRICE.DATE_NEW</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>FROMQUANTITY.value</name>
+          <value>PRODUCTPRICE.FROMQUANTITY</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>PRICE.value</name>
+          <value>PRODUCTPRICE.PRICE</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>PRICELIST.value</name>
+          <value>PRODUCTPRICE.PRICELIST</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>PRODUCTPRICEID.value</name>
+          <value>PRODUCTPRICE.PRODUCTPRICEID</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>PRODUCT_ID.value</name>
+          <value>PRODUCTPRICE.PRODUCT_ID</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>RELATION_ID.value</name>
+          <value>PRODUCTPRICE.RELATION_ID</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>USER_EDIT.value</name>
+          <value>PRODUCTPRICE.USER_EDIT</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>USER_NEW.value</name>
+          <value>PRODUCTPRICE.USER_NEW</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>VALID_FROM.value</name>
+          <value>PRODUCTPRICE.VALID_FROM</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>VALID_TO.value</name>
+          <value>PRODUCTPRICE.VALID_TO</value>
+        </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>VAT.value</name>
+          <value>PRODUCTPRICE.VAT</value>
+        </dbRecordFieldMapping>
+      </recordFieldMappings>
+    </dbRecordContainer>
+  </recordContainers>
 </entity>
diff --git a/entity/Productprice_entity/recordcontainers/db/conditionProcess.js b/entity/Productprice_entity/recordcontainers/db/conditionProcess.js
new file mode 100644
index 0000000000000000000000000000000000000000..440dbdb5cb6f0ee33cef992ffd90e9eec0345992
--- /dev/null
+++ b/entity/Productprice_entity/recordcontainers/db/conditionProcess.js
@@ -0,0 +1,9 @@
+import("system.result");
+import("system.vars");
+
+if(vars.exists("$param.ProductId_param") && vars.get("$param.ProductId_param") != "")
+    result.string("PRODUCTPRICE.PRODUCT_ID = ('" + vars.get("$param.ProductId_param") + "')");  
+else if(vars.exists("$param.RelID_param") && vars.get("$param.RelID_param") != "")
+    result.string("PRODUCTPRICE.RELATION_ID = ('" + vars.get("$param.RelID_param") + "')");  
+else
+    result.string("1 = 2");
\ No newline at end of file
diff --git a/entity/Productprice_entity/recordcontainers/db/orderClauseProcess.js b/entity/Productprice_entity/recordcontainers/db/orderClauseProcess.js
new file mode 100644
index 0000000000000000000000000000000000000000..9fd0aad5a4bce2f8f7f5ca713d35f79bc1b9a7ec
--- /dev/null
+++ b/entity/Productprice_entity/recordcontainers/db/orderClauseProcess.js
@@ -0,0 +1,3 @@
+import("system.result");
+
+result.object({"PRODUCTPRICE.VALID_FROM": "down"});
\ No newline at end of file