- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Use decimal in where clause in SAP ABAP
You are trying to use the user-specific setting in your queries, but ABAP does not support it. You need to use ‘.’ as the decimal separator instead of ‘,’.
So the query would look something like −
SELECT * FROM <table> INTO <index_tab> WHERE amount = 10.15
- Related Articles
- “Where” clause not working while updating database record in ABAP
- Error while using LOOP…..WHERE in SAP ABAP
- How Can we use MySQL DISTINCT clause with WHERE and LIMIT clause?
- How to use MySQL VIEW with WHERE clause?
- How to use MySQL Date functions with WHERE clause?
- Can we use WHERE clause inside MySQL CASE statement?
- How to use EXPORT / IMPORT to Memory ABAP – SAP?
- Negation logic in SAP ABAP
- Using logarithm in SAP ABAP
- Declare dynamically in SAP ABAP
- How can we use ASCII() function with MySQL WHERE clause?
- How can we use CHAR_LENGTH() function with MySQL WHERE clause?
- How can we use BIN() function with MySQL WHERE clause?
- How can we use FIND_IN_SET() function with MySQL WHERE clause?
- How can we use MySQL INSTR() function with WHERE clause?

Advertisements