Query all Employees Elements without effective date

Hi,
I need to make a query shows a list of employees with their elements without using the effective date,
because when we use the periods and effective dates the suspended assignments will not be shown in the report ....
Also it should not be related to Payroll processing ! simply Employee name or number and what element he has
Ex:
Emp# Element Value
10002 Basic Salary 6200
10002 Housing Allowance 2500
10002 Mobile Allowance 300
10452 Basic Salary 10000
10452 Hou........................ etc
Even if this employee is suspended or not included in the Payroll Process ...
Please Help....
Regards

Hi ,
Thank you for your fast reply ...
I want to report all basic allowances or benefits which is given to each employee while hiring him, for all employees...
I want to report it as fixed values even if it is not processed this month ..
Basic Allowances like:
1. Basic Salary.
2. Housing.
3. Transportation.
4. Food.
5. Mobile.
For example:
John is a new employee joined our Company as a manager, then Our Payroll unit entered his Salary and related elements to be paid monthly !
Now we need to have a report shows all employees with their Allowances, without looking in the payroll run or the assignment status...
Our HR Dept. needs to review all salaries and allowances.
Regards

Similar Messages

  • Isssue when collecting the transport request for a query and its elements

    Dear All,
    When collecting a query and its elements, only the query is getting collected in to the request and not the elements and I an error is getting displayed as You can not use request xxxxx and elements could not be saved. This is in bw 3.5.
    Can anyone suggest?
    Regards,
    Ram

    Hi,
    In the transport connection make sure that all the elements for the query which you need are manually checked.
    Just drop down the menu and see the elements of the query and check if they all are selected or not.
    Here you can also see if the elements are already present in some other TR.
    Just delete all those TR's before creating this new TR.So that these objects are unlocked or it will not added to your new TR niether it will give an error.
    Also make sure that all the elements have same data package and none of the query elements are assigned to temp package or any other package.
    Once you are sure that all the elements are checked and above told issues are corrected then only create the transport and release them.
    Thanks
    Ajeet

  • Element Effective Dates

    Hi Guys.
    I am working in client instance, and came across this issue.
    Employee joined on 10/June/2010, and the Salary Elements were added on 12/June/2010. When I run the payroll, salary is calculated only for 18 days (12th Jun to 30th Jun). So i did rollback the payroll, removed the elements and added back after changing the effective date to 10/Jun/2010. Now the salary is calculating for 21 days, which is right.
    Can anyone please explain me why the application is taking the element effective dates from element entry screen for calculation. Is there any possibility to write Fast Formula with elements Effectives dates from Element Entry Screen.
    Thanks in Advance
    Regards
    Partha

    The element are always calculated fromo element entry screen.
    Moreover, it seems this is an issue of your setup.
    In all implementations all basic element links are standard( for ex Basic, HRA from India perspective) so whenever as a new person is created the basic element( element links with standard flag checkbox checked) will automatically get added as on person's start date.
    You cannot change an element link from Standard to 'non-Standard' but the reverse is possible. If you make the lements as atndard this issue will not occur again for all new employees.
    if the application does not allows you to update the element link from application write a update statement such as :
    BEGIN
    UPDATE apps.pay_element_links_f
    set standard_flag = 'Y'
    where element_link_id = <element_link_of_standard_elements>
    and trunc(sysdate) between effective_start_date and effective_end_date;
    COMMIT;
    END;

  • How to control "To" Effective Date of Element Entry Screen in Assignment.

    hi,
    How do I Control the "To" Effective Date which is defaulted to 13th Apr 2007 in the Element Entry Screen of Assignment .When the screen is date tracked to
    01-APR-2007 and running payroll for the Month of April 2007.
    Navigation
    People--->Enter---->Assignment---->Element Entry
    Ram

    In addition to what Tim Mentioned it can also be depends on what date you attached this element to the employee
    you might have attached this element on 13th Apr 2007 to this particular assignment
    Regards
    Ramesh Kumar S

  • Need sql query for all employees list which are having lessthan maximum salary of manager in same departmnet;

    HI
    I want a sql query i.e., all employees list which are having lessthan maximum salary of manager in same departmnet;
    my table is like this
    employees
    EMPLOYEE_ID                               NOT NULL NUMBER(6)
    FIRST_NAME                                                   VARCHAR2(20)
    LAST_NAME                                 NOT NULL    VARCHAR2(25)
    EMAIL                                     NOT NULL          VARCHAR2(25)
    PHONE_NUMBER                                              VARCHAR2(20)
    HIRE_DATE                                 NOT NULL        DATE
    JOB_ID                                    NOT NULL           VARCHAR2(10)
    SALARY                                                           NUMBER(8,2)
    COMMISSION_PCT                                          NUMBER(2,2)
    MANAGER_ID                                                  NUMBER(6)
    DEPARTMENT_ID                                             NUMBER(4)
    if need the department table
    departments:
    DEPARTMENT_ID                        
    NOT NULL NUMBER(4)
    DEPARTMENT_NAME                      
    NOT NULL VARCHAR2(30)
    MANAGER_ID                                    
    NUMBER(6)
    LOCATION_ID                                   
    NUMBER(4)

    Try this:
    select
       employees.last_name || ', ' || employees.first_name “Employee”,
       employees.salary “Emp Salary”,
       sub.salary “Mgr Salary”,
       employees.department_id  “Department” 
    from
       employees,
       (  select
          mgr.department_id dept,
          max(mgr.salary) salary     
       from
          employees,
          employees mgr      
       where
          employees.mgr = mgr.employee_id      
       group by
          mgr.department_id) sub   
    where
       employees.department_id = sub.dept      
       and employees.salary < sub.salary
    Jeff

  • Outer join with effective date in peoplesoft query

    Hi,
    I'm trying to join two tables using outer join. Both tables are effective dated:
    Dept_Tbl: dept_id, status, effdt
    Tips_Tbl: dept_id, tips_id, effdt
    Not all records in Dept_Tbl are in Tips_Tbl. I need to get all active depts and their most recent tips_id if they have one.
    select a.dept_id, b.tips_id
    from dept_tbl a, tips_tbl b
    where a.status = 'Active'
    and a.effdt =
    (select max(a_ed.effdt) from dept_tbl a_ed
    where a.dept_id = a_ed.dept_id
    and a_ed.effdt <= SYSDATE)
    and b.dept_id(+) = a.dept_id
    and b.effdt =
    (select max(b_ed.effdt) from tips_tbl b_ed
    where b.dept_id = b_ed.dept_id
    and b.tips_id = b_ed.tips_id
    and b_ed.effdt <= SYSDATE)
    The query only returns records that are in both tables.
    Is there a way for outer join to work with effective dates?
    Thanks in advance,
    Reg

    Here is an example of one solution. Note the use of NVL on both sides of the equal sign since both sides could be NULL in the case of the outer join
    with dept_tbl as (select 1 dept_id, SYSDATE effdt FROM DUAL),
         tips_tbl as (select 1 dept_id, NULL effdt FROM DUAL)
    select a.effdt
      from dept_tbl a,
           tips_tbl b
    where b.dept_id(+) = a.dept_id
       and NVL(b.effdt, SYSDATE) = NVL((select max(b_ed.effdt)
                                          from tips_tbl b_ed
                                         where b.dept_id = b_ed.dept_id
                                           and b_ed.effdt <= SYSDATE), SYSDATE);
    EFFDT
    5/7/2007 3:25:00 PM

  • Very Critical: employee effective date issue

    Hi
    I am facing an issue now..
    The HR user have created employees without setting the effective data so about 50 employees are created with the current date as the effective date so it is not date tracked
    Is it possible to change the effective date after the employee is created..please advice this is very critical and it is a show stopper for us now
    Thanks
    Regards
    Ramesh Kumar S

    Hi
    thanks for the response
    Example if my employee is created on 12-Apr-2007 but his data of joining is 1-jan-2007.
    If i going to set the effective data as hire date then that employee wont be visible for the effective date set.
    If i see in the screen now latest update date is also grayed out so i am not able to make any changes to that date
    I already tried out the option of changing the date through the Examine and i tried to do some testing also as of now it seems to be fine i fear will there be any issues in the latter stage due to changing the date in this way
    Regards
    Ramesh Kumar S

  • I have Elements 11. Sometimes, if I edit a photo in Elements Editor, the date gets changed to the current date. Why does that happen? It doesn't happen all the time, so I can't isolate the cause. Any ideas?

    I have Elements 11. Sometimes, if I edit a photo in Elements Editor, the date gets changed to the current date. Why does that happen? It doesn't happen all the time, so I can't isolate the cause. Any ideas?

    I have Elements 11. Sometimes, if I edit a photo in Elements Editor, the date gets changed to the current date. Why does that happen? It doesn't happen all the time, so I can't isolate the cause. Any ideas?

  • In mdx how to get max date for all employees is it posible shall we use group by in mdx

    in mdx how to get max date for all employees is it posible shall we use group by in mdx
    example
    empno  ename date
    1         hari        12-01-1982
    1         hari        13-06-2000
    by using above data i want to get max data

    Hi Hari3109,
    According to your description, you want to get the max date for the employees, right?
    In your scenario, do you want to get the max date for all the employees or for each employee? In MDX, we have the Max function to achieve your requirement. You can refer to Naveen's link or the link below to see the details.
    http://www.sqldbpros.com/2013/08/get-the-max-date-from-a-cube-using-mdx/
    If this is not what you want, please provide us more information about the structure of you cube, so that we can make further analysis.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Copy All Employee Master Data

    Dear All,
    In Human Recource module I have a list of Employees, Now I create new database and want to copy all Employee Master data from old database to new database . Please give me the solution for this problem.
    Thanks & Regards

    HI All,
    Option
    1) you may write a querry and get desired data what you need for SAP's standard template of DTW and then export that template in the excel and again with the help of DTW you can migrate that in your new database.
    2) select required tables from SQL Server Management which is OHEM and HEM6 copy it and paste in the desired database. But be carefull you have to have knowledge of SQL.
    i still think the second option is quiet easy will take just 10 -15 min.
    Ashish Gupte

  • Disadvantage of 'QUERY ALL RECORDS' set to YES in DATA BLOCK

    Dear all,
    Can any one tell me disadvantage of 'QUERY ALL RECORDS' set to YES in DATA BLOCK. I have made a datablock 'QUERY ALL RECORDS' set to YES becoz of requirement 'restrict duplicate data entry'.For your information
    my datablock is multi record.
    Than You

    What if you have 1,000,000 records in your table and you query all records. Ouch!
    restrict duplicate data entryThat is standard database functionality: primary or unique key on the table.

  • Re  : MSS  Portal role for Non Employee to View/Edit all Employees data

    Hi All,
    Is there a role I can assign so that a manager who log into portal, can view all the employees and just not the directly reporting employee.
    This user is outside the SAP and should be able to see and modify all employees data in the entire company under diffrent org units
    Any hints on doiing this would be appreciated
    I understand if I assign MSS Manager role to a manager he can just view all the employess who report to him and not all the employees.
    Thanks,
    Sarvan

    Hi Sarvan,
    it's just a question of customizing in the HCM Backend. In the portal you can use the standard MSS role coming with the Business Package (or a changed copy). But, the person in question here has to have a user in the backend and an according position in the organizational structure.
    take a look at help.sap.com:
    http://help.sap.com/saphelp_erp2005/helpdata/en/29/d7844205625551e10000000a1550b0/frameset.htm
    see: "Object and Data Provider"
    regards
    Andreas

  • The target element was not found, so all intermediate elements were ignored. As a result, an incorrect element that matches the target element's search properties can be found. Verify that all intermediate elements in Query Id have valid and unique search

    Hi All,
    I am using CUIT to write automated UI test cases. I have a dialog containing few edit control and buttons. 
    While running the test it is able to click the button.
    However I am getting few warnings as below.
    The target element "Technology Name: 'MSAA';Search Configuration: 'VisibleOnly'; Search Properties - ControlType : 'Button',Name : 'OK'" was not found, so all intermediate elements were ignored. As a result, an incorrect element that matches the target
    element's search properties can be found. Verify that all intermediate elements in Query Id have valid and unique search properties.
    Technology Name: 'MSAA'
    Search Configuration: 'VisibleOnly'
    Search Properties - 
         ControlType : 'Button'
         Name : 'OK'
    Mouse button : 'Left'
    I need to resolve these warning. Can anybody suggest me how to resolve these warnings.

    Hi sanjay_t,
    From these warning message as you provide, I doubt that maybe the button control did not be found successfully by the searchproperties when you playback the Coded UI test.
    So I suggest you can try to use DrawHighlight Method  to check if the button control
    is found before you perform actions on the button target control.
    (2)I suggest you can try to use
    FindMatchingControls Method on the button control to check if there are more than one control which matches the specified searchproperties and filterproperties.
    In addition, as you said that you are using CUIT to write automated UI test. it means that you record the UI action by handing code, am I right?
    If yes, I suggest that you can create a simple coded UI test through recording actions using Coded UI Test Builder. Then
    generate the code and then try to playback. If playback succeeds, then cross check the properties from UIMap.Designer.cs file. You can reference the code about entering values in the text edit in the UIMap.Designer.cs file to write
    your own code.
    For more information about how to find a control for coded UI test, I suggest you can refer the following blog.
    http://blogs.msdn.com/b/balagans/archive/2009/12/28/9941582.aspx
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Need report or query of all employees Driver's License information

    We validate all employee Driver's Licenses yearly. We are currently storing information in Documents of Record-Driving License.
    If I "Search Documents of Record" only 5 records are returned per screen.
    If I use "Documents of Record" and search on Employees, Lastname=% and a date, I can get 10 records per screen.
    Is there an easy to export all of these records?
    Or, is there a report already available that I have not found?
    What is the easiest way to get a simple listing of current employees that have Driving License records?

    One workaround is try to personalize the no. of rows per page to say 2500 using personalization and see whether you have all the rows in the same page. It's just a workaround and Creating a report would be good idea, since you are doing it every year.

  • Need to set effective date on employee self service process

    Help! I need the following:
    My customer wants the employee to be able to change their own hours. If I assign this function in selfservice to the employees, I get no effective date page. And we do need this page.
    Does anyone have a solution how to bring up the effective date page in selfservice for employees?
    Corné

    1. Check personlization
    2. check this parameter &pEffective Date= attached to self service function.
    Thanks

Maybe you are looking for