Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Replacement function modules in ECC6

Former Member
0 Likes
402

Hi,

We are working Upgrade project in Ecc6.

We found that function module 1. TABLE_COMPRESS and

2. STRING_MOVE_RIGHT

3. STRING_LENGHT is obsolete

Please suggest the Replacement for these Function Modules

Thanks

Vanamali

1 REPLY 1
Read only

Former Member
0 Likes
344

Check

for TABLE_COMPRESS

[]

for STRING_MOVE_RIGHT

[]

for STRING_LENGHT

DATA: lv_length TYPE i,
      var(10) TYPE c VALUE 'Sathar'.

lv_length = STRLEN( var ).

WRITE lv_length.