GENERATE MONTHS

Hello,
I have facility months table following ways. I need to generate all months between MIN(EFF_MONTH) and TRUNC(SYSDATE,'MONTH') for each facility. Answer for F001 is given below. Need this in select statement. Appreciate it your help.
Using 11g
TABLE:     FACILITY_MONTH     
     FACILITY     EFF_MONTH
     F001     1/1/2008
     F001     2/1/2008
     F001     3/1/2008
     F001     4/1/2008
     F001     5/1/2008
     F001     6/1/2008
     F001     7/1/2008
     F002     4/1/2008
     F002     5/1/2008
     F002     6/1/2008
     F002     7/1/2008
     F002     8/1/2008
     F002     9/1/2008
     F002     10/1/2008
RESULT:     Need Select Statement that would generate following
FACILITY     EFF_MONTH
F001     1/1/2008
F001     2/1/2008
F001     3/1/2008
F001     4/1/2008
F001     5/1/2008
F001     6/1/2008
F001     7/1/2008
F001     8/1/2008
F001     9/1/2008
F001     10/1/2008
F001     11/1/2008
F001     12/1/2008
F001     1/1/2009
F001     2/1/2009
F001     3/1/2009
F001     4/1/2009
F001     5/1/2009
F001     6/1/2009
F001     7/1/2009
F001     8/1/2009
F001     9/1/2009
F001     10/1/2009
F001     11/1/2009
F001     12/1/2009
F001     1/1/2010
F001     2/1/2010
F001     3/1/2010
F001     4/1/2010
F001     5/1/2010
F001     6/1/2010
F001     7/1/2010
F001     8/1/2010
F001     9/1/2010
F001     10/1/2010
F001     11/1/2010

with facility_month as (
                        select 'F001' facility,to_date('1/1/2008','mm/dd/yyyy') eff_month from dual union all
                        select 'F001',to_date('2/1/2008','mm/dd/yyyy') from dual union all
                        select 'F001',to_date('3/1/2008','mm/dd/yyyy') from dual union all
                        select 'F001',to_date('4/1/2008','mm/dd/yyyy') from dual union all
                        select 'F001',to_date('5/1/2008','mm/dd/yyyy') from dual union all
                        select 'F001',to_date('6/1/2008','mm/dd/yyyy') from dual union all
                        select 'F001',to_date('7/1/2008','mm/dd/yyyy') from dual union all
                        select 'F002',to_date('4/1/2008','mm/dd/yyyy') from dual union all
                        select 'F002',to_date('5/1/2008','mm/dd/yyyy') from dual union all
                        select 'F002',to_date('6/1/2008','mm/dd/yyyy') from dual union all
                        select 'F002',to_date('7/1/2008','mm/dd/yyyy') from dual union all
                        select 'F002',to_date('8/1/2008','mm/dd/yyyy') from dual union all
                        select 'F002',to_date('9/1/2008','mm/dd/yyyy') from dual union all
                        select 'F002',to_date('10/1/2008','mm/dd/yyyy') from dual
                       ) -- end of data sample
select  facility,
        column_value eff_month
  from  (
         select  facility,
                 min(eff_month) min_eff_month
           from  facility_month
           where eff_month <= sysdate
           group by facility
        table(
              cast(
                   multiset(
                            select  add_months(min_eff_month,level - 1)
                              from  dual
                              connect by add_months(min_eff_month,level - 1) < sysdate
                   as sys.OdciDateList
  order by facility,
           eff_month
FACI EFF_MONTH
F001 01-JAN-08
F001 01-FEB-08
F001 01-MAR-08
F001 01-APR-08
F001 01-MAY-08
F001 01-JUN-08
F001 01-JUL-08
F001 01-AUG-08
F001 01-SEP-08
F001 01-OCT-08
F001 01-NOV-08
FACI EFF_MONTH
F001 01-DEC-08
F001 01-JAN-09
F001 01-FEB-09
F001 01-MAR-09
F001 01-APR-09
F001 01-MAY-09
F001 01-JUN-09
F001 01-JUL-09
F001 01-AUG-09
F001 01-SEP-09
F001 01-OCT-09
FACI EFF_MONTH
F001 01-NOV-09
F001 01-DEC-09
F001 01-JAN-10
F001 01-FEB-10
F001 01-MAR-10
F001 01-APR-10
F001 01-MAY-10
F001 01-JUN-10
F001 01-JUL-10
F001 01-AUG-10
F001 01-SEP-10
FACI EFF_MONTH
F001 01-OCT-10
F001 01-NOV-10
F002 01-APR-08
F002 01-MAY-08
F002 01-JUN-08
F002 01-JUL-08
F002 01-AUG-08
F002 01-SEP-08
F002 01-OCT-08
F002 01-NOV-08
F002 01-DEC-08
FACI EFF_MONTH
F002 01-JAN-09
F002 01-FEB-09
F002 01-MAR-09
F002 01-APR-09
F002 01-MAY-09
F002 01-JUN-09
F002 01-JUL-09
F002 01-AUG-09
F002 01-SEP-09
F002 01-OCT-09
F002 01-NOV-09
FACI EFF_MONTH
F002 01-DEC-09
F002 01-JAN-10
F002 01-FEB-10
F002 01-MAR-10
F002 01-APR-10
F002 01-MAY-10
F002 01-JUN-10
F002 01-JUL-10
F002 01-AUG-10
F002 01-SEP-10
F002 01-OCT-10
FACI EFF_MONTH
F002 01-NOV-10
67 rows selected.
SQL> SY.

Similar Messages

  • Can I use this code to self Generate month ? ie Jan, Feb, Mar

    Hi can some one tell me is this possible to do.
    I am making a Date Of Birth using combo box�s this is the code I am using to generate the date.
    My question is can I use this for the month i.e. Jan, Feb, Mar etc
    private void DayOfTheMonth(int highNumber,JComboBox comboBox){
    comboBox.addItem(" ");
    for (int index = 1; index < highNumber; index++) {
    comboBox.addItem(String.valueOf(index));
    private void DaySpecificComboBox()
    //Day is stopat 32 as there is 31 days in the month
    DayOfTheMonth( 32, DayjComboBox);
    }

    Hi,
    This can be done with the help of your abaoer, you can have the required texts from the table T009C, otherwise the programmer can hard code the months as you given.
    Regards,
    Vasu.

  • Monthly balances - GL accounts

    Hi,
    I have a requirement of generating monthly balances (Please note that its not period wise) of GL accounts as per legal requirements.Can some one guide me as to how to accomplish this? Also guide me as to which table is updated with monthly balances.
    Thanks in advance

    Purchase info record - 
    Message type : INFREC
    SAP Standard Program - RBDSEINF
    G/L Accounts -
    Message type ,Idoc Type
    GLMAST / GLMAST01.
    It is possible to send the data from one system to other syetm,setup all configuration.
    Reward points
    Thanks
    Seshu

  • How to Calculate column (Month, Year) from date or timestamp

    Hi,
    Name
    SQL Data Type
    Dimension
    Column Store Data Type
    Key
    Not Null
    Default
    Comment
    T_STAMP
    TIMESTAMP
    LONGDATE
    How to generate Month and Year from timestamp field in Analytic View.
    Please provide me some valuable input. I have searched SCN before posting this discussion.

    Hi KD,
    You can apply the following formulas in the expression:
    For Year :
    leftstr(string("Timestamp"),4)
    For Month:
    midstr(string("Timestamp"),6,2)
    Regards,
    Krishna Tangudu

  • Monthly performance report

    Dear All
    I want to generate Monthly performance report for the QM activity.. as per the below table.
    Please suggest the right way to create this query.
    Inspection description            Accepted           Rejected           Rejected %        Under test
    Raw Material                       
    Packing Material
    In-process samples
    AYK

    Hello,
    Dont know how to create in SAP Query. If your looking for ABAP query then can give some input
    You will have to a combination of QALS, QAVE, MARA Tables
    1) In QALS you will get all the lots created for particalur month when you pass from to  date in PASTRTERM (start date).
    2) Get the number of entries for the lot
    3) Pick up material also from QALS (MATNR).
    4) Pass MATNR in MARA to get the material Type (MTART)
    5) Pass the insepction lots to QAVE ( sorted for Material type) to get the UD codes for the inspection lots. ( Accepted or rejected)
    6) Calculate % Rejected
    7) Check number of entries in QAVE table also
    8) Calculate % Test = Number of entries of lot in QAVE table / Number of entries of lot in QALS table
    Regards
    gajesh

  • Month end provision entries

    hi all,
    how to generate Month end provision entries.
    pls give one example .
    regards,
    supriya thodimela.

    hi Supriya,
    1. Process Depreciation Run
    Accounting -> Financial accounting -> Fixed assets -> Periodic processing -> Depreciation run -> Execute - AFAB
    2. Process Investment Grant
    Accounting -> Financial accounting -> Fixed assets -> Periodic processing -> Investment grant - AR11
    3. Process Revaluation
    Accounting -> Financial accounting -> Fixed assets -> Periodic processing -> Revaluation for the balance sheet -> Post revaluation - AR29
    4. AA Fiscal Year Change
    Accounting -> Financial accounting -> Fixed assets -> Periodic processing -> Fiscal year change - AJRW
    5. AA Fiscal Year Close – Account Reconciliation
    Accounting -> Financial accounting -> Fixed assets -> Periodic processing -> Year-end closing -> Account reconciliation - ABST2
    6. AA Fiscal Year Close
    Accounting -> Financial accounting -> Fixed assets -> Periodic processing -> Year-end closing -> Execute - AJAB
    7. Produce Asset History Sheet
    Accounting -> Financial accounting -> Fixed assets -> Info system -> Reports on Asset Accounting -> Balance Sheet Explanations -> International -> Asset History Sheet
    or
    Accounting -> Financial accounting -> Fixed assets -> Info system -> Reports on Asset Accounting -> Balance Sheet Explanations -> Country Specifics - various
    8. Produce GR/IR Balance Report
    Logistics -> Materials Management -> Inventory Management -> Environment -> Balances Display -> List of GR/IR Bals. - MB5S
    9. Maintain GR/IR Clearing Account
    Logistics -> Materials Management -> Invoice Verification -> Invoice Verification -> Further processing -> Maintain GR/IR acct - MR11
    10. Material Revaluations – Price Changes (manual)
    Logistics -> Materials Management -> Valuation -> Valuation -> Price Determination -> Change price - MR21
    11. Material Revaluations – Debit/Credit Material
    Logistics -> Materials Management -> Valuation -> Valuation -> Price Determination -> Debit/cred. material - MR22
    12. Product Costing Material Price Change
    Accounting -> Controlling -> Product Cost Controlling -> Product Cost Planning -> Material Costing -> Price Update - CK24
    13. Material Ledger Closing
    Logistics -> Materials Management -> Valuation -> Actual Costing/Material Ledger -> Periodic material valuation -> Post closing - CKMI
    14. Materials Management Closing
    Logistics -> Materials Management -> Material Master -> Other -> Close period - MMPV
    15. Materials Management Closing – Control Posting to Prior Period
    Logistics -> Materials Management -> Material Master -> Other -> Allow posting to previous period - MMRV
    16. Lowest Value Determination – Market Prices
    Logistics -> Materials Management -> Valuation -> Valuation -> Bal. sheet valuation -> Determ. lowest values -> Market prices - MRN0
    17. Lowest Value Determination – Range of Coverage
    Logistics -> Materials Management -> Valuation -> Valuation -> Bal. sheet valuation -> Determ. lowest values -> Range of coverage - MRN1
    18. Lowest Value Determination – Movement Rate
    Logistics -> Materials Management -> Valuation -> Valuation -> Bal. sheet valuation -> Determ. lowest values -> Movement rate - MRN2
    19. Lowest Value Determination – Loss-Free Valuation
    Logistics -> Materials Management -> Valuation -> Valuation -> Bal. sheet valuation -> Determ. lowest values -> Loss-free valuation - MRN3
    20. LIFO Valuation
    Logistics -> Materials Management -> Valuation -> Valuation -> Bal. sheet valuation -> LIFO Valuation - Various
    21. FIFO Valuation
    Logistics -> Materials Management -> Valuation -> Valuation -> Bal. sheet valuation -> FIFO Valuation - Various
    22. Physical Inventory Processing
    Logistics -> Materials Management -> Physical Inventory - Various
    23. Analyze GR/IR Clearing Accounts and Display Acquisition Tax
    Accounting -> Financial accounting -> General ledger -> Periodic processing -> Closing -> Regroup -> GR/IR clearing - F.19
    24. Define Adjustment Accounts for GR/IR Clearing
    IMG -> Financial Accounting -> General Ledger Accounting -> Business Transactions -> Closing -> Regrouping -> Define Adjustment Accounts for GR/IR Clearing - OBYP
    25. Print Balance Confirmation
    Accounting -> Financial accounting -> A/P or A/R -> Periodic processing -> Closing -> Check/count -> Balance confirmation: Print
    or
    Accounting -> Financial accounting -> A/P or A/R -> Periodic processing -> Print correspondence -> Balance confirmation -> Print letters - F.17
    26. Configure Balance Confirmation
    Accounting -> Financial accounting -> A/P or A/R -> Periodic processing -> Closing -> Check/count ->…
    or
    Accounting -> Financial accounting -> A/P or A/R -> Periodic processing -> Print correspondence -> Balance confirmation - F.1B, F.1A
    27. Post Individual Value Adjustment
    Accounting -> Financial accounting -> Accounts receivable -> Document entry -> Other -> Intern. trans. posting -> Without clearing - F-21
    28. Define Account Determination for Flat-Rate Individual Value Adjustment
    IMG -> Financial Accounting -> Accounts Receivable and Accounts Payable -> Business Transactions -> Closing -> Valuate -> Valuations -> Define Accounts OBB0
    29. Configure Flat-Rate Individual Value Adjustment
    IMG -> Financial Accounting -> Accounts Receivable and Accounts Payable -> Business Transactions -> Closing -> Valuate -> Valuations ->… SPRO
    30. Calculate Flat-Rate Individual Value Adjustment
    Accounting -> Financial accounting -> Accounts receivable -> Periodic processing -> Closing -> Valuate -> Further valuations - F107
    31. Writing-Off Doubtful Receivables
    Accounting -> Financial accounting -> Accounts receivable -> Document entry -> Other -> Intern. trans. psting -> With clearing - F-30
    32. Customizing Exchange Rates
    IMG -> General Settings -> Currencies - Various
    33. Maintaining Exchange Rates
    Accounting -> Financial accounting -> General ledger -> Environment -> Current settings -> Enter exchange rates - OB08
    34. Customizing Valuation Methods
    IMG -> Financial Accounting -> General Ledger Accounting -> Business Transactions -> Closing -> Valuating -> Foreign Currency Valuation -> Define Valuation Methods - OB59
    35. Foreign Currency Open Item Valuation
    Accounting -> Financial accounting -> General ledger -> Periodic processing -> Closing>>Valuate -> Valuation of Open Items in Foreign Currency - F.05
    36. Account Determination for Exchange Rate Differences
    IMG -> Financial Accounting -> General Ledger Accounting -> Business Transactions -> Closing -> Valuating -> Foreign Currency Valuation -> Prepare automatic postings for foreign currency valuation - OBA1
    37. Regroup Receivables and Payables
    Accounting -> Financial accounting -> A/P or A/R -> Periodic processing -> Closing -> Regroup -> Receivables/ Payables - F101
    38. Account Determination for Regrouping Receivables and Payables
    IMG -> Financial Accounting -> Accounts Receivable and Accounts Payable -> Business Transactions -> Closing -> Regrouping - OBBV, OBBW, OBBX
    39. Revalue Foreign Currency G/L Account Balances
    Accounting -> Financial accounting -> General ledger -> Periodic processing -> Closing -> Valuate -> Foreign Currency Valuation of Inventory - F.06
    40. Posting Accruals/Deferrals
    Accounting -> Financial accounting -> General ledger -> Periodic processing -> Closing -> Valuate -> Enter Accrual/Deferral Doc. - FBS1
    41. Posting Accrual/Deferral Reversal
    Accounting -> Financial accounting -> General ledger -> Periodic processing -> Closing -> Valuate -> Reverse Accrual/Deferral Document - F.81
    42. Generate Recurring Entry Posting
    Accounting -> Financial accounting -> General ledger -> Periodic processing -> Recurring Entries -> Execute - F.14
    REgards
    assign the points
    Ranjit

  • SAP Note 1614681 - ESI monthly report for filing details of ESIable employe

    Any one implemented this SAP Note
    While doing the manual steps mentioned in SAP Note 1614681 - ESI monthly report for filing details of ESIable employees .
    we found some difficulties.
    Please let me know the steps that you followed while implementing this.
    Note Summary
    Symptom
    As per the new rule introduced by ESIC authorities, an organization is liable to file details of employees eligible for ESI contribution during a particular period/month. Details are to be uploaded on the ESIC website in the format prescribed by the ESIC authorities. Currently, as a part of SAP standard delivery, ESI Form5 and Form6 are provided which are used to report ESI contribution for a period of six months. However, there is no such provision to generate monthly ESI details in system and report it to the ESIC authorities.
    Other terms
    HINCESI0, PC00_M40_ESIF, ESI , Employee State Insurance, ESI Monthly report, IT0588, ESIC.
    Reason and Prerequisites
    Legal Change.

    Hi,
         We tried to apply the manual steps mentioned along with the note. We were able to do first two steps that is inserting the messages in message class and creating new text elements..
    When we tried for the 3rd step, we are facing the problem..
    When we gave the name ''HR_IN_ESI_MON_DET '' in SE18 and and try to create it asked for the package...since it is SAP standard we gave PC40( since all ESI badi is saved in this package i gave this) for the package name.....and it got created and each time it was asking for Access key...( After providing access key in each step it got created)
    Now when i check in SE80 this enhancement is there....but if i check in SE18 it says Enhancement spot doesn't exist.  
    check the screen shot:
    http://www.mypicx.com/10052011/ESI_manual_Steps/

  • Tablespace Monthly Report

    Hi All
    I am working in oracle 9i / AIX 5.3.
    I would like to Generate Monthly TS usage report
    Report may be..
    Date TS NAME USED SPACE in GB FREE SPACE in GB
    1/5/2010 TS A 5 GB 4GB
    ..

    would like to Generate Monthly TS usage report
    Nice!
    What did you try? Write it yourself?
    Or search the Internet for the numerous scripts floating around?
    Or use EM to get the data?
    Does your database have a version?
    Please do not ask this type of question!
    Sybrand Bakker
    Senior Oracle DBA

  • FM for getting MONTH name from DATE.

    Hi all ,
    We have a requirement to get Month name from the DATE,e.g IF date is 01/01/2008 we need a FM which can generate month name as 'JANUARY'.
    \[removed by moderator\]
    Thanks and Regards
    Kiran
    Edited by: Jan Stallkamp on Jul 30, 2008 4:26 PM

    Hi,
    Here is the code u required...
    REPORT  ZASHU_MONTH_NAMES_GET.
    data:r_code type sy-subrc.
    data:mnames type standard table of T247 with header line.
    CALL FUNCTION 'MONTH_NAMES_GET'
    EXPORTING
       LANGUAGE                    = SY-LANGU
    IMPORTING
         RETURN_CODE                 = r_code
    TABLES
        month_names                 = mnames.
    EXCEPTIONS
      MONTH_NAMES_NOT_FOUND       = 1
      OTHERS                      = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    write:/ mnames.
    Thanks & Regards
    Ashu Singh

  • Monthly return for production and removal of goods - ER 1

    How to generate -Monthly return for production and removal of goods - Form ER 1
    is there any standard reports in SAP which directly can be submitted to Excise Authorities.
    regards
    Rajesh

    Hi,
    -> Enter J1ILN (this will provide the India Localisation menu path)
    -> Select Register or Reports
    -> Here you can find the transaction code to take the RT12 report.
    Please check and revert
    Regards
    Manivannan R

  • Monthly Account Statements not getting printed (FPCC0002)

    Hi Experts
    We are using FPCC0002 to generate monthly account statements of our conservation loans.  Our experience so far has been that this job has to be run every day of the week to pick up the accounts due in 30 days time.  ie there's no "slack" in the program to print on Mondays what was planned for printing on a weekend.
    We first encounted the problem at the end of Jan in 2011.  Statements due on 03/01/2011 (Mar 1st) should have printed on 01/30/2011 (Jan 30th), based on the 30 day parameter.  Similarly, statements due on 03/02/2011 (Mar 2nd) should have printed on 01/31/2011 (Jan 31st).  for both days there were no statements generated even though there were accounts with loan installments due for those March dates.
    I think the system is expecting there to always be a 1 calendar month gap between the print date and the due date, and with February being a short month, these 2 dates had a 2 calendar month gap between them and hence these dates skipped their workload.
    This year won't be as bad as we have Feb 29th, so we're only anticipating a problem on Jan 31st for the invoices due on March 1st.
    Is there another config parameter that can be tweaked to allow the March 1st invoices to be printed as expected, or is this something that needs submitting as an OSS note.  I did a search on the t-code and didn't see any relevant notes.
    Thanks for any help.
    Astrid

    We dealt with this using a workaround, to manually configure the mass processing template, changing the number of days for the month,

  • Getting first and last dates of a month

    Jello all,
    I am really sorry I am posting this topic here, not actually owned by this forum but in fundamental forum i am not getting it attended.
    I am generating monthly, quartelry and yearly reports, for which I need to get first and last dates of a given Month taking in to account leap year. I searched the API and docs for Calendar class. I could not find any useful methods / fields. I wonder this being a very common requirement, how SUN has not provided these essential features. I still feel, it must be some where. Please help me and reply. Also if you came across any other forum for util package, let me know.
    Thanks
    Varde

    Jello all,
    I am really sorry I am posting this topic here, not
    actually owned by this forum but in fundamental forum
    i am not getting it attended.
    Yes, and I can see you are a very patient person, waiting a whole half hour for a response before cross posting other boards.
    Question answered.
    http://forum.java.sun.com/thread.jsp?thread=514908&forum=31&message=2451646

  • To get month number

    Hi all ,
    We have a requirement to get Month number "not an name" from the DATE,e.g IF date is 02/04/2008 we need a FM which can generate month number as '02'.
    Thanks and Regards,
    Priya

    Hi,
    Just go through this it may help u....
    REPORT  ZASHU_MONTH_NAMES_GET.
    data:r_code type sy-subrc.
    data:mnames type standard table of T247 with header line.
    CALL FUNCTION 'MONTH_NAMES_GET'
    EXPORTING
       LANGUAGE                    = SY-LANGU
    IMPORTING
         RETURN_CODE                 = r_code
    TABLES
        month_names                 = mnames.
    EXCEPTIONS
      MONTH_NAMES_NOT_FOUND       = 1
      OTHERS                      = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CASE mnames.
    when 'January'
    when 'February'.
    endcase.
    Thanks & Regards
    Ashu Singh

  • SAP Treasury Fixed Deposits Monthly Reports

    Hi,
    My Question is relating to Fixed Deposits Receipts (investment) Product Type 51A, Product Group 510
    My Client was invested money in Fixed Deposits on 05 Feb 2014. They are preparing monthly balance sheet.
    Interest Calculation - quarterly/compounding
    So, the requirement is i need monthly report
    How to generate month end report
    for example,
    05 Feb 2014 invested
    30 may  2014 - I need a report
    In the standard, 05 June  2014 - It shows Interest
    Where can i get the Month End Report
    Please provide me some inputs
    with regards

    If you use Logical database you'll have:
    Key data
    You can limit flow type to show only interests (flow types 1200, 1150, etc)
    The result might be like this - the same as "Cash flow" tab but only interests on the key date. Also you can add postings parameters to see what was posted.
    The only instrument you need - SAP Query (tr. SQ01, SQ02, SQ03)

  • Time Evalution & PDC recalculation

    Dear Experts!
    I have to face an weird problem. My scenario is as below:
    1. I create a new Time Type to calculate the working date of employee in every month. My time wage type will replace an existed wage type in system, because it's configuration is not correct.
    2. After checking on Dev, QAS, the value of Earn Leave ( generated monthly) is CORRECT, we move this TR to PRD.
    And after moving it to PRD, there are a lot of employee re-run PT60 from Go Live Date. I don't know why.
    Could you please guide me the way to know which recalculation date in Time Evaluation, and How SAP decide the date to retro Time Evaluation in PT60? I just guess the field PDC recalculation in IT 3 ( I read F1 of this field), but now I'm mixed about this information.
    And you know, because we change the Earned Leave in Time ( I  run PT60) eg: Earned Leave for Feb-2010 will be modified, of course the value of Time Wage Type will be changed. The date Earliest MD change in IT3 is NOT Changed. But the Payroll for this guy is retro from Mar-2010.
    Can you please help me clear the way to re-run Time Evaluation & Payroll.
    Regards!
    Woody.

    Hi Woody,
    Please note  the below Points carefully, which may help you to solve your issue:
    Note -
    Retro Runs are based on Infotype,  If you change any Infotype related to Time / Payroll, then the system automatically maintain the "Earliest MD Change" date in IT 0003.
    For IT 0003
    1) When you change employee data that is relevant to payroll, the system stores the earliest date from which the master data change is valid. This date can be a future date after the last payroll run
    2) The system deletes the date in the Earliest master data change field after successful completion of the payroll run.
    The earliest recalculation date for time evaluation is also queried when master data and time data that is relevant to retroactive accounting is changed.
    For Payroll Controll Record
    Earliest retroactive accounting period
    1) Retroactive accounting in payroll can begin on the start date of this period at the earliest.
    2) If changes relevant for retroactive accounting have been made before this date, the system does not take these into account in either current or future retroactive accounting. However, retroactive accounting is initiated up to this period.
    3) If the earliest personal retroactive accounting date (from IT 0003) differs from the earliest retroactive accounting period, then it will be backdated to the later date.
    Comments:
    1) May be the Time Wage Type Change (related to Payroll) might have triggred the Retro Payroll, and once it retro run happens the "the system delets the date in the Earliest Master Data Change Field", that is why you are unable to find that field with values.
    2) Check the "Earliest Retroactive Accounting Period" in Control Record (Tcode PA03), so that you will get some idea. why it has happend.
    3) While determining the Retro, the system checks the IT0003, Control Record, it will take the date whichever is backdated date.
    Hope this helps.
    Regards
    Venu

Maybe you are looking for

  • How can I locate my stolen ipad air

    Hi as you can see from the subject box I have had my Ipad stolen in a house burglary, I did not activate the "find my Ipad" as I had only had it a couple of weeks! I have all the relevant numbers to my Ipad. Is there any way that I can find out where

  • Request for PDFs and Links related to Payroll,ESS,MSS

    Hi Everyone, I new to SAP HR.I am intertested in learning Payroll,ESS,MSS. Could someone send me links and PDFs related to SAP HR Payroll,ESS,MSS. Please send the PDFs and links to anlkmarch at rediffmail Thanks in advance, Anil Kumar. Points will be

  • Copying files to WD My Book Created New Volumes I'm unable to find

    I'm relatively new to Mac's, which is my caveat to say that I may have done something that works on a PC but won't work on a Mac. Here's my problem. I create fanvids and like to keep clips and finished videos on My Book,it's why I got it in the first

  • Problems since updated firmware

    I updated the firmware on my Blackberry to 5.0.0.592. I've got the Blackberry 8520 & my carrier is Virgin. Ever since I updated I've had the following problems: - When I change my theme it changes the wallpaper to the default wallpaper of that theme

  • Tracing factor and cost center

    Hi, May I know if I can associate like this. Please advise. 1) SKF quantity is assigned to receiving cost center. Later sender cost center base on the quantity in receiving cost center to apportion out the cost. Activity type quantity is assigned to