Content
I am still struggling with advanced edits in OTBI so this post for a (seemingly) easy task came up:
Due to a rushed implementation we have cost centers to which our employees are assigned not from the general booking key setup (cross pillar) but solemly in HR core via a DFF. The DFF is setup in a way that makes its data unusable for any further analysis/export - it combines the cost center ID and its name in the same field:
eg: 00-00-000 HQ - CostCenter
This should be divided into CostCenterID column (00-00-000) and CostCenterName column (HQ - Cost Center). So delimitated by the first blank a split has to occur.
I tried the following:
SELECT SUBSTR(cost_center, 1, INSTR(cost_center, ' ')-1) AS CostCenterID,
SUBSTR(cost_cente, INSTR(cost_center, ' ')+1) AS CostCenterName
but due to my still humble knowledge of the OTBI web management studio this is doomed to fail i guess. I found a similar entry on the Taleo part in this forum, but the resolution did not give me mor insight.
I guess there is a very basic tool on board that wil resolve my issue without any fickle, but I am seemingly blind.
Thanks for all help and input in advance.
BR
Stefan