SAP Managed Tags: ABAP Development i am using FM "CEVA_CONVERT_FLOAT_TO_CHAR" to convert 3.0000000000000000E+02 to 300 in my report. I am using this FM as below DATA: l_var TYPE p DECIMALS 2. DATA: l_char(25). LOOP AT i_cdpos . IF i_cdpos-fname = 'ATFLV'. CALL FUNCTION...
SAP Managed Tags: ABAP Development Hi All, My issue is i have to convert one float type value into %. Means i m dividing two values of int4 type and the result i sstoring in one float data type variable. I want to display the result value is with %. Ex:DATA: n1 TYPE i, n2...
SAP Managed Tags: MM (Materials Management) Dear Abapers, Can any one of you give me the FM to convert a float to decimal. Regards Sayandeep Accepted Solutions(1) Former Member 2008 Dec 05 Answers(0) Ask a Question An Unexpected Error has occurred....
SAP Managed Tags: ABAP Development Hi All, My requirement is: I will have 2 float or numc type parameters and once i get the input from user i should be giving the output as Result = flt1 - flt2 (Ex: flt1 = 0.0001 and flt2 = 0.0004 then result should be like range i.e. ...
0 Kudos 6,244 SAP Managed Tags: ABAP Development Hello everyone, I need to convert "2.006123100000000E+07" to a date format. How can I do it ? Thanks in advance.Reply 1 ACCEPTED SOLUTION Former Member 2006 May 29 1:47 PM 0 Kudos 2,072 SAP Managed Tags: ABAP Development...
SAP Managed Tags: ABAP Development use this CEVA_CONVERT_FLOAT_TO_CHAR Reply Former Member In response to Former Member 2007 Feb 07 11:54 AM 0 Kudos 615 SAP Managed Tags: ABAP Development Hi, I've tried to use this function, but I get no results... Can you please hel...
SAP ManagedTags: ABAP Development Can someonemake changes in this code : So that I can use it data :w_float type f value '3.339000000000000E+02', w_charactertype ausp-atwrt, w_numbertype f. CALL FUNCTION'CEVA_CONVERT_FLOAT_TO_CHAR' EXPORTING float_ = w_float "Feld TYPE F...
SAP Managed Tags: ABAP Development So you just multiply any value to get the your answer? How is that correct? I think you are doing the wrong thing to assume that you should multiply by 10. Are you working in one of those user exits where the "fixed point arithmetic" attribute is ...