2008 Jan 17 4:25 PM
Hi,
can anyone help me how to get by default sydatum in the parameter.
regards.
satish
Hi,
can anyone help me how to get by default sydatum in the parameter.
regards.
satish
2008 Jan 17 4:27 PM
2008 Jan 17 4:27 PM
2008 Jan 17 5:02 PM
Hi,
You can do as below :
parameters : date like sy-datum default sy-datum.
Thanks,
Sriram Ponna.
2008 Jan 18 4:31 AM
2008 Jan 18 10:36 AM
Hi,
Declare a parameter like follow,
parameter: p_date like sy-datum default sy-datum.
This will solve your query.
Reward points if it answers your question.
2011 May 05 4:02 PM
Data: ldate like sy-datum
ldate = sy-datum
This will give you your declaration and extraction for date assignment to variable ldate
if you are just needing the year then follow up by:
adding:
Data: ldate like sy-datum
1year type c length 4..
after:
ldate = sy-datum
add
1 year = ldate(4) - 4
your new variable for the year is now 1year
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |