Salary Detail Report

Hi All
During testing and implementation, how can we test the salary details of all employees? Online payslip and SOE is not practical as there are more than 1000 employees. I can view the results using custom package.
Is there any seeded report in HRMS which can be used during testing and development to check the salary details of the employees?
Regards
Rahman

for a shadow run, we often start with a comparison of the net amounts.

Similar Messages

  • Employee salary details report

    dear abaper ,
                         please send a HR report in which employee salary details are given.
                                                           Thank you sir.
    Moderator Message: Warned many times. UserID sent for deletion.
    Edited by: kishan P on Dec 23, 2011 1:42 PM

    Hi,
    1.) Check the RT , generate the WT reporter for the IN period view
    2.) Run the simulation document only for this employee
    3.) If the RT exist for the current month the posting document will be created
    4.) You might be making some error in the selection screen.just run only for this employee
    Regards
    Hemant V. Mahale

  • Salary details report

    Hi Experts
                   My client asking the employee details report only with His/her personnel no, DOB, Basic pay... What is the T.code plz help me experts i am new to sap hr

    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=30083
    You must first create an infoset, which contains field groups and field for infotypes - this is done in tcode SQ02.
    After you have generated, go to tcode PQAH and select fields for selections and output as you wish.
    Check the link for further info.

  • Query for Employee Salary Details

    Hi,
    I have requirement like to generate pay slip using XML Reports. I am unable to get Salary details in my query. How I will get the Salary details (All Element Values), what are all the effected tables.
    Thanks
    Madhu..

    You get alternatively use the pay_balance_pkg.get_value(<pAssignmentActionId>,<definedbalanceid>) to get the Net Payments values
    where pAssignmentActionId is Assignment Action id of Payroll Run.
    definedbalanceid is Defined Balance Id of <TOTAL_PAY>ASGPTD
    <TOTAL_PAY> Can be found from Balance screen whose "Use For Remuneration" flag is checked.

  • Details report for the retropay by element process

    I have ran retropay by element and i would like to create a detail report that will show me all the entries for a specific retropay element.
    For example i have Basic salary and the retro element for this is Basic Salary Arrears
    When the retropay by element process runs from 01-jan-2010 to 01-jun-2010, I am getting 5 Basic Salary Arrears elements attached to the employee on the element entries window and when i click on the Entry values button i can see Pay Value for each Basic Salary Arrears element the difference is only on the Original Date Earned.
    It appears as follows:
    Basic Salary Arrears
    Pay Value= 142.95
    Original Date Earned=31-JAN-2010
    Basic Salary Arrears
    Pay Value= 142.95
    Original Date Earned=28-FEB-2010
    Basic Salary Arrears
    Pay Value= 142.95
    Original Date Earned=31-MAR-2010
    Basic Salary Arrears
    Pay Value= 142.95
    Original Date Earned=30-APR-2010
    Basic Salary Arrears
    Pay Value= 142.95
    Original Date Earned=31-MAY-2010
    Now i want to create a detail report for all these elements based on the Original Date Earned so that i am able to know for how many months of Basic Salary Arrears has been paid to all staff.
    Please help me!

    When i go and view the message in View >Payroll Process Results window. I can see the following error:
    The element RETRO_OVERTIME65 being retropaid must have a link effective at the date of the RetroPay (Assignment Number 8842)
    Please note RETRO_OVERTIME65 is a Non-reccuring element and i have included it while defining my Element Set.
    But this element is not attached in the pay period that i am trying to process my retropay by element run so does that mean that it will throw the following error due to this ?
    The element RETRO_OVERTIME65 being retropaid must have a link effective at the date of the RetroPay (Assignment Number 8842)
    Appreciate all your assistance/advice.
    Edited by: 594647 on Jan 18, 2010 7:35 PM

  • Vendor Excise Details report

    Dear All,
    we required Vendor Excise Details Report,which maintain in J1ID.Like ECC no,Excise renge no,CSt , VAT no ,PAN no ...etc
    Regards,
    Dishant

    Certain vendor excise details(chapter id,ecc no,excise regn) were available in J2I9 along with transactions
    or otherwise develop Z report using J_1I* tables.

  • Master Detail Report for PDF Printing

    Dear All,
           While trying to create a master detail report using Oracle APEX 4.2 and BI Publisher. I tried creating report queries and report layout following the below mentioned steps.
    CREATE TYPE emp_row AS OBJECT (
      EMPNO NUMBER(4),
      ENAME VARCHAR2(10),
      JOB VARCHAR2(9),
      MGR NUMBER(4),
      HIREDATE DATE,
      SAL NUMBER(7,2),
      COMM NUMBER(7,2)
    CREATE TYPE emp_tab AS TABLE OF emp_row;
    CREATE TYPE dept_row AS OBJECT (
      DEPTNO NUMBER(2),
      DNAME VARCHAR2(14),
      LOC VARCHAR2(13),
      EMP_LIST emp_tab
    SELECT SYS_XMLAGG (
      SYS_XMLGEN(
      dept_row(
      d.deptno, d.dname, d.loc,
      CAST(MULTISET(SELECT e.empno, e.ename, e.job, e.mgr, e.hiredate, e.sal, e.comm
      FROM emp e
      WHERE e.deptno = d.deptno) AS emp_tab)
      SYS.XMLGENFORMATtYPE.createFormat('DEPT')
      ) AS "XML_QUERY"
    FROM dept d
    WHERE d.deptno = 10;
    Though the above steps generates xml output while trying to generate in APEX it says unsupported datatype. Tried using DBMS_LOB as well no luck. Any inputs will be quite helpful. Should there be any other way to incorporate master detail report printing in APEX kindly advise.
    Thanks
    Ahmed

    Hi Ahmed_Jed,
    Ahmed_Jed wrote:
    Thanks Kiran for your prompt response. I tried following the steps already using this link (How To Create a Master-Detail PDF Report) somehow the detail record was not getting processed perhaps was trying to generate xml data using the above query. Any other reference will be highly appreciated.
    Regards
    Ahmed
        Well the problem lies here:
    SELECT SYS_XMLAGG (
      SYS_XMLGEN(
      dept_row(
      d.deptno, d.dname, d.loc,
      CAST(MULTISET(SELECT e.empno, e.ename, e.job, e.mgr, e.hiredate, e.sal, e.comm
      FROM emp e
      WHERE e.deptno = d.deptno) AS emp_tab)
      SYS.XMLGENFORMATtYPE.createFormat('DEPT')
      ) AS "XML_QUERY"
    FROM dept d
    WHERE d.deptno = 10;
        The Report Query itself generates XML data (in the required BI Publisher format). So, no need to generate it like this.
        As you are using table functions your query should be of the type:
    SELECT EMPNO
                , ENAME
                , JOB
                , MGR
                , HIREDATE
                , SAL
                , COMM
        FROM TABLE ( EMP_PKG.GET_EMPLOYEES ( :PXX_DEPTNO ))
        where EMP_PKG.GET_EMPLOYEES is packaged table function which returns the Object Table of type EMP_TAB mentioned above.
        When you test the above Report Query with sample DEPTNO, it will generate the sample XML, which you can use to generate Report Layout in RTF format using BI Publisher Desktop.
        Hope this helps!
    Regards,
    Kiran

  • Help me in  'AR Details ' report shows total open invoices by customer

    hi friends,
    please  help me in  'AR Details ' report shows total open invoices by customer and PO number over selected time range.
    any thing related to open invoices please send me as early as possible.
    Thanks,
    Regards,
    Yogesh

    Hi,
    Find the T.code VF05. You will get the list of open billing docs. Its SIS report. Please find whether the SIS is active or not in your system
    Regards,

  • Dynamically select detail report for a master report link item or button?

    I'm still new to APEX, so apologies if this sounds like a stupid question, but so far I can't find anything online about how to do the following.
    I have a simple report, and I want to be able to drill down from here to a detail report via a link item (or a button) in each row. The problem is that the specific detail report to use depends on a combination of values in the parent record.
    So if I have a parent record in the master report with values for columns 1/2/3 of A/B/C, I would drill down to a detail report against table X. If my parent record has values of D/E/F, I might drill down to a different detail report against table Y.
    I can build the individual reports easily enough, and I can set up a link item in the master report to drill down to a hard-coded detail report page. I can even generate the name (alias) of the relevant target report as an extra non-DB item in each row of the parent report. But I can't figure out how to allow each row in the parent report to actually link to a different detail report dynamically, depending on the contents of the parent row.
    Can anybody suggest an easy way to do this, or point me towards an online resource that would explain how to do this (preferably in basic terms that this APEX-newbie can understand)?
    Thanks for your help!

    Hi,
    When you say "Detail report" do you just mean a normal report of the child records for the selected master record or a tabular form style "Details report"?
    Using different reports on a page would, typically, depend on the value in a hidden page item - for example, P1_REPORT_TYPE. Your link could pass an appropriate value into this item and the second page would then use this as a Condition for each of the report regions - each region being conditionally displayed when the hidden item is a specific value.
    Andy

  • Dynamically creating a master-detail report

    Hi,
    I have a situation where users enter an order number and then get a list of shipments. They then want to click on one of the shipments and get a report. I tried doing this with parameters, but users forget to hit [Enter] after the Order parameter - so the shipment paramter gets left blank and the report produces an error.
    Is there a way in a RTF template so that the user could click on a shipment and that would display all the rows for that shipment? I can get all the data in one go, thats not an issue.
    Ideally I want something like
    Order No [67453278]
    Shipments
    543
    657
    786
    The user can then click on a shipment and sees the rows for that shipment.
    Any thoughts?
    Thanks
    Phil

    Thanks, I have tried this but it doesn't solve the problem.
    I had tried this approach before I logged this request, and it has the following issues when used. The report is called from a portal page:
    1. The user gets a "flash" when the detail report is called.
    2. There is no easy way to get back to the "master" report, showing the shipments. Pressing the [back] button doesn't work. The user doesn't know they are in BIP at this point - I use the hyperlink which doesn't show headers.
    What is required is to see the detail report on the same page underneath the list f shipments.

  • Change Maintenance Work Order Detail Report in Print WO page

    Hello,
    I would like to ask you for your help. We would like to have different report in Print WO function than Maintenance Work Order Detail Report. I mean SSM responsibility > Search for WOs > click Print WO icon. We applied patch #9871500 (I found it there: Templates associated to datadefinitions other than 'EAMWRREP' are not shown in the Work Order Detail report in EAM [ID 1209703.1]). I did personalizations steps - I defined new data definition (for example TEST) and report with data definition TEST is shown in the option on Print WO page now... But how should I it define to have correct result? What should be defined in Executable, Concurrent Program, Data Definition and Data Template? I have RDF and RTF files for this report. We are using different SQL than it is used in the original report. How could be used our SQL defined in RDF?
    Thanks, Regards,
    Jitka

    Hi,
      1) You can choose to select and Print shop paper when you need.No enhancement is required.
    2) There is not an option in standard to say Print/Not print Long text . You will have to replace the standard form with a custom form and build the logic to print /Not Print long text based on your rules.
    Regards
    Narasimhan

  • EAM Maintenance Work Order Detail Report

    Hello All,
    I have a requirement to add new fields to the Maintenance Work Order Detail Report which is run from the web page. This report's RTF template works based on the fields which are defined in the seeded data definition. This seeded data defintion has an seeded XSD file with the fields in it. By the RTF template I got the standarad concurrent program name as Maintenance Work Order Detail Report.
    I assumed the following process to happen when the Run button on the EAM work order page is clicked.
    1. Concurrent program Maintenance Work Order Detail Report is submitted
    Executable: PL/SQL Package EAM_WOREP_PUB.Work_Order_CP
    Seeded Data Definition: Work Order Details -- This DD has a seeded XSD file EAMWOREPORT.xsd
    2. So the RTF template based on the pl/sql package and the XSD file generates the report and displays.
    Please correct if my assumptions are wrong.
    I want to add new fields to this report. So I have customized the pl/sql package, modified the code with new fields and created a custom data defintion with a new XSD file with the new fields added in it. Also created a new template linked to new data defintion. After doing all this I am not able to see the new fields on the report generated they come as NULL.
    My question is Is it feasible to add new fields to this Maintenance Work Order Detail Report or we can use only the fields which the seeded one gives?
    Version: R12.1.2
    I tried and tried but couldn't find a solution to it. If anyone has faced the same issue please let me know.
    Thank You!!

    IW47 should give you the required information.
    Regards
    Narasimhan

  • Open detail report in same window(same frame) in BI Publisher11.1.6.0

    Hi
    I have created 2 reports
    Master Report - Interactive view template
    Detail Report - Interactive view template
    I have given detail report hyperlink in Master report. when i click on the link, it opens in new tab or window instead of opening in same tab/window.This is happening only in case i have created report in Interactive view.
    If i create both the reports in RTF template then it's opening in same window/tab but my requirement is that template should be Interactive template as it's having sorting and filter functionality embedded.
    Kindly reply.
    Thanks
    Nitasha
    Edited by: 856219 on Mar 26, 2012 1:31 AM

    Hi Nitasha
    we need same exact requirement. Could you please let me know if you find any solution ?
    Thanks
    slokam

  • Master Detail Report Export to Excel/CSV

    Hello,
    Does anybody know how one may export a master detail report page - master is a html region, detail is a report region export to a csv file.
    The only option I found i the layout and pagination - export csv option, but this generates just the report region...
    Is there any possiblility to export the report as shown on screen to csv?
    Thanx
    Johann

    Hi,
    Limit the range of data to be exported and check any row missing.
    Thanks & Regards,
    Nagarajan

  • Unable to open the detail report in the same page/window

    When i use the "Navigate to Web Page" action link to navigate to the detail report, the detail report is opening in new window. Is there any way that the detail report can be opened in the same page/window.

    Hi,
    why don't you use the master/detail table option when dragging the master VO ?
    Frank

Maybe you are looking for