Hi,
I am Loading Master Data Text from DS to Target Info Object,While Executing DTP The load getting Failed due to following Special Symbols.
![Tr1.png]()
I need load this data to target without adding special symbols in RSKC.
Is there any way to load data to target using Routines at Transformations...........?
Please help me ,Thanks in Advance.
I Tried with following ABAP Code in Fields routine ,But It's working only for where Result equal to Space for other Values like NT,AT,CP,BR values are not getting into Target object.
If Source_Fields-Iobj = '$'
Result = ' '.
Elseif Source_Fields-Iobj = '~'.
Result = 'NT'.
Elseif Source_Fields-Iobj = '@'.
Result = 'AT'
Elseif Source_Fields-Iobj = '^'.
Result = 'CP'
Elseif Source_Fields-Iobj = '|'.
Result = 'BR'
Else.
Result = Source_Fields-Iobj.
EndIf.
Note : Here NT,AT,CP,BR are My own Values for Code Checking Purpose, This Data is not in Source.
Regards
Surendra