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

calender

Former Member
0 Likes
491

can we create a calender in sap?plzz tell

3 REPLIES 3
Read only

Former Member
0 Likes
468

yes..you can

Use the Fucntion Module HR_E_NUM_OF_DAYS_OF_MONTH to get the no fo days in a month of a paricular date.

-siva

Edited by: SivaKumar on Mar 3, 2008 8:15 PM

Read only

Former Member
0 Likes
468

REPORT ZCALCULATOR.

DATA: X_VALUE(15) TYPE C.

call function 'FITRV_CALCULATOR'

  • EXPORTING

  • INPUT_VALUE =

  • CURRENCY =

  • START_COLUMN = '10'

  • START_ROW = '10'

IMPORTING

OUTPUT_VALUE = X_VALUE

EXCEPTIONS

INVALID_INPUT = 1

CALCULATION_CANCELED = 2

OTHERS = 3.

IF SY-SUBRC = 0.

WRITE:/ 'Output Value ', X_VALUE.

ENDIF.

hi use this ,

<REMOVED BY MODERATOR>

venkat.

Edited by: Alvaro Tejada Galindo on Mar 3, 2008 11:03 AM

Read only

Former Member
0 Likes
468

AC_BUILD_CALENDAR

Greetigns,

Blag.