Where and when does requisition id gets created when creating from MSS?

My requirement is to have a custom logic on how to assign recruiters to a new requisition which is beeing created from MSS.  Once i fill out the form and send the form i get a ref nr for process. What i need is the requisition id as i want to create those recruiters in table HRP5131.
So my question is: when and where is the requisition id beeing created?
Any help will be appreciated.
Thanks

Hi Nahman,
Check the following nodes
SPRO--> Integration with other my sap.com components --> Business packages / Functional packages --> MSS (my SAP ERP) --> recruitement --> Define attributes for request scenario
Select the recruiter logic type. You have an option to use custom logic also using a BADI. other than this there are 3 more options provided by standard sap.
Hope this info helps. Let me know if u require further help on this
Thanks
G Raj

Similar Messages

  • When does the horizontalScrollBar get created on a List?

    When does the horizontalScrollBar get created on a List?
    The scroller is created, but the scrollbar isn't created yet and I get an error:
    I have a spark List:
    <s:List id="list" creationComplete="creationCompleteHandler(event)">
            <s:layout>
                <s:HorizontalLayout  />
            </s:layout>
    </s:List>
    private function creationCompleteHandler(event:FlexEvent):void {
         (event.currentTarget as List).scroller.addEventListener( FlexEvent.UPDATE_COMPLETE, onScrollerComplete );
    // these don't trigger anything!
    //    (event.currentTarget as List).scroller.addEventListener(FlexEvent.CREATION_COMPLETE , onScrollerComplete );
    //    (event.currentTarget as List).scroller.addEventListener(Event.ADDED_TO_STAGE , onScrollerComplete );
    private function onScrollerComplete(event:Event):void {
         // horizontalScrollBar still null at this point - how can I use it?   
         // I want to set the style, but it's not created yet!
         // event.currentTarget.scroller.horizontalScrollBar.setStyle("repeatInterval", 600);

    I just realized that
    this.setIconImage(new ImageIcon("image.jpg").getImage())
    did not create the icon for my saved files.
    So what did create it? I did not program it!
    However, I happen to have an icon file Ananya.ico where I have my java project. I use if for my installation file. Did Java use this icon?
    Please help! Thanks!

  • How does a workflow get triggered when we create a Shopping cart

    Hi all,
    In SRm how does a workflow gets triggered when we create a Shopping cart...what i mean is that in r/3 we use changedocument object or function modules etc..likewise in srm how the wf gets triggere...can anyone help me.
    Thanks&Regards,
    Hari

    Hi martin,
    yes i accept that in SRM also workflows are all started by event...what i mean is in R/3 we go for Change document object(swec) or some other method for event creation...like that in SRM what is there?Just whenwe create a Shopping cart How the workflow is trigerred...suppose if it is trigerred using fm swe_event_create where they might have called the function module.
    Thanks&Regards,
    Hari

  • HT5262 where does the information get stored when you back up your i-phone? It just reports its done but I have no idea where to find it if I need it again!

    Where does the information get stored when you sync/back up your i-phone. I have no idea where to look if I need it again!
    Thanks

    You can chhose the backup when you would reset your device. In this case you would get the option, during the set up process, to choose your backup and restore your device from it.
    (You can find a few information e.g. size and date of your backup in "Settings > iCloud > Storage & Backup > Manage Storage")

  • When doing catalog backup get message " your system is low on disk space, and elements organizer can

    When doing catalog backup get message " your system is low on disk space, and elements organizer cannot perform the operation.  If create a catalog with 20 pictures backup works OK.  backing up to a 1TB external drive.  Have 16705 pictures in catalog.  Total disk space for pictures is 192 MB.  Why am I getting message?

    kdrozzen a écrit:
    Total disk space for pictures is 192 MB. 
    Do you really mean MB (megabytes) or GB (gigabytes) ?
    Even if its GB, the free space may be enough, depending on your files size, especially with videos or raw files.
    When you start the backup process, it first shows you the total size of the catalog.

  • When does an AP gets to Air-Monitor mode?

    Q: When does an AP gets to Air-Monitor mode?
    A: In a Mobility-controller AP deployment there are just 3 conditions that an AP can go into an Air-Monitor(AM) Mode:
    1. If the am-mode is configured in the "rf dot11a-radio-profile" or "rf dot11g-radio-profile"
    To see if it is configured in the radio profile please use this filter in the show running-config command
    Example:
    (Aruba) #show running-config | begin "rf dot11a-radio-profile"
    Building Configuration...
    rf dot11a-radio-profile "default"
     mode am-mode  ------------------------------------------------------------- Indicates that the Airmonitor is Enabled
    2. If Mode Aware ARM is turned on in the  ARM profile then th ap turns to AM mode when it sees excess power from the neighbor AP
    To see if mode aware arm is enabled in the arm profile please use this filter in the show running-config command
    (Aruba) #show running-config | begin "rf arm-profile"
    Building Configuration...
    rf arm-profile "default"
       mode-aware                 ------------------------------------------------- Indicates that the mode aware arm is enabled                           
    3. During the Regulatory mismatch or un-supported
    a.    When there is no channel available for the AP’s operation for the country defined on the controller.
    Use the following command to verify the allowed channels for an AP
    (Aruba-7240) #show ap allowed-channels ap-name <name-of-ap>
    b.    When AP’s has a different country with the controller’s Country.
    Compare the country defined on the controller "(Aruba) #show country" to the country defined in the "(Aruba) #show ap regulatory-domain-profile <profile-name>". The ap regulatory-domain-profile will be mapped in the ap-group to which the ap is provisioned to.

    Hi Marc,
    I have a shop system comprised of two web applications where one is for
    maintaining the shop and the other for using the shop. When I do changes
    to the shop from the one webapp they do not show up in the second, unless
    I call refresh. Also, I have to switch off the cache, it seems and do a
    flush on the changed objects. There are some questions now:
    a) when I call refresh, is the complete state reread regardless whether
    there have been changes or not or does it know, when the state has not
    changed in the DB ? it is a performance question, I guess.
    b) can I use transactional reads to do the refresh automatically ?
    c) I noticed that refresh does not do a deep refresh of all the objects
    referenced by the one to be refreshed. Is there a way to do this or do I
    have to go thru all the objects ?
    I asked some questions some time ago in another thread, which might refer
    to. I am sorry, if I am not clear enough.
    Best regards
    Wolfgang
    Marc Prud'hommeaux wrote:
    Wolfgang-
    I take the question to mean that you are wondering how you can refresh
    the state of a persistent instance to reflect changes in the data store.
    If that is the case, then you can just call
    PersistenceManager.refresh(ob) on the object, and the newer values will
    be obtained.
    If that doesn't help, can you clarify the question a little?
    In article <cj7ris$mhr$[email protected]>, Wolfgang Kundrus wrote:
    Do I have to use transactional reads for an object to get the changes done
    by another web application ?
    Thanks
    Wolfgang
    Marc Prud'hommeaux
    SolarMetric Inc.

  • My ipod touch has a permanent image of the end of a USB cable with an arrow pointing to an icon of ITunes. I can't reset, and ipod does not appear on itunes when I plug it into the computer.  This happened after I agreed to a failed software update.

    My ipod touch has a permanent image of the end of a USB cable with an arrow pointing to an icon of ITunes. I can't reset using the two button method, and ipod does not appear on itunes when I plug it into the computer - and nothing else happens either.  This happened after I agreed to a software update which failed.  How can I get it going again?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • I bought an iPod nano and Itunes does recognize the iPod but when I try to sync it will not let me.

    I bought an iPod nano and Itunes does recognize the iPod but when I try to sync it will not let me. What now?

    How do you know it will not let you?  Are you getting an error message?  What is the error message? 

  • TS1702 The application "video converter" says that I can retrieve my converted files through iTunes.   Where and how does that happen?

    The application "video converter" says that I can retrieve my converted files through iTunes.   Where and how does that happen?

    I see an iPhone App called Video Converter but not an iPad app. When to do a search, it comes up with a whole bunch of apps so perhaps if you tell us exactly which app it is .....

  • My new Ipad 2 wifi does not charge and itunes does not find my device when pluged into my pc

    My new Ipad 2 wifi does not charge and itunes does not find my device when pluged into my pc. Help

    You should probably start here and go through all of the troubleshooting steps and then report back if you are still having problems.
    http://support.apple.com/kb/TS1538

  • HT203167 Why do files that I have organized into folders not stay in their folders after closing and reopening iTunes? And Why does the renaming get undone? I do this in iTunes Media/ Music.

    Why do files that I have organized into folders not stay in their folders after closing and reopening iTunes? And Why does the renaming get undone? I do this in iTunes Media/ Music.

    I recently had to reinstall my software for a
    dell computer a dell latitude d 830, then after installing all of my software and such including itunes the player did well even record to disks with no problems now that my system has done alot of updating of system files....now the itunes does not burn to my cd...error message 2131 this time
    The 2131 usually indicates firmware needs to be updated on a drive.
    Head to your drivers and downloads page for your latitude at Dell, and check for updates to your firmware for your optical drives. If you're behind and you update, does that clear up the 2131?

  • When does the JSP get regenerated!!

    Hi,
    Can anyone please tell me When does the JSP get regenerated!!
    Thanks in advance
    SP
    [att1.html]

    Answered on interest.jsp
    (please don't cross post)
    mbg
    =============================================================
    "SP" <[email protected]> wrote in message
    news:[email protected]..
    Hi,
    Can anyone please tell me When does the JSP get regenerated!!
    Thanks in advance
    SP

  • How does customer account gets debited when a billing document is made

    where it is configured that a particular customer master record gets debited when any billing in sales is done.
    is it  part of fi-sd config part.
    or fi part only
    sales a/c gets creditted due to vkoa t,code
    but how does customer a/c gets debited where

    Hi
    In SD you set up the account assignment to FI, the customer in SD is normal the same customer number as in FI. There are different other options possible, this is set up in the partner rol in SD. (like Payer).
    From SD there is an intertnal interface to FI/CO that use these settings
    This part of the settings is between FI and CO and should be done by sales and finance

  • Does the sharedObject get destroyed when the browser is closed?

    hey guys, so i just wanted to make sure that when my internet browser is closed it destroys or clears my sharedObject??
    right now i wasnt sure so im doing somehting like the following
    public var sharedObj:SharedObject;
    if(sharedObj != null){
         sharedObj.clear();
    sharedObj = SharedObject.getLocal(...);
    i just wnated to make sure that this is the most effective way to destory the sharedObject just in case there is one left in the browser...
    is there another way to make sure i clear the sharedObjects??

    hello cyber0897,
    No sharedObjects are stored in a cookielike textfile on the clients harddrive, As far as I know there is not an option like with cookies to be destroyed after the browser closes.
    The reset you wrote should be in another order:
    var mySharedObject:SharedObject = SharedObject.getLocal....
    //the above will never give null, because it is created when it doesnt exist.
    //the if (object != null) is useless because of the above, in your post it will be always null, since it is not instantiated...
    mySharedObject.clear();
    mySharedObject.flush(); //not sure if this is neccesary
    You could reset the sharedObject when initializing your application, but if you just want to store variables and get them wherever you need them in your app you could use the singleton class below
    Usage:
    <s:TextInput id="text1" text="@{PrefObj.instance.myString} />
    <s:TextInput id="text2" text="@{PrefObj.instance.myString} />
    (the @ only works in flex 4)
    PrefObj.as
    package
        import flash.events.EventDispatcher;
        [Bindable]
        public final dynamic class PrefObj extends EventDispatcher {
            private static var _instance:PrefObj = new PrefObj();
            public function PrefObj(){
                if (_instance != null){
                    throw new Error("PreferencesManager can only be accessed through PreferencesManager.instance");
            public static function get instance():PrefObj {
                return _instance;
            //add your variables here:
            public var myString:String = "";  

  • Where and how does iPhoto store photos?

    I have iPhoto 2009 and tens of gigabytes of photos, maybe 10,000 in all.
    Currently, I have been dumping these photos into my Pictures folder, then importing them into iPhoto. My questions are:
    1) What's getting stored, and where?
    2) Is this the best strategy?
    3) What about duplicates? Do I just delete them from my iPhoto library, and leave them in my Picture folder? For example, I have hundreds of shots that I created as both RAW and JPEG. That's what I want to keep on disk, but I don't need duplicates in iPhoto.
    4) How do I go about organizing my photos? Should I have a maximum number of photos in a given folder? And how should I organize all this in iPhoto?
    I know these seem like stupid questions. I'm not a stupid user; I have 25 years of experience. I'm just looking for best practice suggestions and a deeper understanding of what is stored and where, and where I will hit performance problems.

    the pictures in my Pictures folder have been copied into iPhoto, (into an enormous invisible folder somewhere)
    Nothing enormous or invisible.
    Since iPhoto 7 (iLife 08) the old iPhoto Library Folder is now a Package File. This is simply a folder that looks like a file in the Finder. The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves.
    Want to look inside? Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
    Standard Warning: Don't change anything in the iPhoto Library Folder via the Finder or any other application. iPhoto depends on the structure as well as the contents of this folder. Moving things, renaming things or otherwise making changes will prevent iPhoto from working and could even cause you to damage or lose your photos.
    How the files are stored: You have three core folders
    Originals are the photos as they were downloaded from your camera or scanner.
    (ii) Modified contains edited pics, shots that you have cropped, rotated or changed in any way.
    (iii) Data holds the thumbnails the the app needs to show you the photos in the iPhoto Window.
    See? No secrets.
    I can be confident that they'll be backed up with Time Machine,
    Yes, or any other Back Upmutility you choose
    and they will remain in their original format (unless I edit within iPhoto),
    Yes, as you can see from your look inside iPhoto
    and, if I later choose a different photo management program, photos in the iPhoto library are still discrete files that I can copy using the Finder?
    Yes, though the more correct way would be to export via iPhoto. Why? Because this will allow you to write any metadata you add in iPhoto to the files.
    Regards
    TD

Maybe you are looking for