Application Development 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: 

Replacement function modules in ECC6

Former Member
0 Kudos

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

Former Member
0 Kudos

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.