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

weekly report

Former Member
0 Likes
450

hi friends ,

can i have a sample code for any module (sd,mm,pp,fi) which gives the weekly report for respective modules .

Thanks

Deepti

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
418

/message/4730101#4730101 [original link is broken]

Reward points..

3 REPLIES 3
Read only

Former Member
0 Likes
418

Hi

There are many standard reports the thing is you have to give the date as input the range to give is up to you,

Tcodes : MB51 , MMBE ETC

Regards,

V.Balaji

Reward if usefull

Read only

Former Member
0 Likes
419

/message/4730101#4730101 [original link is broken]

Reward points..

Read only

Former Member
0 Likes
418

Hi,

By using the following code,you can get the monday and sunday of relavent week.

--- Get sunday and monday ---

data: mon like scal-date,

sun like scal-date.

CALL FUNCTION 'GET_WEEK_INFO_BASED_ON_DATE'

EXPORTING

DATE = SY-DATUM

IMPORTING

  • WEEK = week

MONDAY = mon

SUNDAY = sun

.

skip 3.

write:/ mon,/ sun.

Regards,

Chandu