Hi,
when i try to loading the data to ods iam getting special char repeatedly .even we checked every packet we could not get the any error . i gone through sdn i got some of routines to write transfer rule .is there effect to write these routines in production.
exampl1,
l_strlen = STRLEN( c_text ).
DO l_strlen TIMES.
IF c_text+l_offset(1) < ' '.
c_text+l_offset(1) = ' '.
ENDIF.
ADD 1 TO l_offset.
ENDDO.
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
2,DATA : l_allow_char TYPE rsallowedchar-allowchar.
data: l_length type I,
l_act type i.
data l_txz01(40) type c.
if l_allow_char is initial.
CALL FUNCTION 'RSKC_ALLOWED_CHAR_GET'
IMPORTING
e_allowed_char = l_allow_char
EXCEPTIONS
OTHERS = 1.
endif.
l_txz01 = SOURCE_FIELDS-yyIHREZ.
TRANSLATE l_txz01 TO UPPER CASE.
if l_txz01 co l_allow_char.
RESULT = l_txz01.
Condense RESULT.
else.
l_length = strlen( l_txz01 ).
l_act = 0.
do l_length times.
if l_txz01+l_act(1) na l_allow_char.
l_txz01+l_act(1) = space.
endif.
l_act = l_act + 1.
enddo.
RESULT = l_txz01.
condense RESULT.
endif.
my issue actaully hexa decimal problem it showing rectangle symbol .can u plz guide me how to solve the issue
regards
RK