Hi Kishore,
Here's how u can do it via transformation settings:
- Go to tcode- LTRS.
- Add Rule for table you are replication.
- Select "field-related" type rule and select field.
- Mention the field in import parameter.
- In line of code - mention your code.
For ex. if you want to use only first 5 char from VPSTA field of MARA
Import parameter: VPSTA.
Code: Data x type char50. x = I_VPSTA_1. E_VPSTA = x+0(5).
Hope helps.
Regards
BJ