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

how to write the code under initilization event

Former Member
0 Likes
413

hi,

MY requirement is under intilization event i have to write

Every Monday Morning, takes the total number of parts reported as produced for the Previous week (Monday Morning 00:00:00 to Sunday Night 23:59:59)

Can somebody give hint.

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
388

Hi,

Write that message under event initialization as

MESSAGE i001(some custom message class your create).

Give that message in SE91 and use it here.

Before selection screen your required message will be displayed.

Regards,

Subhashini

2 REPLIES 2
Read only

Former Member
0 Likes
389

Hi,

Write that message under event initialization as

MESSAGE i001(some custom message class your create).

Give that message in SE91 and use it here.

Before selection screen your required message will be displayed.

Regards,

Subhashini

Read only

0 Likes
388

hi,

i wriiten like this for date range.

INITIALIZATION.

so_sptag-sign = 'I'.

so_sptag-option = 'EQ'.

so_sptag-low = sy-datum - 6.

so_sptag-high = sy-datum.

APPEND so_sptag.

CLEAR so_sptag.

Now they r telling to maintain time range also.

how to write??

help