DIF Time infotypes: Availability of time infotypes in the decoupled infotype framework

Hi (fellow) experts,
My primary and most wondered question:
Does anyone out there has an idea on SAP schedule to release compatibility fix for time infotype (constraint Z) in the decoupled infotype framework?
Many of us lately talk about and use the decoupled infotype framework; I see many clients interested in HR-Renewal PAOM attractive interface but when question turns around time data I tend to change subjects)... HR Renewal 2.0 has awesome new features such as the Payroll Control Center and the possibility for dynamic action but still no access to time infotypes... Tricky to manipulate infotype 2010, 0416 data without accessing the backend system to correct payroll data... I don't even start on 2001 absence infotype..., etc...
I also have some question on the SAP official working model for certain PA infotype that update in background time data (e.g. 0080 for instance). 
There are some country specific infotypes that bothers me a little bit because I don't  understand the SAP working model behind it; it's about french infotype Work stopped (0424) which is a data entry screen for work incapacity derived from illness or accident at work that update infotype 2001 in the background.
Now if I take a detailed look at the decoupled class CL_HRPA_INFOTYPE_0424 method SPECIFIC_INSERT_COMPUTATIONS for instance I can see how the specific logic to create infotype 2001 is nicely commented out in the code while in the backend both those infotype are completely integrated.
So what am I to understand: class is actively decoupled and I can use it but I will never have the same functionality that I have in the backend system? or is something else? same question apply to infotype 0080 under not only the french template, but UK, Spain... etc... , in the french version it updates both infotype 0424 and 2001 in the backend but I don't see nothing of the sort in the DIF even though there is an active specif FR convertion class (does not seems to be in working order and no infotype 0424 update anywhere nor of course 2001)...
Let me be clear: I think the DIF initiative is a great innovation from SAP; very easy to understand, manipulate and so much more versatile. It would be awesome if everything would be ready to use ... very powerful tool.
Thank you for time gurus!!!
Antoine

Hi Gurus:
Well well sounds like some effort in decoupling time infotype development has been released into EHP8.
At least I am able to see development class and FPM configurations for infotypes 2001, 2006, 3355... so even if not everything is ready I can now see things are well on the way!
Cheers.

Similar Messages

  • Create IT2013 entry with the decoupled infotype framework

    Hello,
    I tried to create an IT2013 (Quota corrections) entry with the new decoupled infotype framework but I didn't success.
    I first tried by using if_hrpa_masterdata_bl->get_infty_container to get a container (and then change it and save it) but I get an error because the time constraint for IT2013 is set to 'Z' and the framework don't handle it.
    So I guess this is because if_hrpa_masterdata_bl and other related classes/interface can only be used for PA and not for Time.
    Therefore I tried to find Time infotypes dedicated classes and I found some.
    The most interessant one is CL_PT_BLP_IT2013. It looked perfect, with everything I needed, but it doesn't work: when CL_PT_BLP_IT2013->IF_HRPT_BLP_INFOTYPE~GET_INFTY_CONTAINER is called, it tries to create an instance of CL_HRPT_INFTY_TIME_CONTAINER but raises an exception. Not surprising because the only non-commented line its constructor executes is:
    METHOD constructor.
      RAISE EXCEPTION TYPE cx_hrpa_violated_assertion.
    *  if_hrpa_infty_container~a_tclas          = 'A'.
    *  if_hrpa_infty_container~a_pskey          = pskey.
    *  if_hrpa_infty_container~a_infotype_logic = infotype_logic.
    ENDMETHOD.
    Moreover, the description of the class CL_HRPT_INFTY_TIME_CONTAINER is: "DO NOT USE! HR: Time Data Container", so it's not suprising at all it doesn't work.
    I found some other Time infotypes related classes like CL_PT_BLP_INFOTYPE or CL_PT_TD_INFOTYPE but I couldn't figure out how to create a new IT2013 entry with those ones.
    At the end of the day, I couldn't find any way to create a new IT2013 entry using the decoupled infotype framework.
    Can someone please help?
    Thanks in advance.
    Mathieu

    Hi,
    The time infotypes 2XXX are not yet decoupled as per the standard infotype framework. Hence there are no decoupled classes delivered in standard.
    Regards
    Roy
    SAP Labs

  • Time contraint for wage types which are the subtypes of the Infotypes.....

    Dear Sap folks ,
    Anybody can explain that "what is the role of "Time contraint"(Once / Sev.Times) for wage types which are the subtypes of the Infotypes like IT0015 and  IT0014 (V_T512Z).
    Thanks & Rgards
    Maria Carlos Perera

    Hi,
    any wage type marked with once can be maintained only once for that specific period and several times means it can be there more than one time.
    For example, IT0015 wage type XXXX has value once. You are booking this wage type on perticular day say 12.06.2011 then you cannot book same wage type XXXX on 12.06.2011. But you can book this on any  oteher day of that month. if its several times then you can have several entries on same date.
    Regards,
    Poorvi.

  • No time constraint reaction for infotype 2005 with time contraint class 00u2019

    Hi,
    We have a incident wherein employee is trying to put overtime, IT 2005 for the period when he is on standby IT 2004. It gives error u2018No time constraint reaction for infotype 2005 with time contraint class 00u2019.
    Can anybody help?

    Hi,
    Please maintain table V_554Y_B for 2005 TC class 00 and 2004 infotype.
    Regards,
    Dilek

  • One parameters should pass two Infotypes at different times

    I have two Infotype 0014 & 0015 which needs to be passed to the Class Z_CUSTOM_CLASS method CHECK_EGLIBILITY, Can any body help me in passing these Infotypes at different times but only through One Parameter ( IMPORTING or changing ) .
    I need to know the TYPE or LIKE or Type Ref to for that Par1 ?
    I dont want to specify two parameters each defined based on the structure of P0014 or P0015.
    Z_CUSTOM_CLASS => CHeck_ELIGIBILITY
    importing
    par 1  = 0014
    or 
    Z_CUSTOM_CLASS => CHeck_ELIGIBILITY
    importing
    par 1  = 0015
    the class should be able to process both infotypes, the developer who uses this method would be given Privilege whether to pass 14 infotype or infotype 15 depending on situation.
    it would be of great help if you can show some sample code.

    You can use PRELP structure to type this parameter. This would work similary to customer exits ZXPADU01/02
    data p0014 type p0014.
    data innnn type prelp.
    "before passing to method cast it to PRELP structure
    CALL METHOD CL_HR_PNNNN_TYPE_CAST=>PNNNN_TO_PRELP
    EXPORTING
    PNNNN = p0014
    IMPORTING
    PRELP = INNNN.
    "then pass it to method
    Z_CUSTOM_CLASS => CHeck_ELIGIBILITY
    importing
    par 1 = innnn.  "type PRELP
    "in method cast it back to either p0014 or p0015
    data: p0015 type p0015,
             p0014 type p0014.
    case innnn-infty.
    when '0014'.
       CALL METHOD CL_HR_PNNNN_TYPE_CAST=>PRELP_TO_PNNNN
         EXPORTING
           PRELP = INNNN
        IMPORTING
          PNNNN = p0014.
       "your coding here
      when '0015'.
       CALL METHOD CL_HR_PNNNN_TYPE_CAST=>PRELP_TO_PNNNN
         EXPORTING
           PRELP = INNNN
        IMPORTING
          PNNNN = p0015.
       "your coding here
    endcase.
    Regards
    Marcin

  • Infotype "Planned Working Time";

    hi gurus,
    i need to create a report to check infotype "planned working time"
    and to check if workschedule exists
    please let me know how to go bout its logic.
    thanks in advance.
    anuj

    to check for the work schedule status
    you just need to hit 1 field for selection crteria and ie,pa0007-schkz Work Schedule Rule .
    and the given below code  can get you what you want
    tables:pa0007.
    parameter:p_pernr like pa0007-pernr.
    data: itab type table of p0007 with header line.
    start-of-selection.
      select * from pa0007
      into corresponding fields of table itab where pernr = p_pernr.
    if itab-schkz = ''.
        message 'data is not  maintained' type 'E'.
    else.
    loop at itab.
      write:/ itab-pernr, itab-schkz.
    endloop.
    endif.
    hope this will solve your problem
    thankx
    bhanu....

  • In iCal, "Available Meeting Times" greys out working hours one day off, MS Exchange

    I am using iCal, accessing an MS Exchange server. When setting up a meeting, "Available Meeting Times" greys out the non-working hours of potential meeting participants. However, the days are one day off. E.g. the working hours of my collegues are displayed are Tuesday-Sunday instead of Monday-Friday. The dates and times of meetings are relayed correctly. Only the display of the working hours seems to be off.
    Needless to say that my collegues are using Windows Outlook, and everything works there.

    I still have the same issue. Had it ever since at least 2010 and meanwhile we switched Exchange-Servers and I'm on Mavericks, but still. Looks to me as if iCal requests something like "getWorkDays" from teh Server. The Server probably replies [2,3,4,5,6]. When the week starts on Sunday, this is perfectly fine. But if the Week starts on Monday, this will give you Tue-Sat as available Days. So it might be a bug in either Exchange or iCal to treat that information correctly, but I'm not obv. not sure about that.

  • How do I show my available meeting times in iCal using iCloud?

    Currently, my "Available Meeting Times" are grayed out every day, including the invitees for an event when viewing via the Availability Panel on iCal 5.x (Lion) and also on iCal 6.x (Mountain Lion). Anyone have any advice?
    Thanks!

    William Lloyd wrote:
    Then in iTunes check the relevant projects are visible and that home sharing is turned on.  iTunes must also be running, I think.
    I have run the Previews in Aperture and also switched on the "share previews with iWork and iLife".
    Home Sharing is on, but what do you mean by "check the relevant projects are visible"?
    I cant see any reference to Photos within iTunes.
    Thanks.

  • USB HD no longer available in Time Machine

    I have had a USB HD attached to my Airport Extreme, in use as a backup disk for Time Machine.  This has worked fine for over a year, but I recently noticed that backups were no longer being completed due a full disk.  When I look in Time Machine and "Select Disk," the USB drive no longer appears in "Available Disks" list.  I plugged the disk into my MBP and completed a backup directly, so the disk works fine.  I looked in the Airport Utility and the disk appears under the "Disks" tab.  Why would it no longer be available for Time Machine use?  Has something changed regarding support for this type of setup? 
    Thank you.

    Apple has never fully committed support of the Time Machine/Airport Extreme combination.  I have a Airport Extreme 6th gen that supposedly supports the Time Machine, (page 13 of the installation manual).  After a year of experience I have concluded that it does not work - period.  If you have any critical data on your system(s) I would recommend that you use a dedicated backup/recovery product like Carbon Copy Cloner.

  • Note messages at the time of availability check in sales order entry form

    Hello Friends,
    Im getting the following note messages at the time of availability check in the sales order entry form.
    ATP Process resulted in no data
    User defined exception in package OE_SCHEDULE_UTIL Procedure Load_Results_from_rec
    User defined exception in package OE_SCHEDULE_UTIL Procedure Load_Results_from_tbl
    After this when we book the order, the order line status becomes 'Booked' and does not change to 'Awaiting Shipping'
    As a result of which im not able to proceed ahead with the rest of the order to cash cycle.
    Can somebody please guide me in resolving this error.
    We don't intend to use ATP as the client's business process is such that they maintain adequate inventory balances.
    Regards
    Anil Wadhwa

    Hi Anil
    Are you using a RAC DB configuration? Please check if this is true, there are special setup steps that are required to be performed in case of RAC DB configuration and this issue usually occurs if such configuration is missing specifically if its happening randomly for some ATP requests.
    You can find actual steps to be performed on metalink.
    Thanks
    Navneet Goel

  • Due to NAS issues, when I started a new time machine backup it did not have the old backups available. My question is do I need to delete them or will time machine automatically reclaim the space?  Only one Sparse Bundle, same name.

    Due to NAS issues, when I started a new time machine backup it did not have the old backups available. My question is do I need to delete them or will time machine automatically reclaim the space?  There is only one sparse bundle but when I enter time machine I don't see my historic backups.  I use a synology DS212 for my time machine.  Started a new backup which is 218gb but it says 618 gb is occupied  therefore it looks like 2 or 3 backups are still on the disk. Before my NAS issues the last backup was in 2014.  As you can see there is a second sparse bundle from 2012.  Not sure what that is.

    This is an old message now, but what happened to me similarly was:
    I had a major computer crash and through complicated pathways ended up reinstalling (Mavericks) as a new user (long story).
    At least I had good Time Machine backups on an NAS drive (Synology DS212j), or so I thought - when I started Time Machine up again, the old backup file was gone, replaced by a new one using my "new computer" name. The old file was gone both by directly mounting the NAS drive and by clicking "Enter Time Machine".
    It's like I had {OldShareName}.sparsebundle and then it was replaced by {NewShareName}.sparsebundle, all of the old info vanished.
    (I have spent a week finding old files elsewhere and have completed a satisfactory self-restore. It pays to "archive" [my own variation of] as well as "back-up".)
    My belief is that if this were a wired-netword-drive, e.g. plugged right into my iMac with a USB cable, then the old file would have remained.
    But this is an NAS drive, connected directly to my Airport wireless router, and I don't know the significance of the fact that it stores its Time Machine backups as "sparsebundle" files rather than simply as plain(er) files.
    As usual when things get complicated with computers (not just Apple computers) there was never a warning message. Something like "YOU'RE ABOUT TO DELETE A TIME MACHINE BACK-UP FILE!!!" would have made my life a lot simpler.
    BTW, I did try a "restore from Time Machine" option the first thing I had my "new computer" (old hardware, 2009 iMac) up and running, using Migration Assistant, and it ran for many hours and then failed in the wee hours - what that has to do with anything I'm not sure.
    I'm not sure that I have a question about this other than "why do these things happen to me?", but it's a warning. Apart from that I've been very happy with the stability and reliability (but not the cost or set-up complexity) of NAS vs. directly-cabled external drives.
    Charles

  • UCCX8 Is there a log or report that shows IVR/CTI port availability over time

    Question:
    Is there a log or report that shows IVR/CTI port availability over time?
    Objective:
    We are trying to determine if, when doing a Call Redirect step, the IVR/CTI port stays the same or the port is made available by the first script and the second script, where the Call Redirect is redirecting to, has to reserve its own IVR/CTI port.
    What we have done already:
    We limited the Call Control Group to 1 CTI port and ran the scripts that do the Call Redirect step and it worked fine, so we are assuming that there is not a point where the transfer takes up two IVR/CTI ports at the same time.
    -Lauren

    Hi,
    if it's UCCE, then if I remember that correctly, there is a webview report that would tell you Network Trunk Group utilization. Or, actually, you can extract this information yourself from the HDS table named Trunk_Group_Half_Hour.
    G.

  • Why do I get message "back up disc is not available" for Time Machine?  It

    why do I get message "back up disc is not available" for Time Machine?  It's plugged in.

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the word "Starting" (without the quotes) in the String Matching text field. You should now see log messages with the words "Starting * backup," where * represents any of the words "automatic," "manual," or "standard." Note the timestamp of the last such message that corresponds to a failed backup. Now
    CLEAR THE WORD "Starting" FROM THE TEXT FIELD
    so that all messages are showning, and scroll back in the log to the time you noted. Select the messages timestamped from then until the end of the backup, or the end of the log if that's not clear. Copy them (command-C) to the Clipboard. Paste (command-V) into a reply to this message.
    If all you see are messages that contain the word "Starting," you didn't clear the text field.
    If there are runs of repeated messages, post only one example of each. Don't post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Some personal information, such as the names of your files, may be included — anonymize before posting.

  • Is there a feature in iCS that shows only the time scheduled/available on my calendar?

    Is there a filter mode that will mask the content of my schedule and show only
    the time scheduled/available?
    <P>
    This feature, which will be called "free/busy" time, will be included in the
    next major release of iPlanet Calendar Server. There will be an Access Control
    List(ACL) that provides Free/Busy access, as opposed to only Read access.

    Apps are on my iPad and worked fine with iOS 6. When iOS7 was loaded, I can no longer sign in to these two apps using my Apple ID. These apps are on my phone and work fine.  This problem is on on my iPad. 

  • 'iphoto will open as soon as the iphoto library is available. Time machine might be backing it up" - message been cycling for hours now. Can't access anything in photos

    Up till yesterday, our iphoto was working correctly. At one point, I noticed the slideshow wasn't displaying, so I opened iphoto and the message said there was a newer version, so I selected upgrade. The next message said the library needs rebuilding. Selected rebuild. Next,
    I got the message in the header, and it's been cycling for hours now with no result. I'm not computer friendly, so I could use some help.

    Thanks for the reply.
    I was wrong - the OS is 10.6.8. Is that old, too? I don't know where to find the version of iphoto I had and which one is trying to upgrade. Where would I find that. I restarted and still the same message.
    "Your photo library will not be readable by previous versions of iPhoto after the upgrade. The upgrade process for very large libraries may take an hour or more to complete." selected upgrade:
    "iphoto is unable to open this library. The library has issues that require rebuilding. The iphoto library is missing required database files and must be rebuilt before it can be opened" selected rebuild:
    Next message is: "waiting for iphoto library...will open as soon as library is available. Time machine might be backing it up" and cycling.....
    During this time, the iphoto file is unavailable, all options greyed out.
    I have an external hard drive connected and time machine is on.
    Like I said, not literate with computers, so I hope I'm giving the right information

Maybe you are looking for

  • Error in ALE service 29 Could not determine recipients for message type MAT

    Hi Experts, While transferring the material using ALE am getting  error 29 ie   'Error in ALE service'  and message is 'Could not determine recipients for message type MATFET'. Also i ve recieved the materials with the proper status al the end am get

  • Connecting EHP4 to BI system

    I have a new sandbox ERP 6 EHP4 java system. I installed portal and portal core software units and ehp4 portal content, but did not install bi-java as we have a seperate system with bi-java installed Now I am trying to connect the ERP java system to

  • How to stop section condition to run in obiee11g

    Hi Experts, we have two prompts in a dashboard page. on basis of these values different report got called. i have different section on page having different condition on section, so when user select both values and apply the condition got checked and

  • Changing defaults on Pro 8600

    Hello I am having trouble with the default settings on my computer.  Everytime I go to print something it automatically has a checkmark for 2 sided and black and white. This usually hasn't been a problem, annoying  but today I did a mail merge in pag

  • Workbooks

    When I transport a workbook it transports ok to the test system - appears in the role and can be opened.  However, when I import to production it appears in the role but when I try and open it I get a message that it does not exist in the data store.