‎2010 Oct 19 9:46 AM
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
‎2010 Oct 19 10:18 AM
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.
‎2010 Oct 19 1:11 PM