SAP / SAP Beginner (0 to 2 yrs) Interview questions
What are the data types in ABAP?
ABAP provides a set of elementary data types for holding single values, which every variable declaration ultimately builds on.
| Type | Description |
| C (Character) | Fixed-length text. |
| N (Numeric text) | Digits stored as text, e.g. for codes like postal codes. |
| I (Integer) | Whole numbers. |
| P (Packed number) | Decimal numbers, common for currency amounts. |
| D (Date) | Calendar date. |
| T (Time) | Time of day. |
| STRING | Variable-length text. |
DATA: lv_name TYPE c LENGTH 20, lv_count TYPE i, lv_price TYPE p DECIMALS 2.
Beyond these elementary types, ABAP also supports complex types built from them — structures (grouping several fields together) and internal tables (holding multiple rows of structured data).
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
