‎2009 Sep 24 7:05 PM
Hi,
I declared default value a sy-datum in dialog progrograaming under PBO event
ZTable-st.date = sy-datum.
Once I get into custom transaction , if i change St.date as future date it taking as sy-datum.
here my question, how to do default value for St.date in PBO event.
Thanks
‎2009 Sep 24 7:11 PM
hi ,
try this way...
if you change St.date as future date it will not change to default date
"write the below statemnet in PBO..
if ZTable-st.date is initial.
ZTable-st.date = sy-datum.
endif.
Prabhudas
‎2009 Sep 24 7:34 PM
‎2009 Sep 24 7:40 PM
hi,
check r u clearing ZTable-st.date in PBO or PAI any where..
try to comment the ZTable-st.date variable..
Prabhudas