- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
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
- Related Articles
- Output only the name of the month instead of the month number in MySQL
- Get Month Name from Month number in MySQL?
- Getting a carriage return of report field in SAP Crystal Report
- Display month by name and number in Java
- Getting calendar for a month in Python
- How to convert number to month name in PHP?
- How to Convert Month Name to Number in Excel?
- Number of days in a month in Python
- Show creator name in SAP WEBI report
- Getting MongoDB results from the previous month\n
- Convert datetime to get month name in MySQL?
- HTML DOM Input Month name Property
- Getting table name in SAP system
- Running a SQL query from specific month in SAP DB
- Limit number of rows in Webi report in SAP BusinessObjects

Advertisements