shadow_left
Logo
Shadow_R
   
How to calculate number of working days between two dates
Yazar Administrator   
Salı, 18 Aralık 2007

data : days type i.
CALL FUNCTION 'FIMA_DAYS_BETWEEN_TWO_DATES_2'
EXPORTING

   I_FLAG_INTRADAY = ' '
   I_DATUM_VON = '20080626'
*   I_ZEIT_VON =
   I_KZ_EXCL_VON = '0'
   I_KZ_ULT_VON = ''
   I_DATUM_BIS = '20080620'
*   I_ZEIT_BIS =
   I_KZ_INCL_BIS = '0'
   I_KZ_ULT_BIS = ''
   I_STGMETH = '5'
   I_SKALID = ' A' " Factory calander

IMPORTING
   E_TAGE = days.

Son Güncelleme ( Çarşamba, 19 Mart 2008 )
 
Add n number of working days to date
Yazar Administrator   
Salı, 18 Aralık 2007

The following ABAP code adds n number of WORKING days to a particular date, any days which are not
workings days (i.e. Saturday) will be ignored. For example if your starting date is Friday, adding 3 days
would return a result of Wednesday or if starting date was Wednesday resultant day would be Monday as
Saturday and Sunday are non working days. If you want to add n number of working days but allow result
to be a non working day then click here for alternative ABAP code.

Simply add the below FORM into you code and call it using the usual PERFORM command:   PERFORM add_working_days USING ld_numdays
                            CHANGING gd_date.

Son Güncelleme ( Salı, 01 Nisan 2008 )
Devamını oku...
 
Purchase Order History Mass Display
Yazar Administrator   
Salı, 26 Şubat 2008

Instead of checking your Purchase Order History one at a time, you can now mass display

or print them with this customized abap report.

*
*  Mass display or print Purchase Order History
*
*  You can request report by :
*  1.  Change date
*  2.  User Name
*  3.  Purchase Order Number
*  4.  Vendor Code
*
* Written by : SAP Basis, ABAP Programming and Other IMG Stuff
*              http://www.sap-img.com
*
REPORT ZPOCHANGE LINE-SIZE 132 NO STANDARD PAGE HEADING
                 LINE-COUNT 065(001)
                 MESSAGE-ID VR.

TABLES: DD04T,
        CDHDR,
        CDPOS,
        DD03L,
        DD41V,
        T685T,
        VBPA,
        TPART,
        KONVC,
        EKKO.

Son Güncelleme ( Pazartesi, 03 Mart 2008 )
Devamını oku...
 
<< Başa Dön < Önceki 1 2 3 4 5 6 7 8 9 10 Sonraki > Sona Git >>

Sonuçlar 13 - 16 Toplam: 51