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

VA45 default Date DATAB DATBI

reiner_schwab
Discoverer
0 Likes
769

Hello Experts,

in Transaction VA45 I would like to change the default Date.

Are there any Exits for the Selection-Screen?

Thanks for you reply.

R. Schwab

2 REPLIES 2
Read only

Former Member
0 Likes
587

The default values are determined based on the values in Customization table V_T180V. See the Code in Standard include MV75AO00_TRANSAKTIONS_INIT, line number 72

select * from t180v
      where rname = sy-repid
      and   trvog = vbcom-trvog.
      if vbcom-trvog = '0' or vbcom-trvog = 'B'.
        vbcom-audat     = sy-datlo - t180v-ivall.
      else.
        vbcom-datbi     = sy-datlo + t180v-ivall.
      endif.
      exit.
    endselect.

Read only

reiner_schwab
Discoverer
0 Likes
587

Hello,

Problem solved.

Thanks a lot!

Best reg.

R. Schwab