 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP 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
Getting month name instead of numeric month number in report in SAP
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
 