on 2024 Jul 29 8:06 AM
Hello All,
Could you please help me, how to write the Start Routine using with Contains for below scenario.
i am getting the data from source value KSFG000275C45000 if its contains 0275 it should be add the source field bukers = 0275.
Please provide me the code.
Thanks and Regards,
Venkat.
Note: this could also be done in an individual rule avoiding an extra loop through your record set if you don't need a start routine for something else.
The CS (contains string) operator will do what you need.
Something like:
CONSTANTS c_bukrs TYPE c LENGTH value '0275'.
IF your_source_field_val CS c_bukrs.
write c_bukrs to target field
ENDIF.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
65 | |
10 | |
8 | |
7 | |
6 | |
6 | |
6 | |
6 | |
6 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.