Purchase Order History Mass Display |
Purchase Order History Mass Display
Instead of checking your Purchase Order History one at a time, you can now mass display or p(10/15/2006 16:31:00,157) [查看全文] |
Determine Last Day of the Previous Month |
During developing a report I came across this situation:
I've select option in which I want first date of the current month in LOW of select option and Last date of current month in HIGH of se(09/27/2006 21:05:06,91) [查看全文] |
FM to Get the Day for a Particular Date |
FM or any other means by which we can get the DAY for a particular date?
Yes, DATE_COMPUTE_DAY
S(09/27/2006 21:03:47,105) [查看全文] |
How to use function DATE_GET_WEEK |
A sample using function DATE_GET_WEEK
Report try05.
DATA: xweek(6) TYPE n, (09/27/2006 21:03:02,140) [查看全文] |
ABAP function to convert Current Date to Current Period |
REPORT ZPERIOD. DATA: X_PERIOD LIKE T009B-POPER, X_YEAR LIKE CSSL-GJAHR. CALL FUNCTION 'DATE_TO_PERIOD_CONVERT' (09/27/2006 21:02:30,142) [查看全文] |
Find the difference between two days in days, months and years |
REPORT ZDATEDIFF. DATA: EDAYS LIKE VTBBEWE-ATAGE, EMONTHS LIKE VTBBEWE-ATAGE, EYEARS(09/27/2006 21:01:57,125) [查看全文] |
Function to return next business day |
A function that will return next business day, based on the country.
This function will allow users to specify e.g. 10 business days from now.
Here is the code.
Code: (09/27/2006 21:01:19,111) [查看全文] |
Pop a Date in ABAP Report Selection Screens |
REPORT ZPOPDATE.
DATA: V_CODE LIKE SY-SUBRC.
PARAMETER: V_MONTH LIKE ISELLIST-MONTH.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR V_MONTH.
CALL FUNCTION 'POPUP_TO_SELECT_MONTH'
(09/27/2006 20:57:48,131) [查看全文] |