2008 May 12 1:44 PM
hi,
i have an internal table(uploaded the records from flat file) comprising of 7 fields,
all the fields are of type c.
i need to find if there are any errors in those records.
ex: there should not be 1.leading spaces,
2.special characters etc.,
i should not use either call transaction or session method.
hi,
i have an internal table(uploaded the records from flat file) comprising of 7 fields,
all the fields are of type c.
i need to find if there are any errors in those records.
ex: there should not be 1.leading spaces,
2.special characters etc.,
i should not use either call transaction or session method.
2008 May 12 1:50 PM
1. shift field left deleting leading...
2. if itab-field cn lv_non_special.
data: lv_special(36) type c value '1234567890abcdefgh...z'.
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |