Preparing the Data Source and Generating Tables 
To configure the data source, open the data-source-aliases.xml under EAR project / META-INF.
Under Aliases , leave the default data source name, but enter SMPLFD_EDM_DS_ALIAS for the alias name.
Select the Source tab page and ensure the displayed code is the following:
Syntax
<?xml version="1.0" encoding="UTF-8"?>
<data-source-aliases xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="data-source-aliases.xsd">
<application-name>LocalDevelopment~LocalDevelopment~app_ear~demo.sap.com</application-name>
<aliases>
<data-source-name>${com.sap.datasource.default}</data-source-name>
<alias>SMPLFD_EDM_DS_ALIAS</alias>
</aliases>
</data-source-aliases>To configure the persistence unit and its name, open the persistence.xml under app_ejb/ejbModule/META-INF.
Select the Source tab page and enter the following source code:
Syntax
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
<persistence-unit name="ems/EJB3_simpl_EDM_DEMO_PU">
<description>EDM EJB3 Demo Application Persistence Unit</description>
<jta-data-source> SMPLFD_EDM_DS_ALIAS</jta-data-source>
<properties>
<property name="com.sap.engine.services.orpersistence.generator.versiontablename"
value="EDM_VERSIONGEN"/>
</properties>
</persistence-unit>
</persistence>Open the context menu of the app_ejbproject.
Select .
Now you can see the generated tables under the app_dict.