Using CrXi reporting off SAP.
Folks
I have this string of data which includes this ^ character , this data is in a formula called {@sv4_level_40}
(DATA SAMPLE)
^007-08_1_2008 TO test comments
at this level for testing
^009-08_1_2008Good progress
made in P4. 4 new DSLTM hope to be
commissioned. behing target.
^004-08_1_2008 004-08 Kpi test commments for
services
I also have this string field called KEY,
example is 007-08
What I'm trying to do is extract the portion of the string for each KEY.
So I should end up with
007-08 = 007-08_1_2008 TO test comments
at this level for testing
009-08= 009-08_1_2008Good progress
made in P4. 4 new DSLTM hope to be
commissioned. behing target.
004-08 = 004-08_1_2008 004-08 Kpi test commments for
services.
I tried this code but it does not give me exactly what I want.
right({@sv4_level_40},Len({@sv4_level_40})- InStr(1,{@sv4_level_40},{KEY}))
Any Help Appreciated.
Regards & TIA
PATOR
Folks
I have this string of data which includes this ^ character , this data is in a formula called {@sv4_level_40}
(DATA SAMPLE)
^007-08_1_2008 TO test comments
at this level for testing
^009-08_1_2008Good progress
made in P4. 4 new DSLTM hope to be
commissioned. behing target.
^004-08_1_2008 004-08 Kpi test commments for
services
I also have this string field called KEY,
example is 007-08
What I'm trying to do is extract the portion of the string for each KEY.
So I should end up with
007-08 = 007-08_1_2008 TO test comments
at this level for testing
009-08= 009-08_1_2008Good progress
made in P4. 4 new DSLTM hope to be
commissioned. behing target.
004-08 = 004-08_1_2008 004-08 Kpi test commments for
services.
I tried this code but it does not give me exactly what I want.
right({@sv4_level_40},Len({@sv4_level_40})- InStr(1,{@sv4_level_40},{KEY}))
Any Help Appreciated.
Regards & TIA
PATOR