There are no payroll results in given selection area....

How can i resolve this issue..
//sri

Hi,
Before executeing payroll you please check the Payroll control record --PA03, enter Payroll Area XX then Display. Note payroll period . Then execute paryroll run with same period whatever you noticed in PA03.
Thank you
Srinivas

Similar Messages

  • PCP0- Error:Data gap -- There are results of the latest payroll

    Hi experts! I need your help!
    When viewing a receipt book (PCP0) in the HR account " personal loans", for a particular document number , I canu2019t view the detail of the accounts and it shows me the following error "Although the implementation NNNN has been productive, there are results of the latest payroll. Data gap. "
    I noted that this is properly accounted for on the side of HR. Through the FB03 worked properly, we could see the details and the master account are not affected.

    No, the only metadata that Kodo stores in a default configuration is a
    list containing all the classes registered in the data store.
    When developing with enhancers, it is relatively easy to get things into
    a strange but seemingly valid state. Consider the following example:
    - create persistence-capable classes with non-private fields and
    compile them to .class files.
    - compile non-persistence-capable classes that access the
    non-private fields in a persistence-capable class.
    - enhance your persistence-capable classes, but not your
    persistence-aware classes (the classes that directly access fields
    in persistence-capable classes)
    At this point, you will likely get all sorts of class verification
    errors at runtime, as the enhancer makes all JDO fields private, and
    replaces accesses to the fields with enhancer-generated setters and
    getters of the same visibility as the original field.
    While this was not the exact problem that you saw, it is one example of
    inconsistencies created by the build process. If you follow the
    following steps, you should reduce mysterious Kodo-related errors:
    - make all your JDO fields private, and provide your own setters and
    getters for them. By doing this, you will not have to jdo-enhance
    any classes but the persistence-capable classes, as all non-pc
    classes will access data through your methods. Note that you can
    refer to private fields directly within the defining class just as
    usual.
    - recompile and re-enhance all the persistence-capable (and
    persistence-aware, if any) objects each time you compile. This is
    a bit slower, but can save lots of nightmares.
    Also, I find that compiling all .class files into a separate build
    directory (with 'jikes -d $builddir' or something) helps keep everything
    working smoothly, as you know where all your .class files are and you
    can easily blow them away if things start behaving strangely.
    -Patrick
    Patrick Linskey [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Displaying a message when there are no results from an XSL Query

    Using MM_XSLTransform.class.php
    I am querying an XML file to produce a list of places whose town name or address match a letter of the alphabet. The letter is passed as a variable in a URL.
    XSL:
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <xsl:param name="letter"/>
    <xsl:output method="html" encoding="UTF-8"/>
    <xsl:template match="/">
    <xsl:for-each select="dataroot/CPINFOWEB[Town=starts-with(Town, $letter) or Name=starts-with(Name, $letter)]">
          <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
            <td>
        <a href="detail.php?park={CostCode}"><xsl:value-of select="Name"/></a><br />
              <a href="detail.php?park={CostCode}"><xsl:value-of select="Town"/></a><br />
          <xsl:value-of select="Address"/><br />
          <br />    
          </td>
            </tr>
          </table>
          </xsl:for-each>
    </xsl:template>
    </xsl:stylesheet>
    Destination PHP file:
    setXML("../regions/CPINFOWEB-mobile.xml"); $mm_xsl->setXSL("list.xsl"); $mm_xsl->addParameter("letter",$_GET['letter']); echo $mm_xsl->Transform(); ?> 
    The result Name and Town are displayed as a URL to link to a "more details" page.
    All works fine, but when there are no results for a letter of the alphabet I obviously get a blank page.
    How do I display a "no results" message instead

    I deleted my original reply because the formatting of the XSL code was messed up by the forum. Here's trying again:
    Your current code creates a new table for each result. The opening and closing <table> tags should be outside the the <for-each> loop. To deal with the possibility of no results being found, use a conditional statement and the count() function like this:
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <xsl:param name="letter"/>
    <xsl:output method="html" encoding="UTF-8"/>
    <xsl:template match="/">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <xsl:for-each select="dataroot/CPINFOWEB[Town=starts-with(Town, $letter) or Name=starts-with(Name, $letter)]">
            <tr>
            <td>
        <a href="detail.php?park={CostCode}"><xsl:value-of select="Name"/></a><br />
              <a href="detail.php?park={CostCode}"><xsl:value-of select="Town"/></a><br />
          <xsl:value-of select="Address"/><br />
          <br />    
          </td>
            </tr>
    </xsl:for-each>
    <xsl:if test="count(dataroot/CPINFOWEB/Town) &amp;lt; 1">
        <tr>
        <td>No records found</td>
        </tr>
        </xsl:if>
    </table>
    </xsl:template>
    </xsl:stylesheet>

  • LOV selection fails when there are validation errors on the base page

    Hi
    I have lovs and some other required fields on a page . If there are any validation error on one of those text fields and if I open the LOV (not related to the text fields) and tries to select
    an item from the LOV search results, it doesn't do it until unless I go back to the base page and correct all the validation errors on the text fields eventhough those text fields have nothing to do with the LOV.
    Any suggestion is appreciated.
    Thanks
    Anwar

    I am on Anwar's team, and I've been dealing with the same problem, although on a different page.
    The JSPX for a contrived example is below. I can provide backing bean code, if needed.
    The form contains two LOVs. Both fields are required. If you leave both fields blank and click Continue, you get a red box around both fields and error messages are displayed. If you then click the magnifying glass to select from the first LOV, the LOV pop-up is rendered. However, you cannot make a selection, either by double-clicking a line item or by clicking OK (the OK button has no effect). All you can do is cancel.
    Interestingly, the act of clicking the magnifying glass on the first LOV gets rid of the red box around that field. So, once you cancel out, the second LOV actually does work. If there were more than two fields on the page, that wouldn't happen. The problem seems to be that the LOV doesn't work unless there are no validation errors on the page other than for the LOV which is being invoked.
    As you can see, immediate="true" is set on both LOVs. The behavior is the same whether this is true or not.
    I'm left thinking there must be something obvious that we're missing... but none of us can see it.
    Thanks,
    KEN
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <af:document title="Add Item">
          <af:form>
            <af:panelGroupLayout>
                <af:panelHeader text="Header">
                    <af:panelFormLayout>
                        <af:inputListOfValues label="Id" searchDesc="Search" popupTitle="Supplier Id"
                                              simple="true" required="true" id="supplierId"
                                              model="#{viewScope.AddItemBackingBean.supplierIdListOfValuesModel}"
                                              value="#{viewScope.AddItemValuesBean.supplier.id}"
                                              autoSubmit="true" immediate="true"/>
                        <af:inputListOfValues label="Description" searchDesc="Search" popupTitle="Supplier Id"
                                              simple="true" required="true" id="supplierDescription"
                                              model="#{viewScope.AddItemBackingBean.supplierDescriptionListOfValuesModel}"
                                              value="#{viewScope.AddItemValuesBean.supplier.description}"
                                              autoSubmit="true" immediate="true"/>
                        <f:facet name="footer">
                            <af:panelGroupLayout layout="horizontal" halign="right" >
                              <af:commandButton text="Continue"
                                                actionListener="#{viewScope.AddItemBackingBean.continueAction}"
                                                id="continueButton" />
                            </af:panelGroupLayout>
                        </f:facet>
                    </af:panelFormLayout>
                </af:panelHeader>
            </af:panelGroupLayout>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>

  • After years of no problems I can't print photos. When I select print I get the message "There are no themes located. Until at least one theme has been installed this feature will be unavailable.  What are themes? How do I install them?

    After years of no problems I sddenly can't print photos. When I select print I get the message "There are no themes located. Until at least one theme has been installed this feature will be unavailable.  What are themes? How do I install them? Why has this problem suddenly arisen?

    Re-installing does not affect your Library in any way. You don't delete it, only the app.
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store or have a Recent Mac you can find it in your Purchases List.
    Regards
    TD

  • The below vi is not giving me what I want. If I select 2 with maximum number of 3 then there are 3 array elements display that is correct but if I select 8 with the same maximum number of 3 then only 1 array element display. Why is that?

    The below vi is not giving me what I want. If I select 2 with maximum number of 3 then there are 3 array elements display that is correct but if I select 8 with the same maximum number of 3 then only 1 array element display. Why is that?
    Attachments:
    test2.vi ‏29 KB

    It's because in case 2 you hold the array build result from the previous loop iteration in a shift register...in case 8 you do not...
    You say that if you set the maximum number to three it will produce an array with three elements, that is not correct, it will run when the iteration index is 0,1,2 and 3...resulting in 4 elements. If you want 3 you need to decrement the maximum number to 2. The same goes for case 8.
    MTO

  • How can I view more than one result on the screen when I search for apps? eg I search for my hobby and there are over 1500 results - one result per screen - do I have to swipe 1500 times to see them all?

    I search for apps about my hobby. There are over 1500 results. Each single result takes up the whole screen. I will have to swipe the screen 1500 times to see all the results. How can I see 8 or 10 results and scroll through fast? Thanks very much for any suggestions!

    Bump:)
    But I've found some online reviews of this and I think we
    are stuck with this amazingly awful search system until
    they realize people like me won't bother searching for or buying
    Apps.
    Does a novel display one sentence per page?
    Do you listen to a radio documentary that transmits one word a minute?
    Or how about a song that is broken into four parts because the singers ran out of breath?
    Searching app products has never been easy or a pleasure, and now it's tougher than ever. Who has the time to swipe 1,600 times? It HURTS - and hurts my brain just thinking about it.
    Woe is me!
    Woe are we!

  • What's happening on my iMac?  There are two choices of selected start up disks appearance without hold down option key.  On the other hand, it start up normally show apple picture when I hold option key.

    There are two choices of selected start up disks:Main HD and Recovery HD, appearance without hold down option key.  On the other hand, it start up normally show apple picture when I hold option key.

    Hi artdiva28
    Welcome to Apple Discussions
    First go to *System Preferences > Startup Disk* > select the *Mac OS X 10.5. on Macintosh HD* > click the Lock > hit the Restart button.
    Then if the iMac is still having trouble starting up, insert your Install Disk and restart holding the Option key. In Startup Manager select the Install Disk and boot into it, choose your language, skip the Installer and go up on the menu bar to Utilities and open Disk Utility. In Disk Utility select your Macintosh HD and hit the Repair button. Once finished note any errors and what was repaired for future reference. Quit Disk Utility and restart once again holding the Option key boot back into the Macintosh HD and eject the Install Disk.
    Also see > http://support.apple.com/kb/HT2956
    Dennis

  • My new Photoshop Elements 12 has a RAW file plug-in, but when I try OPEN to select a photograph, there are only generic icons instead of pictures-- I can't tell one photograph from another! How can I fix this so I can tell which photograph I want to open?

    My new Photoshop Elements 12 has a RAW file plug-in, but when I try OPEN to select a photograph, there are only generic icons instead of pictures-- I can't tell one photograph from another! How can I fix this so I can tell which photograph I want to open? Thank you!

    Thanks R_Kelly:
    Adobe Photoshop Elements Version: 12.0 (12.1 (20140303.12.1.49334)) x32
    Operating System: Windows Vista 32-bit
    Version: 6.0 Service Pack 2
    System architecture: Intel CPU Family:6, Model:15, Stepping:11 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 4
    Processor speed: 2400 MHz
    Built-in memory: 3069 MB
    Free memory: 1631 MB
    Memory available to Photoshop Elements: 1598 MB
    Memory used by Photoshop Elements: 69 %
    Image tile size: 128K
    Image cache levels: 8
    Video Card: ATI Radeon HD 4800 Series
    Video Mode: 1680 x 1050 x 4294967296 colors
    Video Card Caption: ATI Radeon HD 4800 Series
    Video Card Memory: 512 MB
    Application folder: C:\Program Files\Adobe\Photoshop Elements 12\
    Photoshop Elements scratch has async I/O enabled
    Required Plug-ins folder: C:\Program Files\Adobe\Photoshop Elements 12\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Photoshop Elements 12\Plug-Ins\
    The first thing I did was UPDATE. I have all the latest updates available (according to the updater). The Camera Raw Plug-in says it is version 8.0.
    The RAW files are from a Canon T3i. It's a very common camera, I can't believe it wouldn't be supported.

  • TS3989 My Photo Stream works and I have iCloud control panel installed. The photo stream sync is selected, but when I go to the my photo stream folder on my windows PC there are no photos in the file.

    My Photo Stream works and I have iCloud control panel installed. The photo stream sync is selected, but when I go to the my photo stream folder on my windows PC there are no photos in the file.

    mlvov,
    I did as you said and went to the icloud control panel on my Windows 8 Laptop to be sure I was looking at the correct folder for my photo stream.  All my "shared" albulms pushed to my Laptop and are up-to-date with the exception of the "photostream" album. If I create a "shared stream album" and place photo's in it on the phone; I can see the photos on my laptop. I dont get it. I had a iphone 4s and had zero isues and now with my new nifty iPhone 5s it doesent work.
    What am I not doing correctly.
    Thanks,
    iPhone, 5s, iOS 7.0.2

  • The music on my iPhone 4 with the new ios7 is not working. There are red  dots next to the selections and I can  not here any music when I touch the  spots. I just downloaded the iOS 7. What went wrong?  Everything else seems to be fine

    The music on my iPhone 4 is not working. There are red dots next to the selections and no sound occurs when they are touched.

    Can you play those songs in iTunes on your computer?
    Make sure they are all part of your iTunes library before you sync and that they were bought with the same AppleID you use on your phone.

  • "No data to retreive" depending selection but there are data

    Hi folks,
    It's happening something really weird in a webi we have built.
    We have a webi report built on a query bex - olap connection.  In the query we have a variable which is 0PLANT, it's a hierarchy variable; in the webi itself we have specified the rest of variables, amongst then Document Date (0DOC_DATE).
    If we run the report choosing different values just in 0PLANT and 0DOC_DATE variables, webi shows data... sometimes!
    Case 1)
    0PLANT = the top hierarchy node
    0DOC_DATE = 01.10.2013 - 31.12.2013
    Data -> ok
    Case 2)
    0PLANT = the top hierarchy node
    0DOC_DATE = 01.01.2013 - 31.12.2013
    No data to retrieve, which is a nonsense because at least there are date for the last 3 months
    Case 3)
    0PLANT = a minor hierarchy node
    0DOC_DATE = 01.01.2013 - 31.12.2013
    Data -> ok
    As you see, sometimes reports shows a message saying "No data to retreive" but there are data.
    We are thinking when we make a huge selection, as webi would show a huge amount of rows, instead of giving a "time-out" or another error, is saying that "no data to retreive".
    What do you think?
    Thanks

    Hi,
    After having done lots of executions and tests, we think we have found the possible explanation. It turns out that this report has a lot of dimensions (around 30) as "free dimensions", I mean, not shown directly in the report, but possible to include them once run.
    It seems that when a webi is executed, BO looks for all data, independently it's or not in the default view. We have removed all dimensions, remaining just those which are really needed, and webi worked!
    It looks like it was a kind of time-out error.
    Extrange.
    BYT Koen; case1 is january, and case2 is october (I should have put a more visible example lol)
    Thanks

  • I am unable to see the images in Aperture trash, though there are a number indicated in the trash.  I have "show all" selected.  What settings am I missing?

    I am unable to see the images in Aperture trash, though there are a number indicated in the trash.  I have "show all" selected.  What settings am I missing?

    You may have an invisible filter on your trash.
    Try the "Double Caggiano", as described in Frank Caggiano's User tip:
    Images not appearing in browser, search filter is cleared
    Regards
    Léonie

  • HT201493 I have received 3 friend requests via email but I cannot accept them.  When I select view request, it just gives me directions on downloading the app and there are no requests in my app.    How do I accept the request?

    I have received 3 friend requests via email but I cannot accept them.  When I select view request, it just gives me directions on downloading the app and there are no requests in my app.    How do I accept the request?

    Which "app" are you talking about?

  • When i plug in my iphone to the system, itunes does not recognize my iphone. i have tried all the troubleshooting part n there are no results yet. what should i do?

    when i plug in my iphone to the system, itunes does not recognize my iphone. i have tried all the troubleshooting part n there are no results yet. what should i do?

    I have reset my iphone and made sure all updates have been done on my macbook pro and iphone. It was after updating my macpro that I plugged in my phone and went to itunes to backup phone and can't see the device anywhere! I have also done all the troubleshooting that apple.com recommended too...all except re-installing itunes!

Maybe you are looking for

  • Iphone 4 rattling sound near camera

    whenever I put the phone on a surface (when the unit is in horizontal position and not on hand), I hear a rattling sound. Also when I shake it, I hear a rattling sound near the camera. What could it be? Should I take it on the store? Or is it just no

  • Distinct count in reports

    I am doing a COUNT of accounts in my report. How can I achieve a DISTINCT count. Can this be done without using Virtual Key Figure? Thanks

  • Cannot access Comcast email but IE can.

    Comcast home page cannot load my email even to login. Please fix this! I like Firefox best. == This happened == Every time Firefox opened == Updated Firefox after Windows 7 came out. I have Vista.

  • How do i reduce picture quality

    how do i reduce the quality of picture in this browser to reduce data consumption

  • U430 Touch Audio malfunction

    Hi,  In August I purchased a U430 Touch laptop for use in law school.  Within the last week, the audio stopped working on the computer altogether and I have no idea why.  I have tried checking the sound settings and I can't see anything amiss.  Earph