Help needs on People Management Template

Hi,
Is it possible to have defaulting value in one of the field based on security profile or depending on value of another field?
thanks

The task that i'm trying to achieve is try to default the location field on the assignment section based on responsibility or the organization selected. Can this be done via the form configurator?

Similar Messages

  • Help needed for missing VC# Templates

    Hello, i recently installed Visual Studio 2013 pro u4 and everything went fine during the install. But now when i create a new project for visual C#(every template) it tells me my Visual C# Project System Package did not load properly. I hve tried to repair
    it with the installer but it did not help. Its the only template that didn't install. Any help is apreciated, thank you.

    https://drive.google.com/file/d/0Bx6_JM-a2xrxV1NQa3FUcnVtOXM/view?usp=sharing
    ^If this is the correct way of using this fix ("devenv /ResetSkipPkgs" in the start menu search) then, unfortunately, it did not work for me.
    v This is the one error I find in the Activity Log (for the repair/install status I believe). I think the problem might be with the installer failing to receive the C# Packages.
    https://drive.google.com/file/d/0Bx6_JM-a2xrxaXczMDlEYXJCME0/view?usp=sharing
    Thanks for the help.

  • Help needed with Flash web template

    I am working on a flash website for our Boy Scout Troop. It is based on a template purchased on-line.
    I am using Adobe Flash CS4.
    Here is a preview link to the template that I am working with... http://www.easytemplates.com/templates/flash/boy-scout/
    If you click on the "foundation" button, you will see a movie under the Eagle Honor Roll, named "read more". When you click on that movie, it opens a window in the upper left corner of the screen. I am having two issues with this, as well as several other similar movies that look the same, and perform the same function (opening differant text boxs).
    I was able to easily go into the actionscript for each of them and change the name of the title that shows up on the top of the pop up window, but I can't for the life of me find where to edit the text. Every other pop-up window has a seperate movie file which I can edit, but this one does not. I have looked through all of the Symbols multiple times, and there is not one listed. The "read more" movie that is in the left hand box on the information page has a symbol that contains the text. the ones on the "Foundation" and "Our Program" pages do not. How do I change the text, if there is no symbol containing that text?
    I also would like to be able to change the position of the pop-up window when it opens, but cannot find where to do that.
    My other issue is editing the "Gallery" button at the top of the page, to point to a PHP Nuke site, that I am going to use for content management. I have found several tutorials on-line mentioning the use of the "on release get URL" command, but everytime I try to use it, it just breaks the animation on the button, and still does not open the URL in question. I have attached a .TXT file containing the current action associated with the button's "Blue box" (not sure what this is really called). I just need to know how to incorporate the "on release get URL" command without messing up the animatioon associated with the button.

    start with the button that causes the text to be displayed.  find what it does (which may not be easy because most templates are coded by novice or intermediate level coders) and follow that trail to the text.  (note:  the text may be in a txt or xml file that's loaded.)
    to have a button release open a file, use:
    yourbtn.onRelease=function(){
    getURL("http://www.adobe.com");

  • Help needed regarding CLLocation Manager

    Hello everybody,
    i am developing a GPS application in which i needs to track the speed of the device/iphone ,i am using the CLCorelocation API's Locate me referral code provided by Apple my problem is that the LocationManager does not updates the current latitude and longitudes thus i am unable to calculate the distance as well as the speed of the device/iphone.
    Any kinds of suggestions/code will be highly appreciated please suggest me if i can do something with the Mapkit framework introduced in the sdk 3.0.
    thanks in advance

    Thanks for your reply i am copying my code what i have implemented and it does not works please have a look at it and let me know what i am doing wrong i will be very helpful to you.
    - (void)locationManager:(CLLocationManager *)manager
    didUpdateToLocation:(CLLocation *)newLocation
    fromLocation:(CLLocation *)oldLocation
    ASafeDriverAppDelegate *appDel1 = (ASafeDriverAppDelegate *)[[UIApplication sharedApplication] delegate];
    chklat = newLocation.coordinate.latitude;
    chklon = newLocation.coordinate.longitude;
    appDel1.maxSpeed=0;
    double timeDiff;
    NSMutableString *update = [[[NSMutableString alloc] init]autorelease];
    // Horizontal coordinates
    if (signbit(newLocation.horizontalAccuracy)) {
    // Negative accuracy means an invalid or unavailable measurement
    [update appendString:LocStr(@"LatLongUnavailable")];
    } else {
    // CoreLocation returns positive for North & East, negative for South & West
    [update appendFormat:LocStr(@"LatLongFormat"), // This format takes 4 args: 2 pairs of the form coordinate + compass direction
    fabs(newLocation.coordinate.latitude), signbit(newLocation.coordinate.latitude) ? LocStr(@"South") : LocStr(@"North"),
    fabs(newLocation.coordinate.longitude),signbit(newLocation.coordinate.longitude ) ? LocStr(@"West") : LocStr(@"East")];
    [update appendString:@"\n"];
    [update appendFormat:LocStr(@"MeterAccuracyFormat"), newLocation.horizontalAccuracy];
    mShouldStopAndStartLocationServiceAgain = YES;
    [update appendString:@"\n\n"];
    // Altitude
    if (signbit(newLocation.verticalAccuracy)) {
    // Negative accuracy means an invalid or unavailable measurement
    [update appendString:LocStr(@"AltUnavailable")];
    } else {
    // Positive and negative in altitude denote above & below sea level, respectively
    [update appendFormat:LocStr(@"AltitudeFormat"), fabs(newLocation.altitude), (signbit(newLocation.altitude)) ? LocStr(@"BelowSeaLevel") : LocStr(@"AboveSeaLevel")];
    [update appendString:@"\n"];
    [update appendFormat:LocStr(@"MeterAccuracyFormat"), newLocation.verticalAccuracy];
    [update appendString:@"\n\n"];
    //geocoding implementation here........................................................................... .........................................
    NSString *ServerUrl=@"http://maps.google.com/maps/geo?";
    NSString *restUrl=@"output=csv&oe=utf8&sensor=false&key=ABQIAAAA9nyRoYg0rWpsiVi9iMjoSRQV WFT_Rez40XtsgfvlPpZQQeDyexSS5IUWt7S7bu53pG1lR3fjgcrfxQ";
    NSString * URLdata=[NSString stringWithFormat:@"%@q=%f,%f&%@",ServerUrl,newLocation.coordinate.latitude,newL ocation.coordinate.longitude,restUrl];
    NSURL *theURL = [NSURL URLWithString:URLdata];
    NSURLRequest *myURLRequest = [NSURLRequest requestWithURL: theURL];
    NSURLResponse* myURLResponse;
    NSError* myError;
    NSData* myDataResult = [NSURLConnection sendSynchronousRequest: myURLRequest returningResponse:&myURLResponse error:& myError];
    NSString* StreetName;
    BOOL val=YES;
    StreetName = [[NSString alloc] initWithData:myDataResult encoding:NSASCIIStringEncoding];
    //NSLog(@"this is the lenght of the street name %d",[StreetName length]);
    if([StreetName length]!=0)
    NSLog(@"this is the street name received.............. %@",StreetName);//[StreetName substringFromIndex:6]);
    //NSMutableArray *street=[[StreetName substringFromIndex:6] componentsSeparatedByString:@","];
    NSMutableArray street=(NSMutableArray*)(NSMutableArray)[StreetName componentsSeparatedByString:@","];
    NSString *tempString=[street objectAtIndex:2];
    appDel1.currentLocation=[tempString substringFromIndex:1];
    NSRange range=[tempString rangeOfString:@" "];
    if(range.location==NSNotFound)
    val=NO;
    //NSLog(@"this is the value of bool in false %d",val);
    else
    val=YES;
    //NSLog(@"this is the vale of bool in true %d",val);
    NSString *finalStreet;
    NSString *temp2;
    temp3=@" ";
    if(!val)
    finalStreet=[tempString substringFromIndex:1];
    NSLog(@"this is the street name %@",finalStreet);
    else
    NSMutableArray temp1=(NSMutableArray)[tempString componentsSeparatedByString:@" "];
    for(int i=1;i<[temp1 count];i++)
    temp2=[temp1 objectAtIndex:i];
    temp3=[[temp3 stringByAppendingString:@" "] stringByAppendingString:temp2];
    finalStreet=[temp3 substringFromIndex:0];
    NSMutableArray *speedValues=[appDel1 getSpeedValue:[finalStreet stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]];
    if([speedValues count]>0)
    if(appDel1.moreThanOneSpeed==YES)
    appDel1.maxSpeed=[appDel1 getSpeed:[finalStreet substringFromIndex:0] first:newLocation.coordinate.latitude second:newLocation.coordinate.longitude];
    else
    appDel1.maxSpeed=[[speedValues objectAtIndex:0]intValue];
    //Calculate speed
    CLLocationDistance distance;
    double calSpeed;
    NSTimeInterval difference;
    //calculate distance and time elapsed only if we save old location
    if(oldLocation != nil)
    difference= [[newLocation timestamp] timeIntervalSinceDate:[oldLocation timestamp]];
    distance = [newLocation getDistanceFrom:oldLocation];
    else{
    distance = 0.0;
    calSpeed =(distance/difference)*2.23693629;
    NSLog(@"Time elapsed is: %f", difference);
    NSLog(@"Distance travelled is: %f", distance);
    NSLog(@"Speed is: %f", calSpeed);
    //save the latest newLocation for calculating the speed
    oldLocation = [newLocation retain];
    appDel1.distance=distance;
    appDel1.time=timeDiff;
    [self.delegate displaySpeed:oldLocation.coordinate.latitude second:oldLocation.coordinate.longitude third:newLocation.coordinate.latitude fourth:newLocation.coordinate.longitude];
    if(appDel1.speed!=calSpeed)
    appDel1.speed=calSpeed;
    [appDel1 checkLimitAndSpeed];
    the speed and distance returned is always zero as the latitude and longitude remains the same always it does not keep updating.
    Thanks

  • Help needed on activity management

    Hi,
    I have created an activity in WEBUI for myself and when i try to verify the same in INBOX, the task is not available. I am new to this. can some one tell me what config changes are needed at the backend.
    Thanks in advance.
    Regards,
    Udaya

    Hi Uday,
    If you require your activity to be displayed in your inbox, then you need to do Grooupware Integration.
    Groupware Integration is used to integrate CRM Activity Management with the groupware applications, that is Microsoft Outlook and Lotus Notes, allowing you to synchronize business activities and tasks in your CRM calendar and your own groupware calendar.
    To map the CRM statuses to groupware statuses, you Customize for CRM by choosing Customer Relationship Management -> Transactions -> Settings for Activities -> Mapping of Activities to Groupware -> Map Activity Status to Groupware.
    For more information on this go throught the following link
    [http://help.sap.com/saphelp_crm60/helpdata/en/5c/e90d3888a11c10e10000009b38f8cf/frameset.htm]
    Wish this was useful to you
    regards
    Srikantan

  • Help Needed w/Desktop Manager 4.6 & Outlook Calendar Synch

    Everything was working just fine prior to my holiday break. Came back this morning and attempted to synch my BBCurve (running 4.5.0.81) with my Desktop Manager (v4.6) and it is just skipping over the calendar sync portion. No error message. Everything else is synching just fine. Deleted and reinstalled Desktop software -- that didn't work. Disabled calendar sync and re-enabled -- that didn't work. cleared the BB Calendar of all entries and now have no calendar entries on the device. HELP!

    I deleted the Intellisync folder, and reset the Desktop Manager configuration settings and I received the following Intellisync error message:
    The operation terminated unexpectedly while reading from Microsoft Outlook Calendar
    Then I tried to sync just from Outlook Calendar to Device -- that failed
    Then I tried to sync just from Device to Outlook Calendar -- that failed as well
    Then I deleted Intellisync folder again and rebooted my computer
    Successfully synced from Device to Outlook
    Tried to sync from Outlook to Device and it appears to be running, says one moment please and nothing happens and it returns to the Desktop Manager with no error message. Grrrrr.....

  • Emergency help needed re media manager

    Hi all,
    Hopefully somebody can help me with this.
    I am due to start an audio mix on a project for a client tomorrow. He currently has the FCP project on his Mac Pro but due to recording to a tascam portable recorder on set all his audio files are called audio1, audio2 etc. He has a folders on his drive with each days recordings so there are many folders which all contain files called audio1 etc.
    I asked him to put his picture lock sequence onto an external drive using media manager but it doesn't seem to able to handle the audio files since there are so many with the same name from different folders so the external now has only one file with each name where on the picture lock sequence there are many audio clips called audio1 for example.
    I hope this makes sense.
    Please post here if you can help me.
    Thanks in advance
    Michael

    If you have a media card in your BlackBerry then the easier way to transfer items to it is to just click on the My Computer icon and drag and drop them to the appropriate folder. Music to the \blackberry\music folder and so on. As for the problem with the Media manager, it should be remedied by installing the OS for your device to your computer.
    Message Edited by tschweitzer on 10-21-2008 11:21 AM
    Message Edited by tschweitzer on 10-21-2008 11:22 AM

  • Help Needed With Bento 'Inventory' Template.

    I am a new user of Bento and I am delighted with the 'Inventory' template. It is just what I have been looking for and would be even better if my two questions can be resolved:
    1) I have set it up so that it gives me a monetary SUM of the value of my stock. However, items get sold (hopefully!) and when they do, the SUM needs to be adjusted downwards. I realise that I can delete the record of the sold item or even reduce its value to ZERO to produce this adjustment but then I would lose the history and/or price of the item. Is there a way I can get 'Inventory' to ignore the value of items when they have been sold without losing the historical record of those items?
    2) The word 'Inventory' runs across the top of the database in large letters. Is there a way to change this title to one of my choice and to make the lettering smaller?
    I am so pleased that I bought Bento and I'm delighted with the way it syncs with my iPhone 4!
    Message was edited by: Julian Brown

    have you tried the Bento forum: http://forums.filemaker.com/hives/55abf7f8d2/summary ?
    JGG

  • Getting error in People Management Template Form...

    Hi!
    I created a custom Enter Employee Template and attached it to function, menu & responsibility.
    But whenver I tried opening the template it gives me error:
    APP-PER-52909: The template for this window does not exist. Please contact your system administrator.
    I already attached the Business Group and Security Profile on the Responsibility that Im using which is also based on the legislation attached to the template...
    Do you have any idea on the problem or any set-up steps that I missed...
    Thanks...

    Pl see if MOS Doc 365598.1 (APP-PER-52909 when Trying to Open a Custom Template) can help
    HTH
    Srini

  • Help needed with Media Manager

    I recently purchased the Blackberry Curve, 8310 and downloaded the most updated version of Media Manager.  While connected to my PC with the USB cable, the desktop manager fires up, updates my email accounts, etc. and seems to be able to communicate with the Blackberry.  However, when I then open up Media Manager to transfer photos, it does not recognize the phone connection.  Any help in defining what I'm missing here would be appreciated.

    If you have a media card in your BlackBerry then the easier way to transfer items to it is to just click on the My Computer icon and drag and drop them to the appropriate folder. Music to the \blackberry\music folder and so on. As for the problem with the Media manager, it should be remedied by installing the OS for your device to your computer.
    Message Edited by tschweitzer on 10-21-2008 11:21 AM
    Message Edited by tschweitzer on 10-21-2008 11:22 AM

  • [Solved] Help, need a theme manager....

    I am currently using Awesome. When I start Vlc it uses some sort of square / grayish theme that is pretty ugly to be honest...
    Also I use drracket and it has the same theme...
    I also remember reading sth about qt3 / qt4 themes (I think KDE uses them), but have no Idea how to manage these...
    So finally my question :
    Is there any theme manager (preferably sth simple & light weight) that I can install that sets these qt3/qt4 themes ?
    I would really like to get rid of the gray boxy look....
    thanks in advance
    Last edited by fizk-jnk (2011-02-16 15:25:52)

    Lolz!
    Thanks for the help
    I usually do try to search the wiki... dunno why I seemed to forget & started digging in google

  • Help needed with Printer Friendly template.

    Hi
    I know there loads of posts on here about "Printer Friendly" Templates which are far from being printer friendly. My problem is that most of my reports are very wide and therefore if you print it you loss the right hand side of the report even if you change the page layout.
    Any Ideas or working examples of getting my reports onto a page without it been cut off?

    Can anybody help me?

  • HELP needed on Remote Management set to allow access for all users

    my mac mini snow leopard server runs in a data center and i use screen sharing to interact with it. i played with the sharing settings remotely yesterday and changed "allow access for" to all users. i was disconnected immediately and i couldn't logon again. i have no luck changing to other users. i don't want to make a special trip to the center to change it back to whatever it used to be. i can still use afp to connect but the screen sharing option is no longer available. what does "allow access for all users" mean anyway?
    thanks!

    As its name implies, allow access for all should allow any valid user account to access the server. I'm not sure why it's no longer working. It almost sounds like the ARDAgent crashed.
    Either way there's a command-line interface to the ARD preferences:
    /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/ki ckstart
    man kickstart discusses the options, including examples of how to enable access for specific users.

  • Help Needed in Migrating Bill Management template

    Hi All,
    Pls let me know how to migrate the custom Bill Management template in Bill Presentment module from one instance to another instance.Is there any XDOLOADER commands available to migrate similar to RTF template?
    Your help in this regard is much appreciated.
    Regards,
    Rajesh

    Not sure what exactly you want. But please do have a look at the blog http://apps2fusion.com/at/51-ps/306-moving-xmlbi-publisher-components-between-instances which has details of moving all components related to xmlp report

  • People Management Configurator Help

    Responsibilities:
    HR Super User > Security > People Management Configurator
    US Super HRMS Manager > Security > People Management Configurator
    Hello, I want to add an item that is not listed in the LOV for when adding an item to a template. Specifically i want to add fields from the Personal Analysis KFF (Office Location, Mailstop etc) to this template.
    Please help!
    Thanks

    hi
    thanks for the responce..I got it
    But one more issue i am facing is i am not able to add the SIT. When i enter the Special info type list as the Item it is not allowing me to select the Tab
    Thanks
    Regards
    Ramesh Kumar S

Maybe you are looking for

  • External drive how to use DVD

    Latest OS on MacBook Air.  When I connect the external drive and I want to watch an exercise DVD I have used before, I can't find the part of the DVD I want to watch. Also, now when I want to eject the DVD from the drive, I cannot find this option un

  • Authorization object for terms of payment in VA01

    Dear Gurus, we want that term of payment field on sale order should be in display mode for all user except authorised user, who has /have authority to change terms of payment. Requirement Authorization object (display, change) for terms of payment fi

  • How to change the font of the logical column heading

    I have a situation here. I have created some logical column in the rpd. When using those columns in the answers the font of the logical column is different and small to that of the other column from the same table, which looks odd. for example: Distr

  • [REQUEST] MSI Radeon R9 290X UEFI GOP bios

    Hi, My card shipped with only legacy image in the ROM and that fails entire secure boot process with Video Option Rom authentication not happening. I'd like to get the UEFI GOP enabled ROM for that card. Here's the link to the current BIOS: pace-os.c

  • Dual monitors reset on AE start-up

    I'm working with a dual monitor setup with the timeline on the second monitor.  Each time the program opens, the the timeline window appears centered on the main window and it needs to be repositioned over to the 2nd monitor. I've tried saving the la