PI Export(PI_INRUN) - picking up few extra employees who are not suppose to

Hi,
PI Export - ADDL_PAY_DATA Data Export through PI Export.
I am exporting ADDL_PAY_DATA Data through PI Export Process for earning codes defined in Definition Table.
PI Process picking up few extra employees in export file who are not suppose to be in export file.
Export File has following fields.
Company - From Custom View based on JOB
Branch - From Custom View based on JOB
Department (RC) - From Custom View based on JOB
Empl ID - From ADDL_PAY_DATA
REGALLOW - From ADDL_PAY_DATA for Earning Code
AUTOALLOW - From ADDL_PAY_DATA for Earning Code
LIEU BEN - From ADDL_PAY_DATA for Earning Code
NON TAX - From ADDL_PAY_DATA for Earning Code
Thanks in advance for your help.
Regards,
Shanti Nagulapalli.

bnjr86 wrote:  There have been times when I've walked in there, that I really don't want to deal with VZW anymore and just take my business elsewhere.
I  wonder if another provider would really be much different?  Read some of the other carrier forums - seems to be the same story everywhere.
I'm not disagreeing with you - I've found that I am usually more informed about Verizon policies and procedures than some of the reps in our local store.

Similar Messages

  • Some employees designations are not matching  with their actual designation

    Hi All,
    While downloading to excel sheet some employees designations are not matching  with their actual designations maintained in infotye 0001.
    Designations should match with infotype 0001.
    How to rectifty this issue.
    Let me know...
    Regards,
    Sita

    Hi
    Looks like you are dowloading the value from a field which does not contain the value you see in the infotype screen
    In infotypr 0001 place your cursor in the designation field.
    Press F1
    See the name of the field & the table.
    Have a look at the table using se16 and confirm what you see in the field is what you see in the infotype screen.
    If it is same see in your code if you are using correct field.
    If it is not the same trace in which table and field the value is stored and code your program to download from there.
    Check in Tables HRP1000 and PA0001 and you should get your values
    regards
    Pravin

  • How to find employees who are missing a particular infotype?

    I am trying to find people who are missing IT 0023 (Previous employer) and IT 0094 (Residence status). How do I find the employees who are missing infotypes. I can easily find people with those infotypes.
    Thanks
    Manish

    Hi
    will give you a hint using data analysis perspective, hope it might be useful for you.
    in data analysis you can get total number of employees (personnel numbers) who have certain characteristics (active employee for example) from PA0000 and then you can compare vs number of employees (personnel numbers) in the record infotypes you want to check.
    download records from PA0023 an PA0094. you may process the data using pivot table. then you can compare which personnel number does not have record in related infotypes.
    use tcode SE16 Data Browser or use sap query
    Edited by: dhenny  muliawaty on Mar 15, 2011 4:52 PM

  • Block the processing of payroll for employees who do not have IT0185 ST01

    Hi People.
    I have a client requirement that payroll should be processed only for those persons for whom ID number (IT0185-ST01) is available. I am trying to do it for Portugal Payroll.
    I activated P0185 function in PE04 for Portugal and created 2 rules:
    *ZH01 Verifica existência do IT0185*
    *TABLEP0185 Ler campos de tabela*
    *" VARGBSUBTY Campo tab.VVVVV ArgV*
    *" 01*
    *NUM=1 Definir*
    *ADDWT&0185 VAR tab.variáveis*
    and...
    *ZH02 Verifica existência do IT0185 Subtipo 01*
    *NUM=& 0185 Definir*
    *" NUM?0 Comparação*
    *ZERO=&0185 Definir VVVV p/zero*
    *" =*
    *ERROR Cancel.processamento*
    And I put the rules in sequence in the scheme. But the function P0185 doesn't accept rules.
    How do I block the processing of payroll for employees who do not have infotype 0185 subtype 01?
    Thanks,
    Helio Rabello

    if you are not sure about the linking i suggest to just show all roles associated to all the employees,
    group by employee
    create true/false formula for the role_ids  where ONLY your 20 role is TRUE per employee
    then exclude all false - that should give you only the employees that are missing that particular role.

  • How to list those employees who do not have a certain pay rate type set up

    Hi,
    I'm trying to create a report that lists all employees who DO NOT have a certain pay rate role type set up.  An employee can have multiple pay rate roles - for example: chargeable miles, non-chargeable miles, subsistence, etc.
    I want to identify all those employees who do not have, say, subsistence yet set up.
    I joined the employee table to the employee rates table. The employee_role_id=20 is the particular rate role value that I am interested in. I want to only list those employees who do not have rate of role type 20 set up. That way I can go and set one up for these employees.  At present, I am using selection criteria where employee_role_id=20. This brings back only those employees that have an employee_role_id of 20 setup. I would like to do the inverse but setting <>20 only screens out those roles with value 20 and displays all of the rest of the pay role values for each employee.
    Any help is appreciated.
    thx!
    Mark

    if you are not sure about the linking i suggest to just show all roles associated to all the employees,
    group by employee
    create true/false formula for the role_ids  where ONLY your 20 role is TRUE per employee
    then exclude all false - that should give you only the employees that are missing that particular role.

  • Employees who are 21 years of age or over AND work 35 hours or more a week

    Hi,
    I need to extract the employee details who are 21 years of age or over AND work 35 hours or more a week.
    Where can i find the weekly working hours?

    Thanks Yuvraj....
    I queried as below to find the working hours..(in my instance HXT_TIMECARDS table is null)
    SELECT COUNT (ppf2.person_id)
    FROM per_all_people_f ppf2,
    per_all_assignments_f paaf2,
    pay_all_payrolls_f pay2
    WHERE TRUNC ((SYSDATE - (ppf2.date_of_birth)) / 365) > 21
    AND ppf2.business_group_id = 1646
    AND ppf2.person_id = paaf2.person_id
    AND ppf2.business_group_id = paaf2.business_group_id
    AND paaf2.frequency = 'W'
    AND paaf2.normal_hours > 35
    AND TRUNC (SYSDATE) BETWEEN ppf2.effective_start_date
    AND ppf2.effective_end_date
    AND TRUNC (SYSDATE) BETWEEN paaf2.effective_start_date
    AND paaf2.effective_end_date
    AND ppf2.business_group_id = pay2.business_group_id
    AND pay2.payroll_id = paaf2.payroll_id
    AND TO_DATE (:p_date, 'DD_MON-YYYY') BETWEEN pay2.effective_start_date
    AND pay2.effective_end_date
    Actually my business requirement z to find count of employees who are 21 years of age or over AND work 35 hours or more a week and i need to use d parameter 'reporting dtae' Reporting date is used to determine the payroll period date..
    so i passed d parameter b/w effe.strtdate nd eff.end dt of payroll table is that right?
    Thanks,
    Vijay

  • Failed to export the report \n Crosstabs and OLAP grids are not supported in this export format

    Post Author: ajaymoudgil
    CA Forum: Other
    We are using Crystal Reports (Product Version: 11.0.0.1282). We encountered with a problem while we are going to export report in CSV (Separated Text). The report Contained Cross-Tab. Its Shows the Error Message u201CFailed to export the report \n Crosstabs and OLAP grids are not supported in this export formatu201D. Please find the attachment with this mail having screen shot for the same.
    We were able to export CSV (Separated Text) Format in Crystal Report Version 7 for the same report. Please let us know any way(s) so that we will successfully export the report in CSV (Separated Text) format in Crystal Reports version 11.
    Thanks,
    Ajay Sharma

    Hi Ludek ,
    Thanks for reply,
    I download CR2008 Redistribale & Installed it.
    But still I am getting following  error on client PC;
    at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)
       at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)
       at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)
       at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToDisk(ExportFormatType formatType, String fileName)
    Please  give  solution.
    Thanks

  • Can employees who are only Approvers have a Blank Cost Center?If Yes..please read

    Can employees who are only Approvers have a Blank Cost Center?
    If Yes, how do we populate the dummy value in T&E if it's not part of our Master Data Cost Center feed.
    Regards
    Sunder

    Hi Sunder,
    The BAdI that needs to be implemented is OTM_EMPL_ORG_ASSIGNMENT, provided you use the new IDOC ODT_EMPL and report OTM_TRIGGER_EMPL_REPL_CE. (For the old IDOC there is a similar BAdI HROTM_EMPL_ORGANIZATION_FILTER.)
    If you already implemented the BAdI in ERP to add the dummy cost center assignment to the employee you just need to create the dummy cost center in CfTE.
    This can be done under
         Master Data Replication -> Manual Replication -> Cost Centers
    There you just can create a file and fill it manually directly within the transaction. Then it needs to be processes and afterwards you should go to the Import Monitor for Cost Centers and Click on button Replicate All. If you filled everything correctly after some minutes the dummy cost center should be created. You can control this under Display -> Cost Centers in the adminstrator cockpit.
    Best regards, Reinhard

  • I have 10.0.3, why can I no longer export to vimeo?  also, my quicktime movies are not compressed, they export as the whole file.

    I have 10.0.3, why can I no longer export to vimeo?  also, my quicktime movies are not compressed, they export as the whole file.  this didn't happen before the update.  do i have to now get compressor?  help.

    You should buy Compressor it never fails. It is a must have. I have given up using this buggy Share function and use Compressor all the time.

  • Help needed I updated my ipad2 with iOS5 but few of my dashbaords are not working now can any one let me know how to downgrade the OS

    Help needed I updated my ipad2 with iOS5 but few of my dashbaords (HTML5) are not working now ,can any one let me know how to downgrade the OS as we have a meeting coming up .. its urgent

    Downgrading the iOS is not supported. If you are using Safari this try clearing its cache via Settings > Safari.
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Best practice on how to handle employees who do not have a last name?

    We are a Canadian based company with some International employees. We have recently begun to enter the International employees into the HR module. This has led to some problems for employees from India who do not have both a first name and a last name as many of our downstream systems require both names.
    I'm wondering what other companies with International employees have done in this circumstance. Can someone recommend a Best Practice?  We want to ensure that whatever we do is not offensive to anyone.
    Thanks.

    Dear,
    Indian names vary from region to region. Sometimes Names also influence by religion and caste. Different languages spoken in India in different regions. This variety makes confusing differences in names and their styles.
    Now come to the point, since you are international company, while entering the names of your international employees - i would like to suggest to consider the employees names as mentioned in their passport (If they hold valid passport). In case of non availability of passports consider their bank information or any other available information so that they didnt face any further problems like visa, banking transactions etc etc.
    1. Maddepalli Venkata Ramana Rao
    In this case Maddepalli will be his surname, Venkata Ramana can be his first name and Rao can be mentioned as Second / last name.
    2. Hardev Singh
    In this case you didnt find a surname... Singh will be considered as Surname or his ethinic recognition. In this case you can enter Hardev as First name and Singh as last name.
    Make some entry fields are optional depending on the situation. Take help of an Indian origin employees help exists in your office.
    Regards,
    Syed Hussain.

  • Few folders in Business area not visible in Desktop edition

    I am using Discoverer 4 on Windows NT. I created a new business area using Administrative edition. When I used Desktop edition to create a new workbook, in Step 2, when I selected the new business area I created, the folders (tables) in this business area are listed in the Available list. A few of the folders that are shown in the Administrative edition are not shown in the Available List in the Desktop edition. Are there specific conditions for a folder to be listed in the Available list of the Desktop edition?
    Please reply to [email protected]
    Thanks.

    I had a similar problem. What you might want to try is to Refresh the business area in the Admin edition. That should work.
    I am using Discoverer 4 on Windows NT. I created a new business area using Administrative edition. When I used Desktop edition to create a new workbook, in Step 2, when I selected the new business area I created, the folders (tables) in this business area are listed in the Available list. A few of the folders that are shown in the Administrative edition are not shown in the Available List in the Desktop edition. Are there specific conditions for a folder to be listed in the Available list of the Desktop edition?
    Please reply to [email protected]
    Thanks.

  • ABAP Query to display top 5 employees who are having highest salary

    How will you write a query in abap to display top 5 emplyeee records who are having Highest Salary Among all the employees.
    Please Reply...

    Hi Kush,
    Before writing any Database Query, always keep 2 important thumb rules in your mind :
    1. Keep the number of data base access small
    2. Keep the amount of data transfer small.
    As you mentioned the Database Table has only 100 records, you can locally buffer the Table. So, make a local buffering and then you can sort the table based on the salary.
    Select *
      from Table_name
    into table gt_itab.
    Sort gt_itab by salary descending.
    Now you can read the  entries one after the another based on the index.
    Have a look at the following code for an efficient performance feature. Goto SE38 and have a look at the ABAP Examples.
    demo_select_some_columns. Package : SABAPDEMOS
    Hope this will help.
    Thanks,
    Samantak.

  • How to return employees who did not register?

    Hi All.
    I've tow tables, employees (for data of employees) and emp_comm(emp_no number, comm_date date) for registering coming
    emp_no in emp_comm table is a foreign key references to the primary one emp_no in employees.
    Now I tried to use this code in a report to return all employees who didn't register between tow dates (using user parameters):
    select a.FINANCIAL_NO ,  a.emp_full_name, b.xdate from
    employees a,
    (select to_date(:P_FROM,'dd/mm/yyyy') + (level-1) xdate  
    from dual
    connect by level <= to_date(:P_TO,'dd/mm/yyyy')-to_date(:P_FROM,'dd/mm/yyyy')+1
    ) b
    where (A.EMP_NO, b.xdate) not in (select EMP_NO, TO_DATE(COMM_DATE, 'DD/MM/YYYY') from EMP_COMM)
    But the previous code returns all the employees not only who not register! Why? and How to solve?
    Thank you
    Note: I'm using DB 10g, Reports 6i
    Out Of Stock

    Hello,
    in your query
    FROM    employees a
          ,(SELECT TO_DATE(:p_from,'dd/mm/yyyy') + (LEVEL - 1) xdate
            FROM    dual
            CONNECT BY LEVEL <= TO_DATE(:p_to,'dd/mm/yyyy') - TO_DATE(:p_from,'dd/mm/yyyy') + 1
            ) b
    gives a cartesian product - every employee with every date
    Since comm_date matches only a single date in b you get a NOT IN for every other date.
    Try
    SELECT  a.financial_no
          ,a.emp_full_name
    FROM    employees a
    WHERE  a.comm_date NOT BETWEEN TO_DATE(:p_from,'dd/mm/yyyy')
                AND TO_DATE(:p_to,'dd/mm/yyyy')
    What do you need b.xdate for in your example?
    BTW: Isn't comm_date a date column? TO_DATE on a date column is wrong, it might give you wrong results because it will implicitly converted to TO_DATE(TO_CHAR(comm_date),'dd/mm/yyyy') where the TO_CHAR uses the default date format.
    Regards
    Marcus

  • Exported photos from Lightroom 4 to my Iphoto are not the edited.

    Hi !
    I',m in real trouble here. I've just edited my recent vacation photos to Lightroom and exported to my computer. Looking at the pictures i've noticed that are the original, not the edited versions. Decided to do it all again, but took the wrong decision of deleting my files in my computer. Started all over again, exported the files but same results, the edited photos were not exported. Any advice of what to do? I'm really desperate. Thanks for any advice.
    Gilberto

    Normally you copy photos from the camera card to a folder on your hard drive or external hard drive.
    If an external drive is not connected to the computer you see ! on the thumbnails.

Maybe you are looking for