Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a question and hope my english is not too bad:
I want to establish a link between SAP FI and SAP IS-U in QlikView.
For this I use the AWKEY in FI and the FIKEY (DFKKKO) in IS-U.
Unfortunately the AWKEY is like this:
13120403/MÜA-0000001 |
and the FIKEY like that:
13120403/MÜA |
Is it possible to cut the AWKEY by 8 points from behind and how would the code look like for this?
Thank you very much,
Peter
Hi Peter,
In your load script, you can use
SubField(AWKEY,'-',1) AS AWKEY
Regards,
Sokkorn
Hi Peter,
LEFT(AWKEY, (Length(AWKEY)-8)) - this will take, from the left, all the letters from AWKEY minus the 8 you want to cut off.
HTH
Best regards,
DataNibbler
Hi Peter,
In your load script, you can use
SubField(AWKEY,'-',1) AS AWKEY
Regards,
Sokkorn
Thank you very much Sokkorn,
it works perfectly.
Peter
You are welcome Peter.
Regards,
Sokkorn