SAP Managed Tags: ABAP Development Hi, I have issue while trying to insert record into a custom table having one of the fields with type FLTP length 16 and decimals 16., I have defined an internal of the same type as that of the table. However when I write the data from Internal ...
SAP Managed Tags: ABAP Development hello, I am trying to convert fltp data type to currency by using following statement in CDS view , fltp_to_dec ( table.field as abap.curr(31,2) ) as temp I keep on getting error saying " unexpected word 'as' ". I checked syntax and is correct....
SAP Managed Tags: ABAP Development my solution : Data dynpro_data_from_help(22) type c VALUE '4.500000000000000E+01'. DATA wl_FLTP TYPE F . " DATA wl_PD TYPE P DECIMALS 1. REPLACE ',' WITH '.' INTO dynpro_data_from_help.
SAP Process Integration, Integration and Certification Center Hi All I have a abap proxy that was generated from a wsdl file. I have a issue with one of the field wich is declared as data type:FLTP and xsd:double. The problem is whenever I get a value of 0.00 in this field the value...
SAP Managed Tags: ABAP Development HI, if you are using FLTP data type fields then defintely it will come we cannot avoid this, these fields won't appear on the screen. Regards, Nagaraj Reply Former Member In response to Former Member 2009 Oct 23 1:28 PM 0 Kudos 456 SAP...
SAP Managed Tags: ABAP Development I think a simple move will do the conversion.. DATA : lv_value TYPE imrg-cdiff , lv_quan TYPE ekpo-menge . lv_value = '100.23' . lv_quan = lv_value . WRITE : / lv_value , lv_quan . Reply Former Member In response to Pawan_Kesari 20...
SAP Managed Tags: ABAP Development Hi, Since the export parameter is of type char, you may not be able to perform arithmetic calculations. You could try this, data: var type p decimals 5. "After the call to FLTP_CHAR_CONVERSION_FROM_SI , replace all occurences of ',' in out_char ...
SAP Managed Tags: ABAP Development Hi All I have a scenario where user type value in BSP screen and the data is send by a ABAP proxy to PI. The problem is when the user types an amount of 0.00 on the screen the proxy does not send that amount. The field is of type FLTP and th...
SAP Managed Tags: ABAP Development Hello, The value for field ABSAT will be coming from CSV file, although this value is coming in FLTP format: 7.72E+03 (this is how value is visible in csv file and same in debugger). when i am trying to move this value into internal table which ...
SAP Managed Tags: ABAP Development Hello, The value for field ABSAT will be coming from CSV file, although this value is coming in FLTP format: 7.72E+03 (this is how value is visible in csv file and same in debugger). when i am trying to move this value into internal table which ha...