如何指定一个十进制过滤器在'选择到表格中'在ABAP?

时间:2015-06-09 04:26:52

标签: sap abap

我在ABAP中需要这样的查询,但这不起作用。

SELECT * FROM table
INTO i_tab
WHERE amount = 100,15

我试过了: 数量=' 100,15'但那也不起作用。

如何在我的where语法中指定小数?

2 个答案:

答案 0 :(得分:5)

正确的语法是:

SELECT * 
FROM table
INTO i_tab
WHERE amount = '100.15'

答案 1 :(得分:-1)

我通过将逻辑改为

来超越它
if (id == android.R.id.home) {
            // This ID represents the Home or Up button. In the case of this
            // activity, the Up button is shown. Use NavUtils to allow users
            // to navigate up one level in the application structure. For
            // more details, see the Navigation pattern on Android Design:
            //
            // http://developer.android.com/design/patterns/navigation.html#up-vs-back
            //
            NavUtils.navigateUpTo(this, new Intent(this, SongListActivity.class));
            return true;