Regarding hiring dates

hi all,
Iam doing implimentation project, which date i should use as hiring date.
regards,
pavana

hi ,
We cannot change the joining dates of the employee. (right)
Now plz ask your client what is the starting date of the company and maintain the same in control record until you complete your uploading.
than change your date of your control record to sap implementation date.
Reward Points if this help you.
Raghav.

Similar Messages

  • LSMW issue while uploading the hiring data

    Dear Experts,
    I am trying to create LSMW  to upload hiring data for IT0000, IT0001, IT0002. Initially i tried with PA40 recording, but it was not selecting my respective action type. Then i tried with PA30 with external no. range, but still its not selecting action infotype.
    I used the following source file data for recording, please check and advise anything if i need to modify
    PERNR     N     008
    SELEC_01     C     001
    TIMR6     C     001
    CHOIC     C     035
    SUBTY     C     004
    BEGDA     DDMMYY     010
    ENDDA     DDMMYY     010
    MASSN     C     002
    MASSG     C     002
    PLANS     N     008
    WERKS     C     004
    PERSG     C     001
    PERSK     C     002
    BTRTL     C     004
    ABKRS     C     002
    VDSK1     C     014
    NACHN     C     040
    VORNA     C     040
    TITEL     C     015
    GESCH     C     001
    SPRSL     C     002
    GBDAT     DDMMYY     010
    FATXT     C     006
    GBORT     C     040
    GBLND     C     003
    GBDEP     C     003
    KITXT     C     004
    NATIO     C     003
    Regards
    Tan

    Hi,
    I am running it on foreground with external no. range for two employees. My main issue is its not selecting the action infotype from PA30 screen only.
    How to test in display mode...please suggest
    Regards
    Tan

  • New employee with wrong hiring date - how to change?

    Hi,
    I've entered a new employee with a wrong hiring date and I don't know how to change it. Some employee date are easily changeable not the hiring date!?

    Hi Marko.
    Go to t-code PA30, enter the personnel number of the employee whom you have hired.
    At the top in the menu bar, select "UTILITIES" - "Change entry/leaving date".
    It will take you to the screen - "Change Actions" - Change " Start date".
    This will correct the hiring date of the employee.
    Reward points, if helpful.
    Regards,
    Reema

  • EMPLOYEE HIRING DATA

    Hi friends,
    How can we change employee hiring date (Initial hiring date). I mean if I want to set the hiring date to back. Please suggest.
    Regards
    Mohan

    u can use PA41 also and PA40 also
    There are Three Scenarios when you may need to change hiring date:
    1) After payroll is run - when hiring date is before actual Hiring date.
    2) After payroll is run when hiring date is after actual Hiring Date.
    3) Before the payroll is run.
    1) PA30 -- Copy actions infotype - action type - incorrect entry -- save and come out PA 30 copy actions infotype -- action type - correct entry - now correct your entries, save your date is changed.
    2) PA30 - Utilities - change payroll status - delete accounted to feild, save and come out - then again utilities change entry leaving date - corrrect the hiring date - save and come out.
    3) PA30 - Utilities change entry/leaving date change your date and save.
    Edited by: Sikindar on Mar 7, 2009 12:31 PM

  • Employee hiring date change

    hai
    actual hiring date of the employee date is 01.06.2000
    in SAp hiring date it is 0104.2006
    the pay roll has been run for him for the minth of april
    now i want to change the persons hiring date to 01062000
    any suggestions
    regards
    nalla

    Hi Manoj,
    If you have ran the payroll and posted to FI, it is very hard to reconcile. And even more difficlt if the data has been submit to Revenue Dept. or related external org. Please SAP note 41523 for more information.
    If the payroll has not been run yet, you can change the entry date by PA41.
    Actually, most of my project records the joining data in IT0041 - Date Specifications.
    ECTSAKC

  • I wnat to change Hiring Date ( DOJ)

    Hello,
            Payroll is live. salary also posted to FI
    I want to change hiring date (DOJ) three four employees.
    Please Advised
    Regards
    MHPO

    Hi,
    If you have done payroll posting, do the reversal postings, change hire date the employees, then run the live payroll, do the postings.
    To change hire data path:
    Enter the employee in master data, select uitlities menu, select the change.leaving date, then you get the hiring action screen, here you can change the hire date.
    Good luck
    Devi

  • How can I select a radio button in a table regarding the data in the cells?

    Hi everyone
    This is the issue: I need to select the RadioButton which is in a table with data related to transfers in the cells next to it, so I need to select the correct radio regarding the data next to it.
    This is the whole process: First I go to the Add Recurring Transfer section and select the parameters of the transfer (Accounts, date, amount, months etc), then with VB code I capture those parameters from the page and store them into Global variables for further usage on my E-tester script.
    Right after that I need to select the radiobutton regarding the data of the transfer that I already created in order to delete it or modify it (Please see Attachment selectradio1.jpg)
    So How can I move along the table and compare each cell with the variables that I created with the transfer information, so when I finish comparing a row cell by cell and if all the comparison match well in that row, I could select the radiobutton of the row.
    Note: Second Attachment selectradio2.jpg shows the source code of the table...If you need more info please let me know
    Could you please help me with this problem?? I'm Kind of frustrated with this issue jejeje

    Here is an example. I uploaded mock html so that you can actually try this code. I think this does exactly what you are asking.
    Private Sub RSWVBAPage_afterPlay()
    Dim tbl As HTMLTable
    Dim tblRow As HTMLTableRow
    Dim tblCell As HTMLTableCell
    Dim strValue As String
    Dim rButton As HTMLInputElement
    ' ******** This would be your global variable. I put this so that values are seperated by a semicolin you can use what ever format works for you.
    strValue = "03/22/2008;03/22/2008;*************1977;*************1977;$25.25;Jan, Jun, Jul, Dec"
    ' Strip out the ; for inner text comparison
    strValue = Replace(strValue, ";", "")
    ' This will get the table but can be modifoed to be more specific
    Set tbl = RSWApp.om.FindElement(, "TABLE")
    ' This loops through all the rows in the table until a match to the strValue is found
    ' then clicks the radio button. Findelements allows you to specify a root element
    ' once the correct root row is found, FindElemets can get the correct radio button
    For Each tblRow In tbl.rows
      If tblRow.innerText = strValue Then
        Set rButton = RSWApp.om.FindElement("account", "INPUT", "NAME", , , tblRow)
         rButton.click
       End If
    Next
    End Sub
    I also uploaded the script I created. You should be able to run it and see how it works.
    This should get you going.

  • Query regarding the data type for fetcing records from multiple ODS tables

    hey guys;
    i have a query regarding the data type for fetcing records from multiple ODS tables.
    if i have 2 table with a same column name then in the datatype under parent row node i cant add 2 nodes with the same name.
    can any one help with some suggestion.

    Hi Mudit,
    One option would be to go as mentioned by Padamja , prefxing the table name to the column name or another would be to use the AS keyoword in your SQL statement.
    AS is used to rename the column name when data is being selected from your DB.
    So, the query  Select ename as empname from emptable will return the data with column name as empname.
    Regards,
    Bhavesh

  • Regarding baseline date

    i want to show the base line date is unchangeble.how can i do that , for the base line date where can i supress.one of our friends told me regarding baseline date, you can supress by selecting FSG, or validations and parameter ID.
    but i have tried the above scenarios , it is not showing  any field in account groups,postingkeys and field status groups. and in the validations also it is not showing any baseline date. and in the parameter id it is not showing any parameter id for the baselind date.if i supress user cannot change that date.
    please help me

    Reddy,
    Follow the menu path for validation
    Spro-FA-GLA-Business Transactions-General Ledger posing-make check and document settings-validation for accounting documents.
    In this you can select line items and in prerequisite step you can select Baseline Date, which is in almost down in the column, give the baseline date table and give the condition as you require.  Make active callup point.
    i hope it will work.
    If it is useful award points.
    sd/-
    Sreenivasulu.P

  • Question regarding Polling data from database using DB Adapters in BPEL

    Hi,
    I have the following question regarding Polling data from database using DB Adapters in BPEL -
    If I am selecting data from multiple tables/view to ultimately generate hierarchical xml document, is there a way that I specify polling all of these tables/views. Is polling limited only to one table/view?
    Thanks
    Ravi

    Hi Ravi,
    your question seems to have been answered for the question of polling a set of tables with one as the root, and getting back a hierarchical xml representing multiple related tables.
    However you can also poll for changes to both the root table and its related tables. Not sure if this was your question or the one already answered. If the former please check out the sample
    bpel/samples/tutorials/122.DBAdapter/advanced/polling/PollingForChildUpdates
    Thanks
    Steve

  • Regarding Posting Date in IDOC for Intercompany Invoice

    Hi,
    We have priority issue regarding posting date in IDOC. When we create Intercompany invoice, billing date in intercompany is Actual GI date of delivery document and also Invoice posted with Actual GI date only. But, in IDOC, Posting date is appearing as Planned GI date of delivery document.
    Actual GI date and Billing date and Posting date in IDOC should be same., but, posting date in IDOC is appearing as Planned GI date of delivery doc.
    Kindly help in finding out the root cause of, why posting date in IDOC is not appearing as Billing date and appearing as Planned GI date of Delivery document. This issue is happening from past one month for Intercompany invoice, previously posting date in IDOC used to appear as Billing date only.
    Thanks & Regards,
    Jai Prabhu.

    Hi Jai,
    Are you using standard message type INVOIC ?
    If so check SEGMENT E1EDK02 for date field
    and also check if there is no code put to overwrite the date
    you can check the code in Function module  "IDOC_OUTPUT_INVOIC"
    thanks
    santosh

  • Regarding genric data source

    hi guyz,
         i have some doubts regarding generic data source for the following qeastion.
       1).what is ALE pointer(ALE delta)?.in which senario we use this?.can u explain me with one realtime senario so that i can understand easily.
       2).what is SLA? explain with one senario.
       3).when we use these t-codes: RSMO,SM50 in process chain.

    1. ALE is Application Link Enabling (ALE)
    It is the set of tools, programs, and data definitions that provides the mechanism for distributing SAP functionality and data across multiple systems. ALE enables the construction and operation of distributed applications.
    Its purpose was to overcome the limitations of a single SAP system. A single SAP system that runs on top of one database often does not fulfill the needs of larger corporations, either from a business or a technical perspective.ALE allows the implementation of loosely coupled SAP systems; each of the SAP systems has its own database and is essentially independent from the other systems. ALE allows us to distribute data between different systems and different business processes.
    ALE enables you to transfer data(master/transactional data) from an SAP system to SAP/Non-SAP system you can use ALE.This done using IDOCs.
    ALE can be divided into
    Output Process: Extracting data from database and putting it in the IDOC.
    Communication Process: Which involves transferring the IDOC to the target system.
    Inbound Process: Posting the IDOC data into the tables of the receiver system.
    2. SLA is service level agreement, what you need on this ?? Its an agreement betn client and service provider regarding the service request and their resolution. Like P! issue should be solved in 1 hr , P2 issue 3 hr..something like that, varies from client to client
    3. RSMO is used to monitor the data load in BW. You have several options to restrict your criteria to monitor load.
    In SM37 if you goto the job and double click on that, it brings you to another screen with some details for the job. IN this screen if you hit the job details button in the resulting screen, it'll show you a PID number and an executing server number. With this combination, you can check the job in SM50.
    Assign Points if helpfull.
    Thanks
    Tripple k

  • Regarding PA data upload

    Hi Experts,
    I just wanted to have a discussion regarding PA data upload.
    What we feel is that, it should be ok if we go with BDC for each of the infotrype.
    hr_infotype_operation can be used but  again it  also use bdcdata only so it should not  be a big performmance issue.
    Both approach can be used as per the data upload and its' going to be one time only.
    Can anyone of you suggest something regarding the same.
    I have searched the forum and i got responses like bdc can be used ( some might sue FM also).
    Can i have some comments from you guys regardimng the same ?

    Hi Rinki;
    Try LSMW recording method for data upload in PA Infotype.
    Regards

  • Hiring Date and Go live date

    Hi,
    My system is going live on 01.04.2009. Persons hiring date is 01.06.2004.
    In the Action IT I will give hiring date or Go Live date.

    Hi,
    Give him the date that he actually goes onto the system and then you maintain all his other dates like Joining date and leave cycle date in Infotype 0041 (Date Specifications)
    M
    Edited by: Mark Hall on Jun 11, 2009 1:58 PM

  • Regarding master data loading for different source systems

    Hi Friends,
    I have an issue regarding master data loading.
    we have two source systems one is 4.6c and another is ecc 6.0.
    First i am loading the master data from 4.6c to bi7.0.
    Now this 4.6c is upgraded to ecc6.0.
    *In 4.6c and ecc6.0c master data is changing.
    After some time there is no 4.6c, only ecc 6.0 is there.
    Now if i load master data from ecc6.0 to bi7.0 what will happen.
    Is it possible ?
    Could you please tell me?
    Regards,
    ramnaresh.

    Hi ramnaresh porana,
    Yes, its possible. You can load data from ECC.
    Data will not change, may be you may get more fields in datasource at r/3 side, but BW/BI side no change in mappings structures are same. So data also same.
    You need to take care of Delta's before and after upgrade.
    Hope it Helps
    Srini

Maybe you are looking for

  • Inserting new line in script output based on character count

    Dear All, I want to print amount in words on cheque. Condition is if on the first line the character count reaches 40 the rest words should be printed in next line. Also amount in word should be printed  on the same line.  I have the internal table v

  • Cost of subcontracting

    dear all:   I have a problem about subcontracting need help. before, these is no any material need subcontracting in our company,but now our company will produce new product whick its a component material need  subcontracting. We will:     1.we will

  • Filter unassigned values in report output

    Hi Friends, I have a requirement as explained below. There is a variable for Document Number with Select Options in the selection screen. There are some documents which come as unassigned in BW, When I execute the query leaving this document no field

  • JDev 11g 111 with BPEL designer - cant connect to BPA Server

    I have just installed the latest 11g JDeveloper and added the BPEL designer. I notice that in the composite designer I can connect to or create a connection to the BPA server. I have BPA designer 10.1.3.3...which I used with JDeveloper 10.1.3.1. This

  • Having a hard time logging into Lion at my office

    Hi folks, I need some help here... When I used to use Snow Leopard at work, I used to have a hard time logging into my iMac as a network user. If I logged in as an admin, the problem would go away. Knowing this, I made gave my network account admin p