Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

want to display records for the specified month only

sandip_sonar
Participant
0 Kudos

Hi all,

In my report I am displaying records for the specified month only.

I am able to display it in range of the dates, but i want to display name of the month at the top of page.

e.g.

i am giving range like

01.04.2008 to 30.04.2008

then, it shoud display April, 2008.

Thanks & Regards,

Sandip Sonar

2 REPLIES 2

Former Member
0 Kudos

Hi,

Ru using alv grid?

Use following FM to get month in words.

and then using TOP-OF-Page event print the month.

DATA X_MONTH(11).

CALL FUNCTION 'CONVERSION_EXIT_LDATE_OUTPUT'

EXPORTING

INPUT = SY-DATUM

IMPORTING

OUTPUT = X_MONTH.

Regards,

Dhan

0 Kudos

hi,

ya,I am using ALV grid display,

I want to display month for the date which ever i enter into my specified selection screen.

Thanks & Regards,

Sandip Sonar