Application Development and Automation 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: 
Read only

Customize search help for date.

Former Member
0 Likes
723

Dear All ,

Any Idea how we going to customize / standard function the search help for the date by refering to the closing period month and year.

Example this month closing period is 'July 2009', so when user click on the screen search help date button, the search help will pop up only 'July 2009' calender. Not like standard one with different years and months.

I only want 1 month calender.

Any idea ??

Thanks.

1 ACCEPTED SOLUTION
Read only

former_member194669
Active Contributor
0 Likes
688

You may need to look into fm


  CALL FUNCTION 'F4_DATE'
    EXPORTING
      date_for_first_month         = sy-datum  " <your date>
    IMPORTING
      select_date                  = l_select_date
      select_week                  = l_select_week.

or use class CL_GUI_CALENDAR

a®s

You may need to look into fm


  CALL FUNCTION 'F4_DATE'
    EXPORTING
      date_for_first_month         = sy-datum  " <your date>
    IMPORTING
      select_date                  = l_select_date
      select_week                  = l_select_week.

or use class CL_GUI_CALENDAR

a®s

2 REPLIES 2
Read only

former_member194669
Active Contributor
0 Likes
689

You may need to look into fm


  CALL FUNCTION 'F4_DATE'
    EXPORTING
      date_for_first_month         = sy-datum  " <your date>
    IMPORTING
      select_date                  = l_select_date
      select_week                  = l_select_week.

or use class CL_GUI_CALENDAR

a®s

Read only

Former Member
0 Likes
688

Hi Olrang,

Try this link, I hope its worth for you.

Regards,

Nidhi Kothiyal