E-Recruiting EP4: How do you define a Hiring Manager?

Hi Everyone
I am test on how to create a requisition in EP4. There is field called Hiring Manager and a dropdown that has a search help Find Hiring manager or Find Employee. How do I define a Hiring manager so the search help will find it? Same question for the Recruiter field. How do I define a Recruiter so that the search help Find Recruiter will find that employee.
Thanks
Vince

Hi,
this question is open for some days although the answer is quite easy. The search help in EhP 4 has this dropdown. If you choose "Find Employee" it will search for all employees (internal candidates) matching the entered name pattern in the system. If you choose "Find Hiring Manager" the system simply searches over every internal candidate already assigned to another requisition as hiring manager. (There might be some additional status logic on the requisitions taken in account) So as you go on maintaining requisitions the result list will be populated. Assumption here is that only a small amount of employees actually are hiring managers so the amount of entries searched can be reduced.
I personally prefere the option to use the personal list of favorites in this search help :o)
Best regards
Roman

Similar Messages

  • How do you define the width of a JPanel?

    How do you define the width of a JPanel?

    it may not be perfect but this is what i have tried:
    import javax.swing.*;
    import java.awt.event.*;
    public class myPane extends JFrame {
         public myPane() {
              super("myPane");
              setDefaultCloseOperation.(JFrame.EXIT_ON_CLOSE);
              JButton myButt = new JButton("press");
              JPanel pane = new JPanel();
              pane.add(myButt);
              setContentPane(pane);
         public static void main(String args[]) {
              myPane p1 = new myPane();
              p1.setBounds(20, 20, 600, 400);
              p1.setVisible(true);
    }

  • Using the APIs - how do you define the application?

    After using lite for a long while, i am finally getting around to evaluating ways to override/improve the compose process as this is becoming a real problem for us.
    as i see it there are 3 main options
    1) call out pl/sql package - got this working, but does not directly affect the compose
    2) mycompose - despite not being a java person, got this working, and this does reduce the compose impact (the inconsistencies in the PK name mapping threw me a bit, but thats oracle lite for you)
    3) queue based publication items to bypass the MGP process entirely. following the examples (and a lot of make it up as you go along) i managed created a publication via the consolidator APIs, added the publication items, added and instantiated a user, synced and all seems to be working (at least in outline), but the publication i have created is not attached to any application so i cannot maintain the users via the applications tab as normal. found the resourcemanager API to create the application (i think), but cannot find any way to associate my publication with it
    Am i missing something? or can i just not manage to find the correct API?

    Firstly i will point out that the underlying source of our 'issues' is poor main system database design (politics and in place before i arrived), and this has pushed us down a couple of possibly non standard routes
    1) quite a number of publication items based on complex updatable views (too much normalisation on the server side, and the performance overheads for high numbers of table joins on the PDA clients we use have forced this)
    2) complex data subsetting (using relationships disconnected from much of the actual data)
    the issues we have are
    a) poor performance in the MGP compose on a few of the view based objects (they have been extensively tuned, conspref steeing as good as they can be, but the execution plans generated by the standard compose process wrapping is poor)
    b) updates to view 'content' only happen by default if the base table of the view is updated (this is where it gets the version from)
    c) increasing MGP compose time (for roughly the same number of users this have gone from an average of about 1-2 hours to 8-12 over the past 12 months - this is probably more related to server application design issues, increasing data volumes and possibly conflicts with streams being used for other applications)
    d) performance overhead in terms of resource (CPU, IO) usage when compose is running
    e) locking conflicts between the main server system and the MGP process (either the process log phase failing in mobile due to transaction locks on all_sid_logged_tables preventing the compose from starting, or server transaction being blocked for a few minutes due to the exclusive locks needed for the process logs phase)
    Due to the above i decided to do a proof of concept type study on the 3 alternative approaches for controlling the MGP process (before/after callouts, mycompose and queue based publication items).
    results so far
    - before/after callouts do not affect the actual compose processing, so not much use (but we are looking at these for intercepting some standard issues from the client applications and correcting the data before it hits the error queues)
    - mycompose - despite minimal java knowledge (and the undocumented issues like the poor execution of moving data from the cpd tables to the cmp tables), i have been able to demonstrate 60-90 reduction in compose time for the most problematical objects - sorts out issues a-c, helps with d, but does not do much about e
    - queuebased publication items - seriously cumbersome at the moment (may be able to make it more generic), but PL/SQL that i am more comfortable with (except for the actual publish) - still working on this, but so far at the cost of an increase in average client sync time from about 1-2 minutes to about 5-8, i have managed to get a working application (30 complete refresh items plus 44 queue based) that does not require the MGP process to be running or enabled, and needs no CVR/CLG/all_sid_logged_tables logging, so looks to achieve all of the objectives plus a performance improvement overall on the main server system
    no final decisions yet, the queue based approach looks best, but would be problematical in doing the switchover without losing any client data, mycompose is easy to overlay over the existing application, but does not fully meet all objectives

  • How do you publish Exchange 2010 Management Console on a Citrix Server?

    I need to be able to remotely manage exchange throught the management console and want to publish it through Citrix.  I successfully installed the console on the XenApp servers in our farm, but after publishing it, can not get the published console
    to run through the Citrix Plug in or oweb interface.  Any idea what I could be doing wrong?  Since I can run it directory from the server, the problem must exist in the way I published it.  I have checked permissions and those appear to be ok.
    Thanks for the assistance.

    hi,
    How do you publish your EMC? Since you can't run, do you get some error information. But it seems it isn't a exchange problem. If you have installed your EMC on your another computer in you ORG. You can run it by click start. If you want to use Citrix, ask
    them for help is a good idea.
    hope can help you
    thanks,
    CastinLu
    TechNet Community Support

  • How can you define a different homepage for a user?

    Hi
    I am fairly new to Application express, I have created an application but I would like to define a different homepage for a user when they login. Of course I can modifiy the PLSQL code:
    wwv_flow_custom_auth_std.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':1'
    With a different page, however I would like to setup a different home page depending on the user that logs in - I tried setting up a conditional process specifying P_101_USERNAME but this did not work...any ideas on how this can be achieved?

    Hi
    Thank you for your response, I have created the function:
    create or replace function "GETDEFPAGE"
    (auser in VARCHAR2)
    return VARCHAR2
    is
    Defpage number;
    begin
    select DefaultPageNumber into Defpage from users_table where username='aUser';
    return Defpage;
    end;
    Can you please assist me on how I can call the function in the login process within the block:
    wwv_flow_custom_auth_std.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':1'
    );

  • How do you define what machines will get an IP form your Lion DHCP server?

    I have set up a Mac Mini Lion server for use in my classroom. I currently have 8 macs that are connecting to it. I would like my Lion server to serve IPs to these 8 macs, so I have set up the DHCP server to assign these. When I look at what machines are receiving their IP from my server, I am getting everyones iPods, iPhones and other devices. Basically, my DHCP is assigning IPs to these devices, whereas normally these would be assigned from the main school server (not my Lion server). How do tell my Lion Server to only use the DHCP on my 8 macs, not everyones iDevices and Macs. Thanks.

    There are two aspects to this. First as Stronium90 says it is normally a bad idea, i.e. more trouble than it is worth to have more than one DHCP server on same LAN.
    The first issue you therefore need to address is to ensure that if you have two DHCP servers only one responds to these specific clients. This means you would need to set the Mac DHCP server to only respond to these devices and you would have to set the other DHCP server to respond to all others and ignore these specific devices. To tell the Mac DHCP server to do this you need to add settings manually to the /etc/bootpd.plist file. This is the main configuration file for Apple's DHCP server and is an XML format file. You can find instructions by doing man bootpd in the Terminal.app.
    The second issue is if you want to use static IP addresses then you need to define them in the /etc/bootptab file. As standard this file does not exist but all you need to do is create one and the Mac DHCP server will start using it. The following may be helpful https://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages /man5/bootptab.5.html

  • How do you define placeable artwork?

    Reading the Help about the PDF import, there is a somewhat obscure Art option: supossedly you can create a placeable artwork rectangle? How does this work? Like you can create a brochure, for example, create a rectangle around your logo, define this rectangle as placeable artwork somehow, save as PDF and make the exterior of this rectangle impossible to place?
    I am puzzled,
    Eduardo

    Dear Scott,
    Supposedly there is a difference between ArtBox and CropBox (TrimBox, BleedBox, MediaBox). The one I do not get at all is the first one. Is this an Illustrator question at all? The Help states is the creator of the pdf who defines the placeable artwork rectangle, but it does not say where would you do that.
    Best regards,
    Eduardo

  • How do you define which character set gets embedded with a font embedded in the library (i.e. Korean)?

    I have project that uses a shared fonts. The fonts are all
    contained in a single swf ("fonts.swf"), are embedded in that swf's
    library and are set to export for actionscript and runtime sharing.
    The text in the project is dynamic and is loaded in from
    external XML files. The text is formatted via styles contained in a
    CSS object.
    This project needs to be localized into 20 or so different
    languages.
    Everything works great with one exception: I can’t
    figure out how to set which character set gets exported for runtime
    sharing. i.e. I want to create a fonts.swf that contains Korean
    characters, change the XML based text to Korean and have the text
    display correctly.
    I’ve tried changing the language of my OS (WinXP) and
    re-exporting but that doesn’t work correctly. I’ve also
    tried adding substitute font keys to the registry (at:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows
    NT\CurrentVersion\FontSubstitutes) as outlined here:
    http://www.quasimondo.com/archives/000211.php
    but the fonts I added did not show up in Flash's font menue.
    I’ve also tried the method outlined here:
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_16275
    to no avail.
    I know there must be a simple solution that will allow me to
    embed language specific character sets for the fonts embedded in
    the library but I have yet to discover what it is.
    Any insight would be greatly appreciated.
    http://www.quasimondo.com/archives/000211.php
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_16275

    Thanks Jim,
    I know that it is easy to specify the language you want to
    use when setting the embed font properties for a specific text
    field but my project has hundreds of text fields and I'm setting
    the font globally by referencing the font symbols in a single swf.
    I have looked at the info you've pointed out but wasn't
    helped by it. What I'd like to be able to do is to tell Flash to
    embed a language specific character-set for the font symbols in the
    library. It currently is only embedding Latin characters even
    though I know the fonts specified contains characters for other
    languages.
    For example. I have a font symbol in the libary named
    "Font1". When I look at its properties I can see it is spcified as
    Tahoma. I know the Tahoma font on my system contains the characters
    for Korean but when I compile the swf it only contains Latin
    characters (gylphs) - this corresponds to the language of my OS (US
    English). I want to know how to tell Flash to embedd the Korean
    language charaters rather than or as well as the Latin characters
    for any given FONT SYMBOL. If I could do that, then, when I enter
    Korean text into my XML files the correct characters will be
    available to Flash. As it is now, the characters are not available
    and thus the text doesn' t display.
    Make sense?
    Many thanks,
    Mike

  • How do you define graph scales live?

    Hello,
    I am having an issue with a simple VI I am trying to create that displays test data.
    A little background on the setup:
    I have an Agilent 34970A data logger recording thermocouple data every 30 seconds which gets appended to a .csv file.  My VI opens the data log; reads the contents; manipulates the data; and displays the data on a mixed signal graph.  I have one main loop that reads in the data every 30 seconds and another loop inside the main loop that completes approximatly every second to allow changes made to scale controls to take effect so the user doesn't have to wait too long.  Because the data logs are allowed to become very long (logs are stopped and re-started daily) it is necessary to allow the user to define, at minimum, the X scale as it is usually the case that the user only cares about what is happening in the last hour or so.  The snippet below shows the portion of my block diagram for displaying the data and the user control of the scales.  
    The problem occurs when the user defines custom scales using the controls shown below.  The graph updates as desired however every time the inner loop completes the graph gets refreshed with the default auto scale values before getting set again to the custom scale values causing the graph to "Blip" once a second which is distracting and silly.
    Does anyone have any suggestions for me?
    Thank You,
    Ken

    Are the axes set to autoscale? In this case they will autoscale whenever data is written to the terminal.
    LabVIEW Champion . Do more with less code and in less time .

  • How do you define the categories in All My Files?

    right now All My Files seems to have a predefined set of categories it lists. But I can't seem to find a way to take out categories that I don't need. How can i take them out of the search?

    If I understand your question, I believe this is what you are seeking:
    Note the selection on the menu bar.
    Also use COMMAND+J and select 'Calculate all sizes'.
    Ciao.

  • How do you define operators?

    Hi!
    I'm looking for a way to define operators between objects in java (kind of function you may find in C++), but I haven't found any related topic yet. Any clue would be helpful.
    Thanks in advance.

    java is an strictly object orientated language, so you do not have to write your own operators for objects. Every object can handle with evry other. it all depends on your way of programming

  • How do you define which program opens what?

    For example, how do I tell mac to open all .php files with TextMate? I tried the open always with but it only works for that one file. The other .php files go back to another text editor. I want it for all of them.
    Thanks.

    this would possibly be the original application that "assigns" a particular icon to the file. you could try to copy the file (i.e. keep one safe/unmodified) and off the copy delete the extension. You will then be asked to confirm (as it's a copy you can play around with it).
    Then open textmate and open the file from there and save it via textmate. This might result in a different icon.
    You can always change every icon by highlighting the icon in the "get info" and pasting the icon of choice. Find a useful article:
    http://support.apple.com/kb/HT2493

  • How do you define a range for an axis in autoscale?

    Hello All,
    I found that the autoscaling is  too "tight" with my data and i'd like to define a range on the autoscaling so that I constantly have the same space between the data and the top and bottom of my y-axis. i've looked but couldnt find a way to do it. Can anyone help please?
    Thank you in advance,
    Frederic

    If that's not loose enough, you have to do it yourself.  Turn off auto scale, and set Y min and Y max to the min(data)-cushion and max(data)+cushion, respectively.  This is possible using property nodes for the graph.
    Tim Elsey
    LabVIEW 2010, 2012
    Certified LabVIEW Architect

  • When opening a new tab, how to you define what page loads

    I downloaded an application to try to "speed up" my computer. I'm usually prety good about making sure i know whats being downoaded but it downloaded yahoo something or other (toolbar i think) and now when I open a new tab in firefox it goes to yahoo. (*although when i click "home" it goes to the firefox page). any help?
    also anyway to define the new tab page kinda like they do in google chrome? (kinda like a "home" screen)
    thanks

    You can look at this extension to set which page to open in a new tab:
    *NewTabURL : https://addons.mozilla.org/firefox/addon/newtaburl/

  • How do you define Net Weaver ?

    Si Netweaver the collection of several object, including J2EE and the dev studio, or is it defined simply as the Dev studio
    Is J2EE considered a part of Netweaver, or a different product altogether ?
    Thanks, John

    Hi John,
    Netweaver is an Technology Platform for integration of systems in an Enterprise.
    The following are the components in Netweaver.
    Enterprise Portal, Multichannel Access,
    Master Data Management
    Business Intelligence, Exchange Infrstructure,
    WebAS(J2EE+ABAP),
    Cross Application Framework(XApps), etc.
    for more details about this http://help.sap.com/saphelp_nw04/helpdata/en/e1/8e51341a06084de10000009b38f83b/frameset.htm
    Anand.M

Maybe you are looking for

  • Drive format for Mac and PC running Vista?

    I teach in a Mac lab and have students who have PC's at home. In the past, I advised them to reformat their portable HD as FAT 32. Now, based on communication from one student and research I have done online, it seems that Vista cannot read a FAT 32

  • Adobe Acrobat Standard 6 & Windows 8

    I own Adobe Acrobat Standard 6.0. Can I use it on a Windows 8.1 computer? If not, can I upgrade Adobe Acrobat Standard 6.0 at minimal cost? I will be purchasing a new Windows 8.1 laptop and discarding my old laptop. LenD

  • Select options to internal table

    i have selected some values in the range say 100 to 200 using select options....is there any way to get these values in an internal table? also does select option work with alpha numeric values eg : if i want to select between a100 and b200?

  • Specific mac addresses?

    I have an Airport Extreme base station in an upstairs closet ( with printers, dsl, security system, fire, panel, etc) and I use a couple of Airport Express to bounce the signal around downstairs. The two expresses have solid connections to the base -

  • Creating Slideshow

    I would like to place four small photos to loop without effects in a single location on our office webpage.  I thought there would be a simple way to do it in DW but I guess it is better to do it in Flash or a use third party plug-in.  I would like t