How to get the report for the set items

I created an element defined for all payments that are made to the employee. Now I would that these elements that are there in the element the value to display in a separate report and not in my payslip. How can I do this? Please can you tell me the names of the tables where I can get the required data?


Appreciate all your help!

Try this query

SELECT ppf.employee_number "Employee Number",
          petf.element_name "Element Name",
          to_number(prrv.result_value) "Amount"
FROM per_all_people_f ppf,
        per_all_assignments_f paf,
        pay_element_types_f petf,
        pay_assignment_actions paa,
        pay_payroll_actions ppa,
        pay_input_values_f pivf,
        pay_run_results prr,
        pay_run_result_values prrv,
           pay_element_type_rules petr,
           pay_element_sets pes
WHERE  ppf.person_id = paf.person_id
AND    petf.element_type_id = prr.element_type_id
AND    pes.element_set_id = petr.element_set_id
AND    pes.element_set_name = :Element_Set_Name
AND    petr.include_or_exclude = 'I'
AND    petf.element_type_id = petr.element_type_id
AND    paf.assignment_id = paa.assignment_id
AND    ppa.payroll_id = paf.payroll_id
AND    paa.payroll_action_id = ppa.payroll_action_id
AND    ((:pmon IS NULL AND :pyear IS NULL) OR TO_CHAR(ppa.date_earned,'MONYYYY') = TO_CHAR(UPPER(:pmon)||:pyear))
AND     paa.assignment_action_id = prr.assignment_action_id
AND    prr.run_result_id = prrv.run_result_id
AND    pivf.element_type_id = petf.element_type_id
AND    prr.element_type_id = petf.element_type_id
AND    pivf.input_value_id = prrv.input_value_id
AND    ppa.effective_date BETWEEN petf.effective_start_date AND petf.effective_end_date
AND    ppa.effective_date BETWEEN pivf.effective_start_date AND pivf.effective_end_date
AND    ppa.effective_date BETWEEN paf.effective_start_date AND paf.effective_end_date
AND    ppa.effective_date BETWEEN (to_date('01-'||:pmon||'-'||:pyear,'DD-MON-YYYY') ) AND last_day(to_date('01-'||:pmon||'-'||:pyear,'DD-MON-YYYY') )
AND    (to_date('01-'||:pmon||'-'||:pyear,'DD-MON-YYYY') ) between ppf.effective_start_date AND ppf.effective_end_date
AND    pivf.name ='Pay Value'
ORDER BY to_number(ppf.employee_number) ,ppf.person_id,petf.element_name

This query gives the values of outcome performance of the elements in the set of elements.
HTH

Tags: Oracle Applications

Similar Questions

  • ListField - how to get the selected items

    Hi @all,

    I am running OS5 on a BB bold 9700 and development via eclipse.

    I tried to do a listfield and put it in a display of network manager, which works very well.

    As peter_strange did in a reply to a thread listfield, I tried to catch the click button on navigation through "makemenu.

    It works fine, but after processing the code according to the listfield (getindex), it shows a standard menu, which I don't want. I want just to get the index or the name of the current or selected fields and continue with the transformation by showing a new screen for example.

    In some other threads that I found excerpts concerning 'navigationclick', but I don't understand, what I have to do here and why. Th KB, I searched but I did find something to go further.

    Someone there who can help me with a small example?

    Thank you much in advance.

    CUA

    Michael

    You can create your own class or override her anonymously.

    new ListField (...) {replace the code of the method here}

    (blackberry is perhaps not the best way to start learning java...)

  • How to get the setting of audio equalizer - Acer Aspire 3970 - Windows 8

    Hello

    I have a set of Altec Lansing speakers hung on the sound board. Its a speaker setup nice for the money - but the sub has a higher than low normal output level and do not have a bass level button. In any case, after installing Windows 8 Pro I've only the standard options for enhancements such as bass boost and room correction etc. There is nothing for the taste of an equailizer everywhere are. Living in an apartment and not wanting to annoy people, I am eager to find some drivers who will give me an equalizer to play with. Neighbors of downstairs must hate me...

    Can anyone suggest how I could go about this? The only driver Acer offer here for Windows 8 are to do with TV tuners.

    Google results  <----Check these="">

    If a program specifies win - 7, but not 8 (on your box of victory-8) all run from the table rather than the metro interface. I haven't had a problem of compatibility.

  • How to get the parameter values of a step type custom when I create file and adding a type of step seq

    I use lv 8.5 and teststand 4.0.

    I did a step type custom and recorded at the MyTypes.ini in pallets of type.

    I specified a default module by opening the properties of the custom step of *.ini type window, then I put some values of the parameters.

    T1) when I open teststand and I add the custom step type manaully in seq file, the labview module parameter values are represented.

    But, if to use file (create and add support prototype stage), the labview module parameter values has the default value.

    Using joint file, how to get the setting custom step type values I put in *.ini?

    Q2) each type of step are automatically by name through the use of LoadTypePaletteFilesEx. When I open teststand and I add the custom step type manaully in seq file, the module is loaded automatically. Inside the attachment, I use a prototype of charge and a fixed path where the module labview is to load the labview module.

    Can I load module automatically without using a prototype of charge or how can I get a dynamic path of type step?

    I solved Q1 for myself by using the mapping tab of the parameter within the configuration to the default module window.

    Everyone knows Q2?

    Thank you.

  • get the setting of HTTP command in cfml

    How to get the setting for HTTP command in cfml?

    for example

    If the command HTTP

    GET /DATA/pg/index.cfm?lang=en HTTP/1.1

    Then, the parameter must be

    lang = en

    If the command HTTP

    GET /DATA/pg/index.cfm?lang=fr HTTP/1.1

    Then, the parameter must be

    lang = en

    Try to create a file named "cgitest.cfm" with the content:

    #cgi.query_string. #

    Go to http://localhost/cgitest.cfm?lang=en (or substitute the path on your server).

    The fact that HTTP_REFERER is filled makes me suspect that you have a redirect, such as CFLOCATION code, in your index.cfm file.

  • How to get the element selected listfield and goto next page?

    Assalaamualikum

    I try parsing the XML from a url and show in listfield.

    problem:

    How to get the selected item and passing the variable and than goto next page?

    my code:

    package parsepack;

    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Vector;

    Import javax.microedition.io.Connector;
    Import javax.microedition.io.StreamConnection;

    Import net.rim.device.api.system.Bitmap;
    Import net.rim.device.api.system.Display;
    Import net.rim.device.api.ui.DrawStyle;
    Import net.rim.device.api.ui.Field;
    Import net.rim.device.api.ui.FieldChangeListener;
    Import net.rim.device.api.ui.Graphics;
    Import net.rim.device.api.ui.Manager;
    Import net.rim.device.api.ui.UiApplication;
    Import net.rim.device.api.ui.component.ListField;
    Import net.rim.device.api.ui.component.ListFieldCallback;
    Import net.rim.device.api.ui.container.MainScreen;
    Import net.rim.device.api.ui.container.VerticalFieldManager;
    Import net.rim.device.api.xml.parsers.DocumentBuilder;
    Import net.rim.device.api.xml.parsers.DocumentBuilderFactory;

    to import org.W3C.DOM.document;
    Import org.w3c.dom.Node;
    Import org.w3c.dom.NodeList;

    extends xmlparsing public class UiApplication implements ListFieldCallback, FieldChangeListener
    {

    Public Shared Sub main (String [] args)
    {
    xmlparsing app = new xmlparsing();
    app.enterEventDispatcher ();
    }

    public long mycolor;
    Connection _connectionthread;
    private static ListField _list;
    private static Vector listElements is new Vector();.
    public display display = new MainScreen();
    MainManager VerticalFieldManager;
    VerticalFieldManager subManager;

    public xmlparsing()
    {
    Super();
    pushScreen (screen);

    final Bitmap Imagearriereplan = Bitmap.getBitmapResource ("blackbackground.png");

    mainManager = new VerticalFieldManager(Manager.NO_VERTICAL_SCROLL |) Manager.NO_VERTICAL_SCROLLBAR)
    {

    public void paint (Graphics graphics)
    {
    graphics.drawBitmap (0, 0, Display.getWidth (), Display.getHeight (), Imagearriereplan, 0, 0);

    Super.Paint (Graphics);
    }

    };

    subManager = new VerticalFieldManager(Manager.VERTICAL_SCROLL |) Manager.VERTICAL_SCROLLBAR)
    {
    protected void sublayout (int maxWidth, maxHeight int)
    {
    int displayWidth = Display.getWidth ();
    int displayHeight = Display.getHeight ();

    Super.sublayout (displayWidth, displayHeight);
    setExtent (displayWidth, displayHeight);
    }
    };

    Screen.Add (mainManager);

    _list = new ListField()

    {

    public void paint (Graphics graphics)

    {
    graphics.setColor ((int) mycolor);
    Super.Paint (Graphics);

    }

    };
    myColor = 0x00FFFFFF;
    _list. Invalidate();
    _list.setEmptyString ("* only supplies not available *", DrawStyle.HCENTER "");
    _list.setRowHeight (50);
    _list.setCallback (this);
    mainManager.add (subManager);
    listElements.removeAllElements ();
    _connectionthread = New Connection();
    _connectionthread. Start();
    }

    protected boolean navigationClick (int status, int time)
    {
    Try
    {
    Here, go to another screen if you need.

    }
    catch (System.Exception e)
    {
    System.out.println ("Exception:-: navigationClick()" + try ());
    }
    Returns true;
    }

    private class login extends thread
    {
    Public connection()
    {
    Super();
    }

    public void run() {}
    Doc document;
    StreamConnection conn = null;
    InputStream is = null;
    try {}

    Conn = Connector.open (StreamConnection) ("http://ec2-54-248-241-248.ap-northeast-1.compute.amazonaws.com/koperasi-akr-trial/cgi-bin/gw-pinjama...

    DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance ();
    docBuilderFactory.setIgnoringElementContentWhitespace (true);
    docBuilderFactory.setCoalescing (true);
    DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder ();
    docBuilder.isValidating ();
    is = conn.openInputStream ();
    doc = docBuilder.parse (is);
    doc.getDocumentElement () .normalize ();
    List of NodeList = doc.getElementsByTagName ("ID");
    for (int i = 0; i)< list.getlength();="" i++)="">
    Node node = list.item (i) .getFirstChild ();
    listElements.addElement (textNode.getNodeValue ());
    }
    } catch (Exception e) {}
    System.out.println (try ());
    } {Finally
    If (is! = null) {}
    try {is.close ();
    } catch (IOException ignored) {}
    } If (conn! = null) {}
    Try {conn.close () ;}
    catch (IOException ignored) {}
    }} UiApplication.getUiApplication () .invokeLater (new Runnable() {}
    public void run() {}
    _list. SetSize (listElements.Size ());
    subManager.add (_list);
    Screen.Invalidate ();
    }
    });
    }

    }

    ' public void drawListRow (list ListField, Graphics g, int index, int y, int w)
    {
    Your string = (String) listElements.elementAt (index);
    int yPos = 0 + y;
    g.drawLine (0, yPos, w, yPos);
    g.drawText (, 5, 15 + y, 0, w);
    }

    public {get {Object (ListField list, int index)
    {
    Return listElements.elementAt (index);
    }
    public int indexOfList (String prefix, ListField list, int, string)
    {
    Return listElements.indexOf (prefix, string);
    }
    public int getPreferredWidth (ListField list)
    {
    Return Display.getWidth ();
    }
    public final void insert (String toInsert, int index) {}
    listElements.addElement (toInsert);
    }

    ' Public Sub fieldChanged (field field, int context) {}

    }
    }

    Thank you.

    I told you that replace the navigationclick() method where initialize you your listfield

    as I think that changing your code and then answer me

    _list = new ListField()
    {
    protected boolean navigationClick(int status, int time)
    {
      Dialog.inform("hi");
      return true;
    }
    
    public void paint(Graphics graphics)
    {
    graphics.setColor((int) mycolor);
    super.paint(graphics);
    }
    };
    
  • How to get the required column, the names of tables for the preparation of the report.

    Based on the MD50 how to get the exact name, the table names he joined for report development. as I am new on this project and the purchase of failet for R12.
    How can I start my approach to prepare the data for the report model? How can I search the database based on the respective diagrams of means?
    all input appreciated

    Hello

    You can find information about schema objects in eTRM Web site, you can also consult the documentation for product/module and see if it helps. If you already have any report (standard or custom), you can enable the trace and run the program to see which object it access or open the report using Report Designer and see the code.

    ETRM Oracle
    http://ETRM.Oracle.com

    Oracle Applications documentation
    http://www.Oracle.com/technology/documentation/applications.html

    Kind regards
    Hussein

  • How to convert ManagedObjectReference specified object type (for example, Indexderecherche) and how to get the HostSystem object?

    Hello

    I met two problems when you use the SDK for JAVA,: (, so I come back here for help.)

    1. I use the method getSearchIndex() to get the object of the ServiceContent Indexderecherche , 'Indexderecherche' of ServiceContent property is set as 'com.vmware.vim25.ManagedObjectReference' and 'ManagedObjectReference' is not a subclass named "Indexderecherche", so how do I convert it to class "Indexderecherche" but I can't use the methods defined in the class "Indexderecherche".

    2. I want to retrieve information about my server ESX, and "Guide to programming Web Services SDK vShpere" tells me to do this work by accessing data objects defined for the HostSystem. But I don't know how to get the object "HostSystem.

    Can someone help me? Thanks in advance.

    Its part java java-sdk sample.

    path:

    vijava\src\com\vmware\sample\vi

    classpath:

    com.vmware.sample.vi.ViDiscovery

  • How to get the values of the cells of an interactive report?

    Hello

    We use the APEX 4.0, with Oracle 10 g r2 on Windows XP.

    I have a page with an interactive report, and I configured the "link" column to link to a target custom (instead of see a row).
    This custom target is simply a call to a function of ajax (I hope!) view more information (in another region) on the clicked folder.

    I think I have to display the primary key in the report and then get the value of call my function as:
    javascript:my_function(ID);
    to be able to find the information right on the straight line.

    But, how to get the value?

    Kind regards.

    Yann.

    Hello
    Got to the report attributes tab and scroll down to the section of the link column. Click on the lightning bolt next to the column value, a popup displays Columsn names in reports of each locked in a pair of #.

    You pass the column for your javascript like this function

    
    javascript:my_function('#ID#');
    

    Kind regards

  • How to get the manual for Satellite Pro 4200?

    How to get the manual for Pro 4200. I have download olm_up and setup.exe (72 kt) of http://eu.computers-toshiba-europe.com?.

    Hello

    Please visit this link:
    http://EU.computers.Toshiba-Europe.com/cgi-bin/ToshibaCSG/download_manuals.jsp

    I m you will find a good manual of your device.

    Good bye

  • How to get the items on a loop at the same time during the execution of the loop for

    Hello

    I am a student. I would like to know how to get the outside loop counter values For in parallel so that the loop runs rather than obtaining the value finally outside the loop for future prospects for the answers.

    Thank you

    Frederick

    You already said yes, and you have said some of the different ways (registrants, locals, reference, queue, etc.). Since the information was provided to your request, the thread can be considered closed? If you want details about how to implement something, you must provide the details on what you are doing.

  • I have a single open for Exchange 2007 Standard how license get the product key

    I have a single open for Exchange 2007 Standard how license get the product key

    For assistance, please contact the administrator of your Open License program.

  • How to get the code produced for my Windows XP disc if I have the drive?

    Acquisition of Product Code Windows XP

    How to get the code produced for my Windows XP disc if I have the drive?  I signed the BONE when I bought it all first, but have no way of knowing if this is the way to receive a copy of the product key.

    Here are some utilities, which will display your product keys:

    Belarc Advisor: http://www.belarc.com/free_download.html
    (He did a good job of providing a wealth of information.
    However may not detect a key to office, then try one of the other two below)

    Also: http://www.nirsoft.net/utils/product_cd_key_viewer.html
    and: http://www.magicaljellybean.com/keyfinder.shtml

    Paid (free demo is available): Recover Keys: http://recover-keys.com/
    "quickly scans your system for more than 3000 + software '.
    and produces a list of software activation keys.

    13 keyfinder programs:
    http://pcsupport.about.com/od/productkeysactivation/TP/topkeyfinder.htm

    J W Stuart: http://www.pagestart.com

  • Windows vista Home premium recovery question - how to get the source for windows vista home edition premium as the recovery does not work since the recovery partition

    How to get the source to windows vista Home premium recovery is not from the recovery partition and gives me an error message

    Hello

    Contact the computer manufacturer and ask them to send you to vista recovery disks to reinstall the operating system back as it was when you bought it

    they do it for a nominal cost of $

    or borrow a vista microsoft dvd; not a HP, Acer recovery disk etc

    Make sure that you borrow the correct 32-bit or 64-bit microsoft dvd to your computer

    they contain all versions of vista

    This is the product key that determines which version of vista is installed

    http://www.theeldergeek.com/Vista/vista_clean_installation.html

    How to replace Microsoft software or hardware, order service packs and replace product manuals

    http://support.Microsoft.com/kb/326246

  • How to get the new update for the help and support

    OT:how to get the new update of the abd support help

    How to get help and support update

    Hello rickstemberger,

    Please click the number of the KB article for more information on how to add Windows Vista Help files.
    KB Article ID: 917607 -I can not open Help files that require the Windows Help program (WinHlp32.exe)

    Microsoft stopped including the 32-bit help files viewer in versions of Windows starting with Windows Vista and Windows Server 2008.
    However, with article 917607, you can download the appropriate version of the Windows Help program (WinHlp32.exe) and add them
    the operating system.

    Sincerely,

    Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • I forgot my password for my admin user account, but I have a secondary account how to get the password for the admin

    original title: admin password.

    I forgot my password for my admin user account, but I have a secondary account how to get the password for the admin

    Hello
    Microsoft technical support engineers cannot help you recover the passwords of the files and Microsoft who are lost or forgotten product features. For more information about this policy, please refer to the sticky below.

    http://social.answers.Microsoft.com/forums/en-us/vistasecurity/thread/3eba3150-8742-4264-be9f-0daaad2282cd Lisa
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

Maybe you are looking for

  • TB 38.2 remove several spaces on copy and paste

    If I copy the text that contains multiple consecutive spaces, and paste into an email that is being composed in plain text view (I know it is identical to the HTML mode really...), then these are replaced with single characters. For example, copy: an

  • How can I move items on the download page on my computer

    I downloaded a movie and can be found on the download under Tools tab, but cannot open the file and the film begins, I want to move the download of my documents but cannot open it

  • Complete record or failures only report

    Hello I want to have the report in such a way that, if a particular indicator report should contain articles step pass and failure. Where as if the open not so that the status of the stages of failure to be logged for test report. PL help me solve th

  • Change the text displayed, based on the threshold value

    Hi users of Labview,. I need help with display and editing text in labview. The text should display and change according to the following conditions: 0 volt - "no power". 1 volt - "controller ON". 2 Volt - "Rotor Running" 3 volt - "Rotor stopped". Ba

  • E-mail messages requiring a 2nd click to open

    Why when you click on the e-mail message, we are kicking off the coast and need to click a second time to open?  This also happens when we start to build a message in a new e-mail.