
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Get Month Name Instead of Numeric Month Number in SAP Report
There are various methods this can be done
a) Use the Function module MONTH_NAME_GET - This Function module is used to return all the month and names in the respective language.
b) You can also use the below formula −
cstr(monthname(month({inputdate})))
where “inputdate” is the date for which month name is required.
c) Find the numeric value of month and use if condition. For example -
IF month = “01” THEN January
Advertisements