2006 Dec 28 3:05 PM
Function Module required to convert a decimal (e.g. some kind of amount 17.35) into a character type .
Regards,
Rakesh
Function Module required to convert a decimal (e.g. some kind of amount 17.35) into a character type .
Regards,
Rakesh
2006 Dec 28 3:07 PM
Hi Rakesh,
There is no need of FM , u can directly assign
data : v_char(10).
v_char = '17.35'." use quotes
Message was edited by:
Chandrasekhar Jagarlamudi
2006 Dec 28 3:09 PM
u mean to say that just make it type C.
I tried that but i dont think thats working in my situation.
please help
regards
rakesh
2006 Dec 28 3:07 PM
2006 Dec 28 3:21 PM
v1 = 17.35
data: v2(8) type c.
move V1 to V2.
So, the value becomes a char value which u can use it.
2006 Dec 28 3:23 PM
i think declare another variable of type c and move into that field is enough
but still you want to know the function modules
check the data elements of that fields there you will find the conversion click on that you will get the function module conversion for that particular field
Regards,
Phani
2006 Dec 28 3:30 PM
2006 Dec 28 3:35 PM
u might have found solution from the replies...Without awardng points u have closed the thread...People are busy with work and still giving answers by taking time out...
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |