cancel
Showing results for 
Search instead for 
Did you mean: 

reg. reverse print

Former Member
0 Kudos

Hi Experts,

I want to print one material descripton in reverese , in that description iam having some numerics also. The description is as follows.

'BOOT HOT WEATHER TAN SIZE11.5W CSPK 6'. for this description i want to print in reverese with numeric .

like this ' 6 kpsc w11.5 ezis nat rehtaew toh toob'

but iam getting the output like this

'جزمة أصفر للجو الحار حجم 5.11 واسع - العدد 6'

i used string_reverse f.m also.

please help me rewards are helpful answers.

Thanks & Regards,

Narasimha Rao.

Accepted Solutions (1)

Accepted Solutions (1)

prasanth_kasturi
Active Contributor
0 Kudos

hi,

check the lang parametr you passed

pass it as 'E' foe english etc or sy-langu for logon lang

try this way

data : string(255) type c value 'BOOT HOT WEATHER TAN SIZE11.5W CSPK 6'.

data rstring(255) type c.

CALL FUNCTION 'STRING_REVERSE'

EXPORTING

string = string

lang = 'E'

IMPORTING

RSTRING = rstring.

write : string.

write : / rstring.

regards

prasanth

Answers (0)