cancel
Showing results for 
Search instead for 
Did you mean: 

how to convert decimal data type into string/char data type in WDP ABAP

Former Member
0 Kudos

Hai all,

I want to search the integer data and as well as character data in the table by giving one single search value.

for example,

i am storing empname, empid , empdesc, salary.

if i enter any value to search it should check all four fields and retrive the data.

Thanks & Regards,

Sreevathsava.G

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member40425
Contributor
0 Kudos

Hi,

Data : empid type p, 
empid_string type string.

empid_string = empid.

Now empid_string will contain the same data as empid but it will be in the form of string.

I hope it helps.

Regards,

Rohit

Former Member
0 Kudos

Hi,

You can use this class for the conversion

CL_WDR_CONVERSION_UTILS

Regards,

Lekha.