Hi,
We're using PeopleSoft EPM tables as our sources but we were only given a dblink to access them. What we did was to create a view on the FDMEE schema for the PS table we're sourcing from and then configured ODI so we can use UDA to load data from that view.
The view only gets from only one table but it has some concatenations.
EXAMPLE: CREATE VIEW source_v AS SELECT A.COLUMN1 ACCOUNT, 'OU'||A.COLUMN2 OPERATING_UNIT, ... FROM PS_TBL@[dblink]
We were able to successfully import and validate data but we're trying to figure out if we might encounter some issues given this setup. Would you know of possible challenges? We're testing performance between this and Open Interface Adapter.