Group: Forum Members
Posts: 28,
Visits: 93
|
I have one question, and would like to solve with Business Objects. I have an application that connects to many different ERP system, providing some data on that share. Example: I'll bring to the table of invoices for a particular customer. I'll connect to Microsoft Dynamics or MySAP or another ERP system, seek data, normalize the types in an object created by me, and I use the interfaces that this object provides.
MyInvoices: Id - varchar (20) PersonID - Varchar (20) Value - Decimal (18.2) DatePayment - DateTime
InvoceFromMSDynamic: In_PK - BigInt User_FK - BigInt Value - Decimal (18.2) Date - DateTime
InvoceFromSAP Id - BigInt PersonID - Varchar (10) Value - Decimal (18.2) DatePayment - DateTime2
MyApp <MyObject <MicrosoftDynamics <DataBase MS MyApp <MyObject <MySAP <DB2 Database
I created a class that reads data from the ERP database and converts it into an object which I use in my application, so regardless of the ERP used to always call my class MyObject Is there any way I can map a standard object and uses it as a BO?
|