Hi Experts,
we are loading data from Application server in form of flat file but the load is failing daily.
error message shows below error
Value '
Characteristic value '641654' of characteristic ZADDR2 is not ALPHA-converted
Error when assigning SID (details in long text)
Error when assigning SID (details in long text)
Error when assigning SID (details in long text)
Activation of data records from ODS object terminated
*Error getting SID for ODS object *.
we have this ZADDR2 as Z characterstic with 60 characterl length and lower case is checked
We have written start routine also to check for # ! like characters
below is the routine
LOOP AT DATA_PACKAGE.
REPLACE ALL OCCURRENCES OF '%&()"''*+,-./:;<=>?_#~@!$^[]{}NULL'
IN DATA_PACKAGE-/BIC/ZADDR1 WITH ' '.
REPLACE '!' IN DATA_PACKAGE-/BIC/ZADDR1 WITH '1'.
REPLACE '!' IN DATA_PACKAGE-/BIC/ZADDR2 WITH '1'.
REPLACE '!' IN DATA_PACKAGE-/BIC/ZSRFLUP WITH '1'.
REPLACE '!' IN DATA_PACKAGE-/BIC/ZNTOFPR2 WITH '1'.
REPLACE '!' IN DATA_PACKAGE-/BIC/ZSUBJ WITH '1'.
CONDENSE DATA_PACKAGE-/BIC/ZADDR2 NO-GAPS.
IF DATA_PACKAGE-/BIC/ZINTR = '4370020'.
DATA_PACKAGE-/BIC/ZPRSLVC = ' '.
ENDIF.
REPLACE ALL OCCURRENCES OF '%&()"''*+,-./:;<=>?_#~@!$^[]{}NULL'
IN DATA_PACKAGE-/BIC/ZADDR2 WITH ' '.
but still we are getting # in the upload thereby resulting in failure
plz let me know the reason and how to correct that
do i need to write routine in update rules for this ZADDR2
plz suggest