Where to store Job Descriptions

Hi all,
I know we have HRP 1002, but what is the best place to store job descriptions so that we can use it to post for open recks, store the skills. From a bigger picture, what is the best place to store the job descriptions?

Hi Sammer,
Can you be more clear what is your clarification? Based on my understanding of you question the answer is, all descriptions of OM objects are stored in Table HRP1002. You can use T.Code: PO03 to maintain Job related infotypes.
Regards
Chandrashekar

Similar Messages

  • Recruitment: Where to store job description???

    Hi,
    we're implementing the SAP recruitment solution (without e-recruiting) in SAP ECC 6 (without any EHP).
    We want to have the master data (vacancy, advertisment, job description) in SAP and publish it via WS to our corporate website which contains an application form.
    As far as I've seen now, it's only possible to store SAPScript text via SO10 for an advertisement (in transaction PBAW/PBAX).
    Is that correct?
    Can I use that to store formatted job descriptions in SAP?
    As far as I've seen, it's not possible to have bullet points on that.
    As the end user must be able to maintain those texts, SAPScript is probably not the best solution.
    Could we store some HTML text (maintained with a WYSIWYG editor) in SAP and link it to the advertisement via a Z table?
    Is there something available like that?
    How would you solve this issue?
    Thanks in advance!

    Hi Eddie,
    general ArchiveLink documentation:
    http://help.sap.com/saphelp_nw73/helpdata/en/4c/e65a717e173ec6e10000000a42189b/frameset.htm
    and you might check this blog post too:
    http://scn.sap.com/people/juanpablo.barcenas/blog/2010/09/29/archivelink-uploading-employee-photos
    Best Regards,
    Janos

  • Where to store job descriptions (if possible) in SAP HCM?

    Hi.
    My HR managers want to store jobdescriptions in SAP for each jobfamily or even each employee. Is this supported in SAP HCM and if yes, what options do I have to do so. Is there a part of the IMG containing some setup for this or does any of you have some link to any documentation on the subject?
    It would be greatlu appreciated.
    br
    Jesper

    Hi,
    You can also check in the IMG, for PA the path is as below
    Personnal administration>Organizational data>Organizational assignement>Organizational plan>define jobs
    Kind regards
    Sarah

  • Job description

    Hi,
    Is there a std functionality in SAP to hold the job description ?
    meaning is there any std Infotype to store job descriptions of the benchmark jobs.
    thanks in advance

    Is it possible to maintain job descriptions in multiple languages in infotype 1002?  For example, can you maintain the description for SAP job 50000001 in French, German and English?  If so, how do you change the language key to reflect a different language?  Currently it defaults to English and there is no way to change that.
    Thank you for your replies.
    Lori

  • Where is Steve Jobs (French Version) de Walter Isaacson on the Canadian Store ? Why is is only on the iTunes from France ?

    Where is "Steve Jobs (French Version) de Walter Isaacson" on the Canadian Store ?
    Why is is only on the iTunes from France ? http://itunes.apple.com/fr/book/steve-jobs/id470912437?mt=11&affId=403761
    I'm french from France leaving in Quebec, it would be great to be able to download it in french instead of buying it in a library.
    Thanks.

    J'ai trouvé le eBook Steve Jobs (French Edition) à l'adrese suivante (25,67$) :
    http://www.archambault.ca/steve-jobs-JLI2845010-fr-pr
    Et vous pouvez utiliser l'application "Archambault - Mes livres" de l'App Store Canadien pour lire le livre.
    I found the ebook Steve Jobs (French Edition) at this address (25,67 $) :
    http://www.archambault.ca/steve-jobs-JLI2845010-fr-pr
    And you can use the app "Archambault - Mes livres" in the Canadian App Store to read the book.

  • Uploading Job Description in an Infotype

    I just wanted to know how do i upload job description for a position in an infotype.
    Or if there is some other way to show a job description for each position in Org Structure.

    Dear Nidhi,
    You could use either LSMW Tool or Custom Program (BDC or BAPI).
    LSMW has the following Options:
    1. Direct Input
    2. Batch Input
    3. BAPI
    4. IDOC
    For information regarding LSMW steps visit the following link:
    /people/hema.rao/blog/2006/09/14/lsmw--step-by-step
    http://help.sap.com/bp_blv1500/BL_US/html/dataconv_lsmw.htm
    You could also develop a custom program using BDC or BAPI.
    Visit the following link:
    Re: sap general
    Where you would find more information regarding BDC and LSMW.
    Regards,
    Naveen.

  • How/Where to store current page details in ADF?

    Hi All,
    What is the best way to populate the managedBean while loading the page?
    In my application, I have an page fragment which display the user details from Webservice DataControl. I drag and drop the webservice data control in to the pageFragment. This fragment has mapped in the taskFlow and the taskFlow as attached in to main JSPX page as a region. I need to store this user information to any place (ManagedBean / or anyother best place to store) which I can use throughout my application, since I dont want to reexecute the webservice each time to get the same user information. Also I want to collect and store this info while I render the main page, not after any user action.
    Please advice how & where to store the information in ADF? Can I create an managedBean? If so how to trigger that class method at page load?
    Thanks
    kln

    Hi,
    in this case you configure the managed bean to be in session scope. Then, on the first page, you define a phase listener for the after restore phase (its a tag on the f:view element). This phaselistener references the managed bean using EL (important). It can do so using a method expression in JSF. For example, if the managed bean had a method populateUserInfo then yu could reference #{beanname.populateUserInfo} and execute the method expression using Java. In the managed bean, the method would access the binding layer Using the BindingContext class
    http://download.oracle.com/docs/cd/E15051_01/apirefs.1111/e10653/oracle/adf/model/BindingContext.html
    Call
    BindingContext .getCurrent().getCurrentBindingsEntry() to obtain a handle to the active instance of BindingContainer.
    BindingContainer bindings = BindingContext .getCurrent().getCurrentBindingsEntry();
    Then on the binding container, you invoke the method to query the Web Service for the user info
    //before you can call a method on the ADF binding layer, make sure the ADF binding is created for the method
    OperationBinding opws = (OperationBinding) bindings.get("name of the method exposed on WS");
    //if you need to pass parameters
    opws.getParamsMap().put("argument name",value);
    opws.execute();
    You can use similar code to access the user information from the method iterator in ADF to populate the managed bean fields. You can then access user information from the managed bean through getter and setter methods
    Frank
    Ps.: I know the description is a bit rough. I'll see if I can come up with a blog sample to a later time
    Edited by: Frank Nimphius on Jan 26, 2010 5:43 PM

  • Job description changes that include DPS

    I am currently in a situation where I have been asked to rewrite my  job description to incorporate everything I now do related to DPS. Are there any titles, job description changes or entirely new jobs that you've seen that  incorporate DPS? Any new titles out there?

    Please look into my profile at linked in https://in.linkedin.com/in/prashantpatel21 I m interested.
    Regards,
    PBP (CLAD)
    Labview 6.1 - 2014
    KUDOS ARE WELCOMED.
    If your problem get solved then mark as solution.

  • Job submission failed : error occurred while scheduling the job. org.quartz.objectalreadyexistsexception: unable to store job with name

    Experts,
    Please help me out here,Am facing this issue while scheduling a job in BIPublisher.
    job submission failed : error occurred while scheduling the job. org.quartz.objectalreadyexistsexception: unable to store job with name
    Thanks,

    You are probably installing on a hardened machine.
    The "installation guide" says that if you are doing so, you need to create a file named libx11.so.4 and update your LD_LIBRARY_PATH (see http://docs.iplanet.com/docs/manuals/messaging/ims52/ig/unix/overview.htm)but:
    1- the library name is libX11.so.4 and
    2- for jre a common file is not enough, you need to install SUNWxwplt at least. This will install the library on /usr/openwin/lib.
    You can check the results running <server-root>/bin/base/jre/bin/jre
    Hope that helps and sorry about my poor english.

  • I have a file where I store my download music. When I click on "add music" to my ipod my music file opens, but rather than have to drag one song at a time to my ipod, how do I copy the entire file at once to my ipod. - steve

    Hi - I have a file where I store my downloaded music. When I plug in my ipod and click on "add music" my file appears. Rather than drag one song at a time, how can I download the entire list at once? - steve

    I am not doing it in ITunes, but i did down load the song from ITunes.  I loaded the song on to my Nano, but in my menu selections it doesn't show the song or the artist in any search format.  However, when i plug in my nano to my PC I see the Nano library on my PC drive listings and that song and artist are there.  I can click on the song and it will play in Windows media on my work PC.  I did notice that the format for most all the songs in my library on my Nano are MPEG - 4 audio Files. 
    Thanks for your help, Mel

  • Where we store in sap r/3

    Dear sir  we can uploaded old data in sap r/3. by lsmw and bdc. but where we store.
    thanks regards
    jitendra

    Hi,
    LSMW - Helps to transfer data from legacy system to SAP either one time or periodically.
    Steps -
    1. Import data (legacy data in spreadsheet tables and/or sequential files)
    2. Convert data (from source format to target format)
    3. Import data (into the database of the SAP application)
    a. Maintain Structure relations, field mapping and conversion rules.
    b. Data from legacy system is read
    c. Based on step a, the data gets converted
    d. The converted data is imported to R/3 system based onBatch input processing or Direct Input or through IDOC Inbound processing
    Regards,
    R.Brahmankar

  • I am getting an error message with my snap scan ix500 that says the Evernote is not installed properly.  I have uninstalled/reinstalled evernote but it still doesn't work.  Anyone know where evernote stores their files on a Mac/

    I am getting an error message with my snap scan ix500 that says the Evernote is not installed properly when I try to transfer it.  I have uninstalled/reinstalled evernote and the scan snap softward but it still doesn't work.  Anyone know where evernote stores their files on a Mac?  Or had this problem.

    Are there any dialog boxes popping up behind your Yahoo screen?
    I have intermittent problems attaching files in Yahoo mail and this is usually the reason.  I'm also using an iMac (10.7.3) and this is likely the problem.
    It is generally a Yahoo issue rather than a Mac problem.

  • Is there any way to access the thumbails-db, where finder stores its icons that are assigned to files?

    Is there any way to access the thumbails-db, where finder stores its icons that are assigned to files?
    Thats a SQLite-DB? Is it possible to access and export them? I´d like to use that Db to assign thumbs to files on my NAS.
    Thx!    

    Are the thumbnails & icons stored in the .DS_Store-File?
    When visible, how can I access the content stored in that file?

  • Where is stocked the description of different object in ABAP Dictionary ?

    Hi,
    Please, Can any one tell me where is stocked the description of different object in ABAP Dictionary like: Domain (Description, value range u2026), View, Data Type...?
    Best regards
    Mustapha

    Hi,
    Check these tables:
    DD01T                          R/3 DD: domain texts
    DD02T                          R/3 DD: SAP table texts
    DD03T                          DD: Texts for fields (language dependent)
    DD04T                          R/3 DD: Data element texts
    DD06T                          R/3 DD: texts on SQL tables
    DD07T                          DD: Texts for Domain Fixed Values  (Languag
    DD08T                          Texts on the relationship definitions
    DD12T                          Text Table for DD12L (Short Descriptions o
    DD15T                          R/3 DD: texts on SAP objects
    DD20T                          AS400-T_MCOBJECT: MC Object Texts
    DD23T                          AS400_L-MCID: Matchcode ID Texts
    DD25T                          Short Texts for Views and Lock Objects
    DD29T                          AS400_L-SELCOND: Selection Condition Texts
    DD30T                          Search help texts
    DD40T                          Text on table types
    DD90T                          R/3-DD: Text for External Index
    Regards,
    Joy.

  • IRecruitment and Apple Safari doesn't display Job Description information

    Hi,
    We are a very large Mac OS X installed user base of eBusiness and have found an issue with iRecruitment rendering on Mac OS X with the Safari web browser. Going to iRecruitment > Jobs: Available Jobs > Vacancy ID should render:
    Job Title
    Organization Name
    Position Information
    Brief Description
    Detailed Description
    Job Requirements, etc.
    Right now, on various version of Safari, up to and including version 5.0.5, ONLY Job Title, Organization Name is rendered on the screen. Everything below Organization Name is blank. Position Information, etc. is completely blank. I have checked Google Chrome and Firefox and they render the page properly on Mac OS X. Safari is a certified browser for Mac OS X for eBusiness suite (and actually, Chrome and Firefox are not). Since all of our employees have Safari by default, I really need a solution. Is there something unique about the Jobs Description page?
    David

    What is your application release?
    Please see these docs.
    Recommended Browsers for Oracle E-Business Suite Release 12 [ID 389422.1]
    Recommended Browsers for Oracle E-Business Suite 11i [ID 285218.1]
    Mac Safari Browser Search Results Show The QTY Field As Only 1 Character Wide [ID 471876.1]
    Thanks,
    Hussein

Maybe you are looking for

  • Importing from iMovie HD project

    I bought a new iMac and i'm importing in iMovie 08 a project from iMovie06. But i have 2 problems: first not all the clips are imported and second that the clips that are imported are not in the same order of the original projct. Does anyone have any

  • Edit in Adobe Photoshop CS without saving the file

    When I do "Edit in Adobe Photoshop CS" of a RAW file, LR saves a TIFF or PSD file first, then opens it with PS CS. LR should give an option to forward the picture to PS CS through some in-memory inter-process communication, as opposed to saving the p

  • Search Help for standard field in WEB GUI

    Hello Experts There are F4 help for Business Partners (street and district that are standard address fields) and it is visible from SAP GUI. However in WEB UI there are no input help (although they are standard) for these fields. Is there customizing

  • Photoshop Elements 9 and CR2 files.

    I have Photoshop Elements 9.0.3 on a Windows 7 laptop and I can't open CR2/RAW files. Is there something I can do to open CR 2/RAW files in PE9?

  • Marketing analytics

    what needs to be done for CRM Marketing Analytics? I need report such as Campaign Response over Time, Campaign revenue over time, number of leads and etc? Is it purely done by the BI team or do the CRM team configure the settings? Also how can I get