Hello all, I have created Hana DB schema and tables using CDS in XS. For example I have customer and order tables and it created like below.
TestPkg.DB::DBextend.Customer. FOllowing is the entity creation in CDS
Entity Customer
{
key ID: Integer,
NAME : String(50);
}
TestPkg.DB::DBextend.Order. FOllowing is the entity creation in CDS
Entity Order
{
key OrderID: Integer,
Amount: Integer,
Customer: Association to Customer { ID } --> This is the managed relation ship to customer, in the physical table this column is created as CUSTOMER.ID
}
My question is, in such scenario, when I am loading the data thru ETL Informatica, Informatica is not recognizing the column name "CUSTOMER.ID", The insert to Hana is failing as column names with DOT is not expected from Informatica.
Can any one pl. guide me on how to deal with this situation.
Thanks,