I am trying my best to explain the issue. We do have 5 tables M1,M2,M3,M4,M5 and after all we have only one common field M_ID in all the tables. Also M_ID will have different values. So my requirement is to retrieve the records that related to individual M_ID at a time.
Example: If I have M_ID values as 1,2,3,4 etc then for each SQL select I need to retrieve the records for only one M_ID value
M1 Table: M_ID,F1,F2,.. M2 Table: M_ID,F3,F4,.. M3 Table: M_ID,F5,F6,..
F* are the fields that can be repetitive multiple times. So I need to take care of Data redundancy too.
M1 contains the Material Details,M2 contains the Plant Details,M3 Contains the Product description details, M4 Contains the SalesOrg details and M5 Contains Tax details. Basically we are retrieving the data fromthe database to map the MATMAS IDOC. So I would also be required any functional relation exists between these tables so as to perform an inner Join operation?