TMW: auto loading employee list in time data screen

Hi all,
Within TMW one can have an employee list.  I'd like to get the employee selection auto loaded in the time data subscreen.  Without double clicking on the employee selection or using the button "copy selected records".
Anyone have an idea how to do this?
Please help!
Kr,
Jonathan

Sakira,
Thanks for the feedback.  I don't think i was clear enough, sorry.
The problem i have is in the Time Manager Workplace.  There a user gets an employee selection (we are using the multiple persons view btw).  If the user wants to register absences for his/her crew he still needs to transfer his crew members to the time data screen.
Standard only the first person of his crew is transfered.  It would be really helpfull if his complete crew was transfered automatically.  So he starts TMW and can immediately start registering absences for his crew.
BTW thanks for the quick response!
Kr,
Jonathan

Similar Messages

  • Soft Reset starts, then goes black on time date screen

    Unable to turn on my Tungsten E, so I did a soft reset.  The logo comes up and then, only for an instant, the time date screen.  Almost immediately it goes black again.  I've tried several times, and I get the same result.  What could be wrong and how can I correct?
    Post relates to: Tungsten E

    Sounds like your battery could use some juice. Try plugging your palm into the wall charger for 3-5 hours. Then try turning it on again.
    If it still does not turn on, try the soft reset while it is plugged into the wall charger.

  • OpenDirectory: Unable To Load Replica List, after Time Machine Restore

    I followed the following instructions provided on another thread (Open Directory: "Unable to load replica list"):
    Many Open Directory problems can be resolved by taking the following steps.
    1. The OD master must have a manually-assigned IP address on the local network, not a dynamic address.
    2. The primary DNS server used by the master must be 127.0.0.1 (that is, itself) unless you're using another server for internal DNS. The only DNS server set on the clients should be the internal one, which they should get from DHCP if applicable.
    3. Verify that the master's hostname matches its domain name by running the shell command
    sudo changeip -checkhostname
    4. Follow these instructions to rebuild the Kerberos configuration on the master.
    5. If you use authenticated binding, check the validity of the master's certificate. The common name must match the hostname and domain name. Deselecting and then reselecting the certificate in Server.app has been reported to have an effect in some cases.
    6. Unbind and then rebind the clients in the Users & Groups preference pane. Use the fully-qualified domain name of the master.
    7. Reboot the master and the clients.
    8. Don't log in to the server with a network user's account.
    9. Export all OD users, delete them, turn off OD, turn it back on, and import. Ensure that the UID's are in the 1001+ range.
    And got the following results:
    Check.
    Check.
    Resulted in the following console output: The names match. There is nothing to change.
    The touch command resulted in "No such file or directory." I circumvented this by manually creating the migration directory, then running the command again. The killall command failed saying "No matching processes were found." Opening the server app after that shows no change.
    My trusted certificate was apparently not restored from the backup, as it was no longer listed. I switched to the self-signed one until a CSR can be made.
    I'm not clear on what this actually means. There is no unbind or rebind functionality in the server app. Not to mention that my users or groups are no longer listed.
    Nothing changed after rebooting the server.
    Have always logged into server using the local server admin account.
    Where is this done? I don't see any place to do this in the Server App.
    At this point I'm suspecting that there are some serious Time Machine recovery bugs with server, as I have tried with multiple different restore points all ending in the exact same result.
    Any recommendations on where to go from here? I would love to do a fresh install, but need to archive the data from the server first. Unfortunately, I don't see how I can export each users' data without being able to log in as them.

    There seem to be some issues with PostgreSQL not running. Marketcircle Daylite and Billings Pro also won't start, and are showing errors to that effect.

  • TMW: refreshing the employee list inside user exit

    Hi everybody,
    We are using TMW in a project where the employee selection is based on relations in OM.
    Since those relations will change a lot in background the employee list in TMW needs to be refreshed regularly.
    Restarting TMW is not an option.
    How do i give the TMW application a message that the employee selection needs to be reloaded?  I would like to start the message from within the standard user exits (like PT_BLP_TMW_ENR)
    Can anyone give me a code example how to do this?  How do i find the active TMW instance from within the user exit?
    Thanks in advance!
    Kr,
    Jonathan

    Cancelled

  • ODI: How determine if auto load is complete and all data has gone through

    Hi All,
    I am currently executing the below scenario and following http://docs.oracle.com/cd/E26070_11/otn/pdf/integration/E26075_01.pdf for the same.
    SRC: AGILE
    TRG: OBIEE
    As per the above i get out of the box packages which are used and executed , since this is something which comes out of the box how to determine whether my data load is complete and data has gone through from SRC->ODM->TRG?
    My Operator and sessesion show success and secondly i don see any errors in logs as well .
    Any help ? Anybody already experienced above scenario please help .
    Cheers,
    Mak

    So who do I believe?
    Blog:  http://www.jamoroki.com
    James King
    about.me/jamoroki
      <http://about.me/jamoroki>

  • Stays on setting time/date screen!

    I plugged in my apple tv after not having it on in a while, now it stays stuck on the setting date and time screen, and the remote won't work!

    You have a network issue.  It has to be able to connect to the internet to set the system date and time.

  • Can you schedule pages to load at a specific time?

    Is it possible to schedule a page to load at a specific time/date? For example, I need my home page to update at 9am on Friday, but I will be out of the office at that time, can Dreamweaver do it for me automatically?
    I am using Dreamweaver CS3 on a Mac running OSX 10.4.11.
    Thanks,
    Elliott

    Here's a very simple sample using php. As its Thursday you will get the message 'This is Thursday and our prices are reduced by 25%' any other day and you will get the message '10% discount today'
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <?php
    $day = date('l');
    ?>
    <style type="text/css">
    #thursdayOffer {
    width: 400px;
    margin: 0 auto;
    border: 2px solid #900;
    text-align: center;
    #normalOffer {
    width: 400px;
    margin: 0 auto;
    border: 2px solid #900;
    text-align: center;
    </style>
    </head>
    <body>
    <?php
    if ($day == "Thursday") {
    echo "<div id='thursdayOffer'><p>This is Thursday and our prices are reduced by 25%</p></div>";
    else {
    echo "<div id='normalOffer'><p>10% discount today</p></div>";
    ?>
    </body>
    </html>
    Depending on how complex you want to get.....you may need to get the information from a database.

  • Get employee list

    Hi Expert,
    How do i get the list of employee who are in same employee subgroup , paysacle area, payscale group and allowance

    Hi
    Rightly said
    use standard T code  S_AHR_61016369 - Employee List
    use the selection screen and choose the required inputs.
    regards
    RR

  • Data Sheet View - Cannot Connect to Server at This Time. You can continue working with this list, but some data may not be available

    After a couple of years of trouble free operation, one of the lists in our SharePoint Foundation site suddenly (overnight) started presenting the error against Datasheet views on lists.
    The view returns a large number of items when working correctly c.6K - however Throttling Settings have been adjusted accordingly some time ago without detrimental affect on SharePoint users and network in general. As admin and therefore throttling at 20k
    items the error message still presents.
    The view was working fine at 4:30pm Wednesday 27/3, but was returning the error at 8:30am the next morning. To my knowledge very few items (if any) had been added to the list between those times and no system level changes had been made (SharePoint,
    SQL Express, or virtual Windows 2008R2 server).
    The problem is most apparent on 2 lists in SharePoint. I've checked that the settings within SharePoint admin are set to deal with queries that should accommodate the
    number of rows that are returned by the views associated with that list. It is still possible to create new items to the list and access data via 'standard views' that are presented with groups that are collapsed.
    Items in Documents Libraries on other parts of SharePoint and within the same subsite can be accessed at what feels like pretty normal speed -though small query size
    may mean the problem is masked to a large extent.
    More Specific
    The lists still open in Standard View -though much more slowly than was the case before the above error started to present.
    List Details
    Referrals Tracker (10,442 items) -the list was 10,420 something items on Wednesday when all was working fine.
    LD Tracker (4,390 items)
    Both lists have grown incrementally over the period of a couple of years rather than by adding a block of data to the list. Items are added/ updated one at a time using the associated
    form or directly into cells within a datasheet  view.
    That it is also experienced against the smaller list suggests to me that the number of items in the Referrals Tracker is not the main factor here.
    In attempting to resolve the issue I have managed to get datasheet views working that deliver 100 items and c2k items. Both views present much more slowly than we would normally expect.
    Throttling Settings
    List view limit - 12K items - has been this high for some time without damaging SharePoint performance across the company.
    Actions Taken So Far (no improved performance seen)
    The SharePoint Foundation WSS Content DB did was closer to the 10GB SQL Express limit earlier this month, however a clear down and rationalisation of versioning settings
    was undertaken to ensure that did not become a problem going forward.
    We did a Shrink on Thursday (the day the issue started presenting) to rationalise whitespace as all indicators were that this was where the problem may lie, but this has
    not resolved the problem.
    The WSS Content DB now sits at c5.5GB.
    What I Need to Know
    1) I'd like to understand what is causing the problem?
    2) What the fix is? or,
    3) How I might go about diagnosing the problem further to arrive at a fix.
    With all the above, I'm part wondering if the problem is related to the virtual server or poss SQL Express related rather than being a 100% SharePoint issue?

    Hi
    afearn,
    More often this is related to columns which are not editable by user, some columns are not editable in datasheet view. Please check if there is any new column addition and then you started getting this issue.
    Also datasheet view displays all items on same page so definitely it takes little long time then load in standard view.
    Let us know your results, thanks
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

  • Problem in displaying time data ID's in TMW

    Hi All,
    In TMW, i want time all data ID's to be displayed while creating an absence for an employee. I tried going through IMG and checking the Assignment of Time data ID's to Subsets. Inspite of setting the radio button to active /make availabe for input, but was not sucessful in getting them displayed on TMW.
    Please let me know how to rectify this issue.
    Regards,
    AM_BLR

    Issue rectified

  • SharePoint Auto Archive for List Data

    Hi,
    We have a requirement where we want the list items to be auto archived(copy to a separate list) after [n] years. The time duration is determined by one of the column of the list(created time/updated time).
    Does MOSS-2007 supports any built-in feature to supports auto archival for list data? If not whats the best to implement this.
    Thanks in advance,
    San

    Yes.  Using content types, you can set information management policy settings.  These settings allow you to expire documents based on content type.  What happens at expiration time can be configured.  A disposition workflow may be kicked off, or you could just delete the document.
    To try this out, go to list settings -> advanced settings and check "Allow Management of content types".
    Then click the document content type from the list setting page.  From the content type information page, click "Information managament policy settings".  Select "Define a policy..." and click OK.  from there you can configure expiration.
    Note:  You will have to configure any workflows that should run at expiration time BEFORE configuring expiration itself.
    EDIT: looking further, I see you want to archive, not just expire.  To do this, implement a workflow on the list that moves the file into an archive folder (or onto a filesystem or wherever) and configure that workflow to run on expiration.

  • Sharepoint list dataheet view error "Cannot connect to the server at this time. You can continue working with this list, but some data may not be available"

    I have a List which is having around 14000 items in it.while opening that list in datasheet view it is giving error .
    Below is a summary of the issue:
    After selecting datasheet view beow error occurs:
        "Cannot connect to the server at this time.  You can continue working with this list, but some data may not be available."
        "Unable to retrieve all data."
        The item counts displays say 100 out of 14000 items.
    Exporting List to excel is giving only 2000 records out of 14000 records.
    Other Observations   -  
    This is happening to only one list on the site .There are other lists in the site whose no. of records is equal to 8000 to 9000.They are working absolutely fine without any error.
    Also, If I am saving this list as a template and creating another list with it ,then it is working absolutely fine with 14000 records,so the issue does not seem to be related with no. of records as the template list is working fine.
    I have checked the Alternate access mapping setting ,its fine.
    It should not be related to lookup,datefield or any other column as the list created from it template is working fine with all these columns.
    I checked below links also ,but doesn't seem to work in my case.
    http://social.technet.microsoft.com/forums/en-US/sharepointadminprevious/thread/974b9168-f548-409b-a7f9-a79b9fdd4c50/
    http://social.technet.microsoft.com/Forums/en-US/smallbusinessserver/thread/87077dd8-a329-48e8-b42d-d0a8bf87b082
    http://social.msdn.microsoft.com/Forums/en-US/sharepointgeneral/thread/dc757598-f670-4229-9f8a-07656346b9b0

    I have spent two days to resolve this issue. Microsoft has released two KBs with reference to this issue...but are not appearing in search results at the top.
    I am sharing my finding.
    1. First install the
    KB2552989 (Hopefully you might have already installed it. The KB detetcts it and informs the user.)
    2. Then update registry by adding new key for data fetch timeout as mentioned inKB2553007
    These two steps resolved the issue in our environment. Hope it might help others as well.
    Pradip T. ------------- MCTS(SharePoint 2010/Web)|MCPD(Web Development) https://www.mcpvirtualbusinesscard.com/VBCServer/paddytakate/profile

  • Error "cannot load request real time data targets" for new cube in BI 7.

    Hi All,
    WE have recently upgarded our SCM system from 4.1 to SCM 7.0 which incorporated BI 7.0.
    I am using BI 7.0 for first time and ahve the following issue:
    I ceated a new infocube and data source of flat file and succesfully created transformation, and Data Transfer Process. Everything looked fine. I added flat file and checked preview and could see data. Now when I start job to load data in infocube the follwing error is shown "cannot load request real time data targets". 
    I checked cube type in setting in infcune is shows as Standard.  When I doube clicked on error the following message showed up
    You are trying to load data into a real-time InfoCube using a DTP.
    This is only possible if the correct load settings have been defined for the InfoCube.
    Procedure
    In the object tree of the Data Warehousing Workbench, call Load Behavior of Real-Time InfoCube from the context menu of the InfoCube. Switch load behavior to Transactional InfoCube can be loaded; planning not allowed.
    I did not understand what it is meant and how to set changes. Can someone advice and follow me through.
    Thanks
    KV

    Hi Kverma,
    Real-time InfoCubes can be filled with data using two different methods: using the transaction for entering planning data, and using BI staging, whereby planning data cannot be loaded simultaneously. With Real time cube you can select the method you want to use for update as
    Real Time data Target can be loaded With Data; Planning not allowed &
    Real Time data Target can be Planned; Data loading not allowed
    You can change this behaviour by right clicking on cube and selecting Change real time load behaviour and select first option. You will be able to load the data then
    Regards,
    Kams

  • BI 7.0 : Error in loading text of a Master Data with a data source time dep

    I have a problem loading text from the data source(time dep) to the Master Data.
    For instance if the Data Source 0EVALGROUP1_TEXT is time dependent as there are the fields DATETO and DATEFROM, while i create the transformation these 2 fileds does not have any target fields. After i create the infopackage and execute it to load into the PSA, i have a error message : the message says "An error occurred in the source system."and "The error occurred in Extractor "; and the PSA is empty.
    Can anyone tell me if there is an OSS note to apply for this kind of problem, actually we are running under SAPKW70015 SAP_BW.
    Thanks for your help.

    Hi,
    Pl try the below
    The l_dta data target that you want to load is an InfoObject (master data or text
    table).
    You must declare this for the InfoProvider in Transaction RSD1.
    You do this on the 'Master Data/Text' tab by assigning any InfoArea to the InfoObject.
    The InfoProvider (that is, this InfoObject) is then displayed below this InfoArea in
    the InfoProvider tree.
    Rregards,
    Senthil

  • Not able to terminate an Emp, Error: The person must exist as an employee at the time specified by Date Start

    HI Guru's
    We are sourcing Employee records from upstream system and the Effective_start_date for particular record of Employee is getting changed, consider a below scenario.
    EXISTING RECORD.
    Person_id, effective_start_date,Effective_end_date, person_type
    123,       01-JAN-2001         ,31-MAY-2001,        EMP
    123,       01-JUN-2001         ,31-DEC-4712,        EMP
    MODIFIED DRECORD
    Person_id, effective_start_date,Effective_end_date, person_type
    123,       01-JAN-2001         ,14-MAY-2001,        EMP
    123,       15-MAY-2001         ,31-DEC-4712,        EMP
    So when i am able to change the effective_start_date for 2nd record from 01-JUN-2001 to 15-MAY-2001 using an API "hr_person_api.update_person" with p_datetrack_update_mode as 'UPDATE_OVERRIDE'..
    but after this when i am trying to terminate the employee using an API "hr_ex_employee_api.actual_termination_emp" for below scenario, i am getting the following error: "The person must exist as an employee at the time specified by Date Start".
    For Termination:
    Person_id, effective_start_date,Effective_end_date, person_type
    123,       01-JAN-2001         ,14-MAY-2001,        EMP
    123,       15-MAY-2001        ,09-JUL-2001,        EMP
    123,       10-JUL-2001         ,31-DEC-4712,       EX_EMP  ----> Not able to process erroing
    Please help me in resolving this issue..
    Regards,
    Mushtaq

    Hi,
    Just wondering if this is an ATG related question.
    Thanks,
    Gopinath Ramasamy

Maybe you are looking for

  • Blocking Ads in IE11

    Hi, I am a Google chrome user and I want to switch into IE11 on Windows 8.1. But the problem is that I did not found anyway to block advertissements in IE. Please, is there any extension or way to do so ? Thank you.

  • Want to create Monthly chart with weekly data.

    Hi all.  I'd like to create a chart that graphs data over the course of a month similar to this: but where the data for the chart is only gathered once a week.  I know from reading in the forums (and trying myself) that if you have missing data field

  • How to control workflow template id during creating?

    Hi, expert I am creating new workflow templates. But the workflow template id isn't in sequence. For example,   the existing workflow template is 7XX000001, 7XX000002, 7XX000003 .... 7XX000016. When I create a new one the workflow template id is 7XX0

  • Jpg file caching issue. Optimization needed or poor settings?

    '''- Step Naught''' - Boot Windows XP Pro SP3, on q6600 / 4Gb PC with /3G. Run Mozilla 3.6.10 and open two or three tabs to typical page: Google, TechDirt, Firefox Support. '''- Step 1''' - Open a 4th tab, and load URL a containing a large jpg image.

  • EIGRP supported protocol

    "EIGRP supports multiple protocols. EIGRP can exchange routes for IP, AppleTalk and IPX/SPX networks" What about RIP, IGRP, OSPF? They only support IP?