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

ALV default input systemdate

0 Likes
684

hi,

I have taken mkpf-budat for input field in ALV.

when i execute my program mkpf-budat should display system date how can i write code for this.

regards

1 ACCEPTED SOLUTION
Read only

former_member386202
Active Contributor
0 Likes
649

Hi,

Pass system date to budat.

mkpf-budat = sy-datum.

Regards,

Prashant

5 REPLIES 5
Read only

former_member386202
Active Contributor
0 Likes
650

Hi,

Pass system date to budat.

mkpf-budat = sy-datum.

Regards,

Prashant

Read only

Former Member
0 Likes
649

Make that particular field defaulted to sy-datum.

mkpf-budat = sy-datum.

Regards,

Aparna.

Read only

Former Member
0 Likes
649

Hi Bob,

Or you do this way,


write sy-datum to mkpf-budat 

Regards to LTP!

Cheers!!

Mark

Read only

Former Member
0 Likes
649

Hi,

you took mkpf-budat for input field in ALV

Input Field : Select-option OR parameter..

Select-options: S_DATE for mkpf-budat.

OR

Parameters: S_DATE like mkpf-budat.

When retreve the data u put S_DATE in where codition......

Read only

mahaboob_pathan
Contributor
0 Likes
649

hi

select-options:s_budat FOR mkpf-budat OBLIGATORY DEFAULT sy-datum .

or

parameters p_budat like mkpf default sy-datum