IT0008 Work hrs/period and ANSAL issue

Folks,
Work hrs/period in IT0008 is defaulted from customizing or previous record, however for us, it works like this.
IT0007 for example has 150hrs, in IT0008 is created as 150/2 - 75hrs, when it is semi-monthly and the text next to work hrs/period is displayed as semi-monthly. Whereas when i create IT0008 through PA30, the workhrs/period is created as 150. Not sure how and why it works like this. According to me, irrespective of PA40/PA30, the standard has to either take customising entries or previous record. The system is set to take from customising. DFINF feature.
IT0008 - Ansal has to take the pay period and the amount, for example a semi-monthly paid employee is paid 100$, then 10024 has to be calculated and appearing in ANSAL of IT0008, however, it appears as 10012. I checked the entire ANSAL settings including V_T510W and T549R and other customizing steps, still no clue!
Appreciate your inputs.
Regards
GK

Folks,
It is because of missing entry in T510W and after entering values, it appears correct in IT0008.
Thanks to your time.
Regards
GK

Similar Messages

  • Payscale Area and Work hrs/period  - IT 0008

    Hi
    Can anyone please provide me with the linkage between the Payscale Area and Work hrs/period in Infotype 0008.
    The data for an employee reflects wrongly in the work hrs/period... Its ahould have a value 80.00 ad Biweekly and instead has 162.94 Monthly.
    Can anyone please tell me where these changes needs to be carried out
    Thanks,
    Sanjay

    Use Tcode SM30
    Type table  V_T508A
    Go to maintain
    Select your Work Schedule rule
    Go to details
    You will give the hours here that hour only disply in IT0007 and 0008
    Default that field is monthly hour field only it will display
    If you want to display Bi weekly hours you need to do the screen modifaction programming go to that field and put BI Weekly hours Data Element instead of Monthly hours field
    This will be not done with config only Abaper can do
    Best Regards

  • BPC 7.5 Periodic and QTD issue on YTD Application

    All,
    Our BPC 7.5 SP 6 YTD BPC application has an issue when running EVDRE reports using Periodic or QTD measures.  YTD EVDRE reports produce correct results.  The Periodic and QTD measures work just fine as long as there is data in every period but as soon as no data is found in a subsequent period the system can not do the calculation.   It does not know how to take 'nothing' and then subtract a prior period value.  It somehow needs to treat the non existance of a record as 0 but it does not do that.  For example if the YTD May balance was 100 and YTD June was 500, if you request the periodic value for June it will take 500 - 100 and give you a 400 result which is correct.  In my second example, let's say YTD May balance was 100 but the balance went to 0 in June.  BPC does not load 0 amount so there is no record in June.  If you run a report requesting the June periodic value you will get no result as it can not handle the situation where there is no record in June.
    A while ago I worked with SAP on this and was advised to install OSS note 1405993 which FIXED that problem.  Great news until at a later date our periodic reports stopped finishing and would give the message 'EVDRE encountered an error reading data from the web server'.  It would retry in 30 seconds and error over and over never finishing.  I again reported this to SAP who gave me more efficient Periodic and QTD formulas via note 1505778.  I installed the more efficient formulas and the EVDREs now finished but it brought back the original problem where Periodic/QTD reports would produce incorrect results if there was not data in all periods.  I again reported this to SAP without success.  I have been advised to do the calculation myself in the front end (e.g.EXCEL) which just seems unaccepable.
    I have found another thread http://scn.sap.com/thread/3203570 <http://scn.sap.com/thread/3203570 where this same problem occurs in BPC 10.0 - very sad to hear that!  In that thread people have talked about using 'custom' formulas and say they work.  The formulas I have in place are the ones found in note 1505778 to calculate periodic and QTD.  Yes, I created the formulas for the Periodic and QTD measures but I did it based on direction from SAP.  Is that what everyone refers to as a 'custom' measure?  Does anyone have other formulas where they somehow tell the system how to handle the issue if there is no data found in a subsequent period when trying to run periodic or QTD reports on a YTD system?  If so I would be most grateful if you could share them or any other details you have on the subject.  Thank you.
    Thank you,
    Vicki Shrontz

    Easy, just remember that my TIME dimension name is PERIODS and my ACCOUNT dimension name is INACCT:
    For YTD cube (in my sample) we have 3 measures:
    YTD:
    MEMBER [MEASURES].[YTD] AS 'IIF(([%INACCT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC" OR [%INACCT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="LEQ"),-([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%PERIODS%].[LEVEL02])), ([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%PERIODS%].[LEVEL02])))' SOLVE_ORDER=3
    PERIODIC:
    MEMBER [MEASURES].[YTD] AS 'IIF(([%INACCT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC" OR [%INACCT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="LEQ"),-([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%PERIODS%].[LEVEL02])), ([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%PERIODS%].[LEVEL02])))' SOLVE_ORDER=3
    MEMBER [MEASURES].[PERIODIC] AS 'IIF(([%INACCT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC" OR [%INACCT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="EXP") AND NOT ([%PERIODS%].CURRENTMEMBER.PROPERTIES("2/CPMB/PERIOD")="TOTAL" OR  [%PERIODS%].CURRENTMEMBER.PROPERTIES("2/CPMB/PERIOD")="Q1"  OR [%PERIODS%].CURRENTMEMBER.PROPERTIES("2/CPMB/PERIOD")="JAN" ), [MEASURES].[YTD]-([MEASURES].[YTD],[%PERIODS%].LAG(1)), [MEASURES].[YTD])' SOLVE_ORDER=3
    QTD:
    MEMBER [MEASURES].[YTD] AS 'IIF(([%INACCT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC" OR [%INACCT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="LEQ"),-([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%PERIODS%].[LEVEL02])), ([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%PERIODS%].[LEVEL02])))' SOLVE_ORDER=3
    MEMBER [MEASURES].[PERIODIC] AS 'IIF(([%INACCT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC" OR [%INACCT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="EXP") AND NOT ([%PERIODS%].CURRENTMEMBER.PROPERTIES("2/CPMB/PERIOD")="TOTAL" OR  [%PERIODS%].CURRENTMEMBER.PROPERTIES("2/CPMB/PERIOD")="Q1"  OR [%PERIODS%].CURRENTMEMBER.PROPERTIES("2/CPMB/PERIOD")="JAN" ), [MEASURES].[YTD]-([MEASURES].[YTD],[%PERIODS%].LAG(1)), [MEASURES].[YTD])' SOLVE_ORDER=3
    MEMBER [MEASURES].[QTD] AS 'IIF(([%INACCT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC" OR [%INACCT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="EXP"),IIF([%PERIODS%].CURRENTMEMBER.PROPERTIES("2/CPMB/TILEVEL")="QUARTER",[MEASURES].[PERIODIC],IIF([%PERIODS%].CURRENTMEMBER.PROPERTIES("2/CPMB/TILEVEL")="MONTH" OR [%PERIODS%].CURRENTMEMBER.PROPERTIES("2/CPMB/TILEVEL")="WEEK" OR [%PERIODS%].CURRENTMEMBER.PROPERTIES("2/CPMB/TILEVEL")="DAY",SUM(PERIODSTODATE([%PERIODS%].CURRENTMEMBER.PARENT.LEVEL, [%PERIODS%].CURRENTMEMBER),[MEASURES].[PERIODIC]),NULL)),[MEASURES].[YTD])' SOLVE_ORDER = 3
    B.R. Vadim

  • Spry Image Slideshow with Filmstrip Not Working in IE and Spacing Issues with Text on Page

    Hello,
    Can someone please help me figure out what is wrong. The slideshow works in Firefox and Safari. However, it doesn't work in IE.
    Also, can someone help me figure out how to make it so that the text on the page wraps around the slideshow instead of hiding under it?
    http://www.lukesfitnessbootcamp.com/
    I appreciate any assistance you can provide.

    I have a similar problem. I've added a note to reference your problem. I've not got an answer to date.
    Cliff

  • Telephone Number Links no longer work...and other issues

    I received the 2.3.3, 4.5.608.A956, update a few feeks ago and since then I have noticed reduced functionality and after combing these forums and Motorola's forums I am curious if I  am alone in these findings.
    One) Before the update if I looked something up in Google or an app presented a phone number I could tap it and the phone would switch to the phone controls and would dial the number. Not anymore! Now if I tap a phone number the phone controls open but the number is not in the dial window.
    Two) If you use the Motorola widget, Contact quick tasks, and have them displayed on one of your home screens and you use the physical keyboard, causing the screen to rotate 90 degrees, they get blurry! That's right the text is blurry on the screen. It overlays the text on top of itself twice but slightly offset so it looks blurry.
    Anyone else seeing anything like this?

    Give this a try Guys it should help some b33
    Here is How you Clear the system Cache on the Bionic : Do as Follows
    Step 1: power your bionic down
    Step 2: hold volume up, down, and power simultaneously
    Step 3: use the volume down to navigate to "recovery," use volume up to select
    Step 4: you will get a screen with a triangle with an exclamation point, next to an Android. Press volume up and down simultaneously
    Step 5: use the volume rocker to navigate to "wipe cache" and use the power button to select.
    Step 6: after it has finished, use the volume rocker to navigate to "reboot system now" and use the power button to select.
    You Can also Try a: Soft Reset
    Here's How to perform a Soft Reset For your Bionic :  b33
    Soft Reset - DROID BIONIC by Motorola
    A soft reset is the most useful tool for resolving a variety of issues. In most cases, a soft reset will not affect data on the device, unless the battery is very low.
    If the device doesn't respond to input, remove then re-insert the battery.
    Press and hold the Power button.
    Select Power off.
    Press and hold the Power button to power the device on.

  • Fiscal Period and Calmonth issue in SSM 7.0

    In Fiscvar V3 Where Fiscal Year is not from Jan to Dec but April to Mar, PAS not reading Fiscal Period correctly.
    Workaround suggested is to Create BWFISCPERINFO document in PAS under the model and mention periodicity as
    MONTHLY
    2009001 200904 
    which means ist Fiscal Period of 2009 = 4th Month(april) of 2009.
    The BW Query with oFiscper as Time Dimension is not importing data beyond March 2009 while BW Query
    with 0Calmonth is populating upto current month of July 2009. What could be reason for this anaomaly in data import ?
    M Akhtar

    Good day M Akhtar,
    I would suggest rechecking your BW Query with oFiscper to make sure that you have set the fiscal period to start in March and not set the data to be imported to only be March. It may be that your current settings are only bringing in the data for March.
    Regards,
    Bob

  • Command z doesn´t work on pages and other issues

    Hi, I have a problem… I accidentally changed a table from inline to floating and IT DISSAPEARED!!.. sooo… I tried to undo mi mistake and cmd Z didn´t worked… sooo… I tried to do a new table and I couldn´t create a new one.
    I restarted pages… Nothing...
    I restarted my macbook… nothing...
    I don´t know what else to do!!! help!!!
    BTW: I have a late 2011 macbook pro with OS X Lion 10.7.5 with Pages`09 v 4.3
    Thank you!!!

    Try opening the file and reverting to a previous version.
    From memory in Lion you did that by command clicking up near the name of the file near the top of the window.
    You probably didn't lose the table, just caused it to pop over and off the page because it didn't fit.
    Peter

  • I have the Photoshop Photography Program and every time I try open Photoshop CC it asks me for a Serial Number. It keeps saying my trial period has ended. How can I get this working since Adobe doesn't issue Serial Numbers for CC.

    I have the Photoshop Photography Program and now every time I try open Photoshop CC it asks me for a Serial Number. It keeps saying my trial period has ended. How can I get this working since Adobe doesn't issue Serial Numbers for CC.

    Jodie84,
    I have just checked your account and found that you indeed have bought a Creative Cloud for Teams subscription but you have assigned the single seat to another user hence you ( If you are using your own Adobe ID ) are getting the trial error message.
    Two options : Either reassign the seat to your self or add an additional seat and invite your self in the same Team.
    Cheers,
    Kartikay Sharma

  • Warranty against period and/or Hrs (which ever will be First)

    Dear All
    Looking for your suggestion...
    I have configured warranty against period (1 yr). which is working smoothly, Now company has a requirement to check the warranty against Hours as well (Eg.1000 hrs). which ever completes first. 1 yr or 1000 hrs of machin usage. how can i do it.
    I had created a Charecterstic CT04 for both of them
    Warranty _Period ( 12 months)
    Warranty _Hours) (1000 Hrs.)
    and maintainted it at Warranty master (BGM1), but when i am assiging this Master warranty to Equipment (IE01), status is negative with an error   " unit of measurement doesnot supported"
    can it be possible through Measuring Point?
    If yes then how can i check it during Service Notification (IW51). Here i want to add a field in ehich i can enter the  machin working hours Lets say 885 hrs, so it can be verify either Period or Hours.
    Usually this is being practises in Automobile companies while giving Free services.
    1st Free service will be valid before 1000 kms, 2nd free service will be free till 5000 kms etc.
    Please help me on this.
    Thanks is advance.
    Sudip Sinha
    Edited by: sudipsinha on Oct 18, 2011 10:59 AM

    In theory, CS1 should be treated as higher than AF11.  AF11 would be closer to CS1.  That being said, your QoS policies can be configured to do whatever you want so your switch may be configured to drop CS1 way before it drops AF11.

  • I have a mid 2009 macbook pro and my issue is that I installed windows 7 and when I wan to install the drivers it says " bootcamp x64 is unsupported on this computer model" I tried installing the drivers with the bootcamp 4 but it did not work either

    I have a mid 2009 macbook pro and my issue is that I installed windows 7 and when I wan to install the drivers it says " bootcamp x64 is unsupported on this computer model" I tried installing the drivers with the bootcamp 4 but it did not work either it says that i have a newer bootcamp version. I tried a few tricks but they didnot work. I hope to be helped

    Welcome to Apple Support Communities
    You can install a 64-bit Windows 7 or Vista version in your Mac. Make sure you downloaded these drivers > http://support.apple.com/kb/DL1630 Also, if you have the Snow Leopard DVD you used to upgrade your Mac or the OS X DVD that came with your Mac, you can use it to install the Boot Camp drivers

  • My home button doesnt work at all and its not broken and it didnt fall. What should I do to solve this issue?

    This is an iPad replacement because the ne that I had before rejected my sim card so Apple sent me a new ne for free. I received it last Wednesday and the home button didnt work correctly. And today, a week later, it just stopped working completely, whenever I press it, it doesnt work. What should I do? Are there any steps that I can take to try to solve this button issue?

    hmm.
    it literally does nothing?
    If the engraving is important to you, then you may wish to get it repaired.
    I would recommend calling iphone repair www.iphonerepair.com
    or iresq www.iresq.com
    but first try this:
    https://discussions.apple.com/message/15143496#15143496
    --Sam

  • Apache and Jserv issues - AppsLogin and AppsLocalLogin not working

    Hi,
    I am trying to understand the Apache and Jserv issues
    Home page - http://11i-tst-02.cisco.com:38901 - working fine
    This confirms that Apache core module is working fine. Does this confirm about the pls module also ?
    Apps local login - http://11i-tst-02.cisco.com:38901/OA_HTML/AppsLocalLogin.jsp - throwing Java Exception
    Request URI:/OA_HTML/AppsLocalLogin.jsp
    Exception:
    java.lang.NoClassDefFoundError
    at oracle.apps.fnd.sso.SSOManager.getAppsServletAgent(SSOManager.java:1727)
    at oracle.apps.fnd.sso.SSOManager.getLoginUrl(SSOManager.java:316)
    at oa_html._AppsLocalLogin._jspService(_AppsLocalLogin.java:410)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:385)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:259)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:178)
    at oracle.jsp.JspServlet.service(JspServlet.java:148)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:479)
    Is it related to SSO ? Because error mentions about SSOManager
    But why does AppsLocalLogin need to go thru SSO ?
    Doesn it mean Jserv issues ? I am able to see same message logged in jvm logs ?
    Restarting Apache doesnt help
    Servlet login - http://11i-tst-02.cisco.com:38901/oa_servlets/AppsLogin - throws Internal Server Erorr
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    Apache log doesnt show any error
    Servlet test works - http://11i-tst-02.cisco.com:38901/servlets/Hello
    Example Apache JServ Servlet
    Congratulations, ApacheJServ 1.1 is working!
    OAM works - http://11i-tst-02.cisco.com:38901/servlets/weboam/oam/oamLogin - Navigating to SSO page for authentication
    AOL test works - http://11i-tst-02.cisco.com:38901/OA_HTML/jsp/fnd/aoljtest.jsp
    FND_WEB.PING works - http://11i-tst-02.cisco.com:38901/pls/QTCSTG/FND_WEB.PING
    Connection test works - http://11i-tst-02.cisco.com:38901/servlets/oracle.apps.icx.common.ConnectionTest
    So, my question is why AppsLogin and AppsLocalLogin are not working - if servlets / AOL / FND / OAM links are working
    Is there issue with Jserv ?
    Can someone please explain the significance of the above tests
    And which tests need to pass for AppsLogin and AppsLocalLogin to work
    Thanks

    Since all the tests work fine as you stated above, I suggest you do the following:
    - Rerun Autoconfig on all tiers
    - rm -rf $OA_HTML/_pages
    - Bounce Apache

  • Some songs in my Ipod classic get get off after a few seconds of playing, but they work fine in ITunes and other Ipods.  I have reset the classic several times and same issue happens, any ideas?

    Some songs in my Ipod classic get get off after a few seconds of playing, but they work fine in ITunes and other Ipods.  I have reset the classic several times and same issue happens, any ideas?

    I have that exact same problem! It plays albums fine. But individual songs including ones downloaded from iTunes either skip or play the music of another totally different song. All play fine on iTunes and my iPhone... Got this one to replace my dying 5th gen classic.
    I hope there is a fix for this, cause it *****!!!!

  • Report Issue - Remove Work Hrs. link to Shft Hours

    Hi,
    I have a Equipment Log Report, where in output it show the Equipment details with Account assignment category, General settlement receiver, Shift Hours, Work Hours, Idle Hrs, Maint. Hrs., Production Hours etc...
    There is a condition in report that when we insert Shift Hrs. 24, it tell about insert Work Hrs. We have to insert hrs. in Work Hrs. column.
    Now due to some problem, we want that after shift hrs., not necessary to fill the Work Hrs. (means Shift hours should not depend on Work Hrs.) - If Idle hrs. count 24 Hrs, then no need to maintain Work Hrs.
    Please check my code...and suggest...
      CASE ts_screen-work1.                                          " Work Hours 1
        WHEN space.
          IF ts_screen-work2 IS NOT INITIAL                      "  Work Hours 2
             OR ts_screen-work3 IS NOT INITIAL                 " Work Hours 3
             OR ts_screen-work4 IS NOT INITIAL                 " Work Hours 4
             OR ts_screen-konty1 IS NOT INITIAL                 " Account assignment category
             OR ts_screen-empge1 IS NOT INITIAL.              " General settlement receiver
            MESSAGE text-a02 TYPE 'E'.
          ENDIF.
        WHEN OTHERS.
          IF ( ts_screen-konty1 = space OR
             ts_screen-empge1 = space ).
            MESSAGE text-a01 TYPE 'E'.
          ENDIF.
      ENDCASE.

    refer following thread may be it will help....
    <<Guesswork link removed by moderator>>
    Edited by: kishan P on Jun 1, 2011 1:20 PM

  • Facing issues with 3g Mobile Data Usage Current Period and Apps Volumes are differ.

    Hi All,
              i am facing some data mismatch with my iphones. the actual mobile data usage volume and data usage for Apps volumes are showing different data.
    for eg : Mobile Data Usage - Current Data Usage - Current Period volumes showing 342 MB but if i check the  Use Mobile Data For Apps Volumes for all Apps including System Service Data's and Uninstalled Data's are showing very less ( around 200 MB only ) compare with Current Period Volumes.
    Mobile Data Usage - Current Data Usage - Current Period  and Use Mobile Data For Apps ( Apps wise data usage ) Data's are not matching..
    Please let me know will it show like that only or its an issue ????  if you want i can share the screen shot as well.

    Hello kasinathadurai,
    Welcome to the Apple Support Communities!
    I understand that you have some questions about cellular data usage and apps that use cellular data. For this question, I would refer you to the attached article that will help explain how data usage, call time, and app cellular data is calculated. 
    Learn about cellular data settings and usage on your iPhone and iPad (Cellular Model) - Apple Support
    Have a great day,
    Joe

Maybe you are looking for

  • Best Browser for my MacBook

    My almost 5 year old MacBook running OS X 10.6.8 (I haven't upgraded yet) is overheating a lot when I use Safari 5.1.10, I've tried Chrome but I didn't like it. I'm looking for a browser that will perform well on a Core 2 Duo MacBook with 2 GBs of RA

  • Wrong (defunct) Spotify account received subscription payment

    Used to have a FB linked spotify account - deactivated that link and opened spotify under another email. Premium member.  I went to update my card for payment (had expired) and noticed only after entering and submitting payment info, spotify (on comp

  • Weblogic 8.1 Webservice Client Proxy Authentication not working

    We have a desktop console based Weblogic webservices client application that uses client stubs to establish the connection and communicate with the server where the WSDL was hosted. We are facing a problem in authenticating the Proxy user with valid

  • CIN: excise invoice J1IIN     URGENT

    While i am creating the excise invoice (J1IIN) following error is occuring. Error in allocating internal document number Interval not found Number object J_1IINTNUM And the document is not get saving. Sunil

  • BGP and MP-BGP

    What is difference between BGP and MP-BGP? and what is the exact application of both?