E-Recruiting - additional fields in BSP vs. WDA

Good morning!
After searching high and low and not finding an answer, I would like to ask the experts this question.
For the BSP candidate pages we were able to include additional fields via the customer include tables in selected HRPnnnn tables.
The new fields were automatically added to the respective screen.
Now that SAP is replacing the BSP with WDA, how are the additional field customer includes being used? Or is there a complete different way to add your own fields to the candidate profile screens?
Thanks in advance and best regards,
Mathias

Hi,
As of now, the custom fields automatically being displayed on screen is available only with BSP.
The WDA screens are available for extrenal & internal candidates. You can craete your Z fields in cutomer include in the respective infotypes. The WDA developer will ahve to explicitly put the UI elements on the relevant screens & map them to these Z fields. We had a similar requirement & we have done this in this way.
Regards,
Sowmya

Similar Messages

  • E-recruiting: Additional field on cover letter screen

    Hi!
    I want to add a checkbox input field on the application screen in
    e-recruiting above the cover letter. I found the actual BSP
    (coverletter_v.bsp of HRRCF_REG_APPLN) and added the field.
    I am not sure where the best place to put the new database checkbox field
    but I am biased towards an append on table HRP5136 (Correspondence)
    associated with the registration of an application(OTYPE = 'ND' and
    ACT_TYPE= '1020', '1030' and '1035').
    Could someone advise me what kind of objects and methods I
    should/need to change in order to implement this completely and also why
    don't external breakpoints take effect(I tried several places in the controller methods associated with a cover letter)? Is there a customizing that have to be set in order to get the effect of setting breakpoints?
    In my case, as far as I understand there is no possibility to add an extra field in
    a predefined user-exit, but rather one has to change SAP standard. Is
    that right?
    The reason why we need an additional field is that an
    applicant may choose to appear as anonymous in the list of all
    applicants and in that case (s)he needs to tick off the new checkbox
    field. I did not find a suitable solution for this in SAP standard
    e-recruiting system.
    In advance, thanks for any guidance and help on this issue!

    Hi,
    As of now, the custom fields automatically being displayed on screen is available only with BSP.
    The WDA screens are available for extrenal & internal candidates. You can craete your Z fields in cutomer include in the respective infotypes. The WDA developer will ahve to explicitly put the UI elements on the relevant screens & map them to these Z fields. We had a similar requirement & we have done this in this way.
    Regards,
    Sowmya

  • E-Recruiting Addition field to Infotype 5107

    I'm implementing E-Recruiting for a client.
    I added the additional field to infotype 5107 Desired Work Location using PPCI. I also created a custom table for Desired Work Location to store the value of Location (county, institution & etc.).  When I added the new field to the infotype 5107 it automatically shows up on the Desired Work Location of E-Recruiting page as a text field.    I found the bsp for this page it's desLocn_detail.bsp.   Also I have to set two field that are already on the page Country and State to a default value.  Both are drop down list.
    Here's my question:
    1.I would like to make the new field list box i think that's what it is called, where the candidates can select multiple locations.  How & where can i do this? And how can i link the value from the custom table that i created to the new field that I added to Infotype 5107 to appear on the list box?
    2.How and where can I set Country and State field to the a default value? Is this done in the IMG?
    3.I'm assuming the deslocn_detail.bsp is a SAP standard BSP.  should I modified this bsp to rendered what I'm supposed to do?  If i modified this page when the upgrade/service pack is applys my modification will be wiped out?
    any suggestion will be helpful.

    I think you should take the following approach:
    The only sane way to keep multiple values in a single database record that comes to my mind id to create a new table to keep the selections.
    It's key should be the same as of the HRP5107 table plus a sequential number for counting selections.
    There are further 3 things to consider:
    1. Filling up the table before display with current selection.
    2. Handlig user selection after submit.
    3. Hiding the text field from user input.
    ad 1.
    I havn't used <htmlb:listbox> before, so I might wrong somewhere, but i guess that you should prepere two tables and pass them to table and selection attributes.
    Probably it would be best to store them as attributes of the controller to provide easy access from the bsp.
    The proper place to fill these structures is the DO_REQUEST method, probably near the end of the method when all standard stuff is done.
    In this method you should read the configuration of available loactions and put it in the 'table' attribute,
    and read the table of selections and put them in the 'selection attribute'.
    ad 2. The place to handle input is the DO_HANDLE_DATA in the controller. As i've said a haven't used listbox, but probably the are multiple fields with the id of the listbox, each containing a selected item.
    You should read them here and place them in the 'table' attribute.
    Next you have change the on_save method in the controller (Actually it might be in a parent controller - i haven't checked it).
    In there you should insert the values in the 'table' attribute to the custom table with selections (probably you have to delete all entries for the current infotype record first)
    ad. 3
    Now that i wrote 1 and 2 i see that you can just remove the field from the infotype...
    Hope this helps.

  • Adding additional field in cProject is not working after transporting

    Hi All,
    My intention is to add additional field in cProject. So i copied a required view through program BSP_CUSTOMIZE and into another Z* BSP Application object. Then i had done the necessary modification on the view and saved. Then copied error.do controller and actived and tested in development server. It was working fine. So i moved the transport request for this object to quality system. When i tried to test the same thing in quality system, changes done in views are not reflecting.
    When i checked the entries in table BSP_APPLC, i didnt find any. I hope this is the reason why my changes in views are not reflected.
    Can anyone have idea, why it is not happening so. Kindly help.
    Thanks in advance.
    Regards,
    Karthick

    Ensure that in table BSP_APPLC is an entry for cprojects linking to your own aplictaion Zcprojects and is activated.
    I guess you have to reactivate the BSP_CUSTOMIZE in target system again.
    Please remeber: BSP_CUSTOMIZE is not supported officially.

  • Best possible approach to add fields in an FPM WDA application

    Hi guys,
    Our SRM 7 has FPM based WDA views. Extending the customer include by appending fields alone will not work for us as some fields are dropdowns that will perform actions and display/hide other custom fields.
    I can think of the enhancement framework to enhance the views. Since i am knew to WDA and FPM I am thinking there is another easier way to do this.
    What is the best possible approach to fulfil this requirement?
    Regards
    Ali

    Thanks to responses from Chaitanya and Thomas.
    I managed to create additional fields(with action assigned) in the standard shopping cart screens.
    I extended the SRM header structure, added the custom fields of this structure in the header node of the context, and by binding the property of these fileds to the attributes, I don't have to code for the fields enable/disable when the transation is called in edit/create/display mode.
    However, I am still struggling with the dropdown(with action). They remain enabled, even when the data has been saved or the transaction is in display mode. Hints?
    Regards, Ali

  • CFolder : How to fetch the additional fields enhanced using XML ?

    Hi Champions,
    We have enhanced the cFolders document create screen with 2 additional fields. this we could achieve through adding new fields in the Generic object XML file. And placing the same in the Web Dav Folders.
    Now we need to fetch the data which are getting updated for each document against this new field.
    We are not able to trace in BSP page , whether this gets saved against any table , or structure or some other mechanism the data are fetched.
    We need some pointers to fetch this data so that we can use it for upgating, classification data of DMS, and additional content to the notification sent via cFolders when the status is changed etc..
    Thanks for your inputs in advance,,,
    Best regards,
    shashikumar bs

    Hi all,
    We have got the answer.
    pl refer thesame question in SAP Solutions - cFolders  segment for the answer.
    best regards,
    Shashi

  • E-recruitment page is a BSP page?

    E-recruitment page is a BSP page?

    Xiangli,
    which application are you talking about exactly in erecruitment because it is a combination of both BSP and WDA
    Thanks
    Bala Duvvuri

  • Additional field in adhoc query

    Hi all, I need to be able to report on the IT105 subtype 0001 system ID for employees who are withdrawn from the company, however, when someone leaves their IT105 record is delimited so adhoc query will not output anything.  Has anyone coded an additional field that will look at the latest record regardless of the date?
    If you have, please can you share the code with me!?
    Many thanks!

    Hi Tanya ,
    Please find the code below. It is designed for additional structure z105_last which is bassed on P0105 type.
    data l_it_p0105 type standard table of p0105.
    clear: l_it_p0105, z105_last.
    call function 'HR_READ_SUBTYPE'
      exporting
        tclas                 = 'A'
        pernr                 = peras-pernr
        infty                 = '0105'
        subty                 = '0001'   
        begda                 = '18000101'
        endda                 = pn-endda
      tables
        infty_tab             = l_it_p0105
      exceptions
        others                = 1.
    if sy-subrc = 0.
      describe table l_it_p0105.
      read table l_it_p0105 into z105_last index sy-tfill.
    endif.
    Regards,
    Sergey

  • How to add additional fields to zreport which contains standard report code

    Hi Experts,
    In order to add additional fields to standard report i copied the code into zreport but i am unable to  add additonal field into report because the code is looking so complex.
    standard report:AQZZ/SAPQUERY/FKF1============
         or
    sapmenu->accounting->financial accounting->accounts payable->information system->reports for accounts payable accounting->master data->S_ALR_87012087-Addresslist.
    Additional feilds to add is :Region,company code,country
    Please let me know how toidentify ALV and guide me how to solve this.
    Regards,
    naresh.

    Hello Naresh,
    First check whether these three fields are available in the text elements area.
    Please write your code in the subroutine %comp_ldesc.
    Repeat the code for your three new fields
    perform ldesc(rsaqexce) using 'G00010000X010       00  A1'
        %txt1 %txt2 %txt3 'LFA1-LIFNR' LFA1-LIFNR 'LFA1-LIFNR'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A01'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
    So this subroutine will give you the basic list. Now Program is creating ALV with this basic list. So I think you don't need to worry about that. Please have a thorugh look at the code over this perform, and write accordingly.
    I think this is enoogh.
    Please update if you got the solution, which will be informative for others.
    regards,
    Antony Thomas
    Edited by: Antony Thomas on Jul 27, 2010 7:57 AM

  • How To Add Additional Fields When Creating New Contact From w/in Mac Mail?

    Hi there. When in Mac Mail and clicking on contact information provided within an email, we are able to either (1) CREATE NEW CONTACT or (2) ADD TO EXISTING CONTACT (by clicking on the arrow next to a phone number, address, etc.). If I choose "Create New Contact," how can I add additional fields BEFORE clicking on "Add to Address Book" button in lower right corner? Let's say, for example, I know this new contacts URL or company. (Currently, I am creating the new contact from within Mac Mail and then going to Address Book and finding the contact, then editing, the adding the additional fields, then saving, and then going back to Mac Mail. This all takes time.)
    Note: When creating a new iCal event from within Mac Mail, we can click on Option/Alt key when selecting drop-down arrow...and this will allow us to add additional information. The same feature isn't available for address book???

    I have the exact same question and problem. If there was a way to automatically open the AB entry after "creating new contact" this would solve it.
    Thanks for any suggestion

  • Additional field for Infoset in BI 7.0

    Hi
    I have created an Infoset with a cube and a masterdata object. Now my requirement is to have an additional field which i can not extend to cube or masterdata.
    Is it possible by any chance to add an additionla field to Infoset and write an abap code ?

    Any suggestions ?

  • How to get additional field from the second list base on lookup information column ?

    Hi everyone,
    Currently I created a SharePoint hosted Apps project and I need to know how can I get additional field from the second list base on lookup information column. example List1 Have 2 columns column1 and column2(Lookup Information from list2 (category)),
    List2 have 3 columns title, and category, and color.  so how can get the title and color from list2 base on this lookup information column (SharePoint Hosted apps and Javascript code)? that is possible?
    Best regards,
    ------------------------------------------------------------ ---Tola---

    You can build one custom lookup control. Refer to the following post
    http://www.stuartroberts.net/index.php/2012/10/03/enhanced-lookup-field-part-1/
    Alternatively, try the following solution from codeplex
    http://sp2010filteredlookup.codeplex.com/
    http://filteredlookup.codeplex.com/
    --Cheers

  • How to add additional field to the existing report

    hi,
    report name is RHXPE_EXPIRED_QUALI
    if u execute report alv list is genereted with like this.
    object type, id of related object, object name, object type, id of related object,last name, first name like this
    where can i get these field descriptios in the prigram becoz many perform ststements r there. i want to add additional field text.
    program is:
    CORRECTIONS
    DATE       CORRECTION NOTE    AUTHOR DESCRIPTION
    09.03.2001            0388404 XSC    Wrong list output for multiple Os
    05.06.2001 AL0K023393 0410219 Lud    Wrong keydate for search with
                                         Pchbegda and pchendda.
    30.01.2002 S6BK000033 0491055 TS     Report: RHXPE_EXPIRED_QUALI
                                         doesn't provide a spool list.
    REPORT rhpk_find_pers_with_expired_qu MESSAGE-ID pq.
    TABLES : pchdy.
    INCLUDES
    INCLUDE rhxmacro.
    INCLUDE rhpeini0.
    TABLES
    DATA: objects  LIKE hrsobid    OCCURS 1 WITH HEADER LINE.
    VARIABLES
    DATA: subrc LIKE sy-subrc.
    DATA: orgeh_text LIKE t777o-otext.
    SELECTION SCREEN
    objid
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETERS:
       pchplvar LIKE p1000-plvar NO-DISPLAY,    "plan version
       pchotype LIKE pchdy-otype NO-DISPLAY. "objecttype
    Objid
    rhx-f4-objid-data.
    SELECT-OPTIONS:  pchobjid FOR pchdy-objid_str NO INTERVALS.
    Search
    PARAMETERS:
      pchseark LIKE pchdy-seark.           "matchcode object plom.
    SELECTION-SCREEN END OF BLOCK b1.
    Objecttime
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-001.
    PARAMETERS: se_begd LIKE  p1000-begda DEFAULT sy-datum,  "'19000101',
                se_endd LIKE  p1000-endda DEFAULT high_date.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-005.
    PARAMETERS:
       h_events LIKE dynp_rhpp-gen_train,  "with training sugg
       h_qual LIKE dynp_rhpp-expired_qual. "with Qual
    SELECTION-SCREEN END OF BLOCK b3.
    AT SELECTION-SCREEN ON pchobjid.
      PERFORM check_objid_sign(rhxchk00) USING pchobjid-sign.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pchobjid-low.
      rhx-f4-objid-low pchplvar pchotype pchobjid '' ''.
    AT SELECTION-SCREEN.
      PERFORM check_plvar(rhxchk00) USING pchplvar.
      PERFORM check_seark(rhxchk00) TABLES pchobjid
                                    USING  pchseark pchplvar pchotype.
    INITIALIZATION
    INITIALIZATION.
      PERFORM read_t77s0_parameters_for_pe.
    get user parameters/Planvariante und Beginndatum setzen:
      pchotype = $orgeh.
      CALL FUNCTION 'RHP0_USER_PARAMETERS_GET'
           EXPORTING
                fill_if_initial = 'X'
           IMPORTING
                plvar           = pchplvar
                begda           = se_begd
                endda           = se_endd
              with_key        =
              SUBSTITUTE      =
              ESSENTIAL       = only_essential
                org_unit        = pchobjid-low
          EXCEPTIONS
                OTHERS     = 0.
    SE_BEGD = LOW_DATE.   "Correction AL0K023393 0410219
      IF NOT pchobjid-low IS INITIAL.
        pchobjid-sign   = 'I'.
        pchobjid-option = 'EQ'.
        APPEND pchobjid.
      ENDIF.
    START-OF-SELECTION
    START-OF-SELECTION.
    correction 0491055
    correction was done for getting a spool list in background-processing.
      CASE sy-batch.
        WHEN space.
          SUBMIT rhpe_expired_quali
               WITH pchplvar = pchplvar
               WITH pchotype = pchotype
               WITH pchobjid IN pchobjid
               WITH pchbegda = se_begd
               WITH pchendda = se_endd
               WITH h_qual = h_qual
               WITH h_events = h_events
                      AND RETURN.
        WHEN 'X'.
          SUBMIT rhpe_expired_quali
               WITH pchplvar = pchplvar
               WITH pchotype = pchotype
               WITH pchobjid IN pchobjid
               WITH pchbegda = se_begd
               WITH pchendda = se_endd
               WITH h_qual = h_qual
               WITH h_events = h_events
                      TO SAP-SPOOL.
      ENDCASE.
    END-OF-SELECTION
    END-OF-SELECTION.

    Hi,
    I think you need to show more programs.
    you said, the report program is 'RHXPE_EXPIRED_QUALI', but you upload  'rhpk_find_pers_with_expired_qu' program.
    usually, ALV field is modifyed in 'PERFORM fieldcatalog_modify', if you use Functional ALV.
    Try to search 'fieldcatalog function', you will find easy.
    Regard,
    SY Kim

  • Hiding fields in BSP application

    Hi Friends,
    Iam using HRRCF_TRM_srch BSP Application, i have a requirement to hide few fields in BSP pages. Can any one tell me what BADI and what BAPI is this BSP application is triggering at the behind. so that can will enhance the BADI or modify the BAPI, without modifying BSP page or controller.
    Thanks in advance
    Srikanth

    Hi James,
    Firstly, do you need to have the hidden items on the page? If you don't, you should just delete the items. If you do (perhaps because of the calculations you need for your second question - see below), you can set them to "Hidden" fields - select each item and set the Display As setting to Hidden.
    Secondly, there are at least two ways to perform calculations on fields - either using a Page Process or a table Trigger. Page Processes will work on any fields available in the session and triggers will work on the fields on a table.
    Which you choose typically depends on whether or not data is likely to be inserted or updated outside of your application.
    Regards
    Andy

  • Adding Additional field "Supplier name" & "Supplier No" in MB5B Report?

    Can i add the above stated two additional fields in the standard report of MB5b, is there any implicit enhancement in the standard report which can help achieve my objective?

    Hi,
    The possibility to include additional fields in the report MB5B is       
    limited to MSEG, just as you can see in the text of the                  
    report RM07MLBD_CUST_FIELDS itself:                                                                               
    This include contains the structure for additional fields for report 
    RM07MLBD ( transaction MB5B )                                                                               
    the following fields are not shown in the list of report             
    RM07MLBD                                                             
    If you want to insert some of these fields in the list of the        
    hidden fields delete the '*' in the type definition.                 
    >>* There are only fields from database table MSEG possible <<<<<<<<<<<  
    Please use only the following fields, because these fields           
    are considered during the creation of the field catalog;             
    plaese consider, that each active field will cost performance                                                                               
    If you need to add aditional information from other tables, like the     
    Reference Document Number you will need to  build your own query.    
    Regards,
    Mauro

Maybe you are looking for

  • Windows 8.1 won't permit the installation of Adobe Reader (install_reader11_en_mssd_aaa_aih.exe)

    I am trying to install adobe reader on a PC running windows 8.1. I downloaded the file to install reader, install_reader11_en_mssd_aaa_aih.exe. However, when I try to run the program, and I've also tried "Run As Administrator" as well, it has a sort

  • Transfer data from dot net to sap system

    Hi gurus! please , help me out , i wanna transfer data from dot net to sap system. i have no idea abt it. Points can be given sure!!!!!! Rahul Deshmukh

  • System updates = no internet with konqueror only[solved]

    Could not start process Unable to create io-slave: klauncher said: Error loading 'kio_http'. I get this error after a few recents updates. I still have internet connection with firefox and other system services. heres what I've just updated: [03/15/0

  • Button error - document.wwv_flow.p_request is null or not an object

    Hello I currently seem to be getting a page error with Internet explorer, whenever I click a button, the error is 'document.wwv_flow.p_request' is null or not an object, the button then stays disabled. The error doesn't seem to occur on all the pages

  • Organzing in I Photo 5

    I switched to Mac from PC about 18 mos ago and was turned ogg by I photo 4 because I had about 8000 digital photos organized into folders, subfolders, sub-subfolders etc. There was no way to keep that structure in I Photo 4. Now that version 5 is ava