How to make default to Family member gender?

Hi Experts,
Whenever we are maintaining family member record for one employee, we want to make gender field to set as default. For exa- If family type is mother, after pressing enter it should go to Female and if family type is father after pressing enter it should go to Male. My understanding is that we can maintain through Title. But I dont have title option in my IT0021 screen?
Can anybody help me?
Regards,
P

It can also be done through user exit ZXPADU01. Ask technical person to it, it is very simple.
Here is a sample code that should go inside the user exit.
Data:  lx_p0021 LIKE p0021.
IF innnn-infty = '0021' AND ipsyst-ioper = 'INS'.
  CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
    EXPORTING
      prelp = innnn
    IMPORTING
      pnnnn = lx_p0021.
IF lx_p0021-SUBTY = '5'.  "Mother
Q0021-GESC2 = 'X'.
ELSEIF lx_p0021-SUBTY = '6'.  "Father
Q0021-GESC1 = 'X'.
ENDIF.
  CALL METHOD cl_hr_pnnnn_type_cast=>pnnnn_to_prelp
    EXPORTING
      pnnnn = lx_p0021
    IMPORTING
      prelp = innnn.
ENDIF.
This is not a compiled code, so errors may occur.

Similar Messages

  • How can I get a family member back after being removed from family share?

    How can I get a family member back after being removed from family share?

    See [[Replace your Sync information]] but read the cautions carefully.
    * also see [[firefox Sync is not working]]
    It is always a useful precaution to make manual bookmarks backups
    * see [[Backing up and restoring bookmarks]]
    The above article also explains about the autobookmark backups that firefox generates, but be sure to make manual backups as you work, it is very easy to overwrite the wrong set of backups.
    I am not entirely certain what firefox is doing in your case, perhaps the synced Netbook does not have the expected set of bookmarks on it.
    Presumably sync may be uninstalled or disabled like any other add-on
    *see [[Uninstalling add-ons]]

  • How to make default values in selection field?

    hi,
          i have selection field date , using data element 'QENTST' using following code in view INIT Method. i get the input selection field when i test application.
    DATA: LT_RANGE_TABLE TYPE REF TO DATA.
    CALL METHOD WD_THIS->M_HANDLER->CREATE_RANGE_TABLE
      EXPORTING
        I_TYPENAME                     =     'QENTST'
      RECEIVING
        RT_RANGE_TABLE           =     LT_RANGE_TABLE.
    CALL METHOD WD_THIS->M_HANDLER->ADD_SELECTION_FIELD
      EXPORTING
        I_ID                                     = 'QENTST'
        IT_RESULT                         = LT_RANGE_TABLE
        I_OBLIGATORY                 = ABAP_TRUE.
    What i need now , to make default value in this selection field( low = sy-datum and high = sy-datum + 10 ) . I have checked , i found one method called... SET_RANGE_TABLE_OF_SEL_FIELD. Bt i m not able to understand how to assign values to input table parameter in this method?
    Thanks In Advance.
    Saurin Shah

    Hi,
    Refer this Article by Thomas on how to make default values in Select Options:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60474842-91ca-2b10-3390-d2fd30f335fd
    I hope it would solve your problem.

  • How to make Default ALV layout

    Hi,
    I want to make 'STANDARD view' as a default ALV Layout...If anybody execute my ALV Report STARD Layout variant should display by default. Other variant layouts they can select from drill down..
    I know class and method but i don't know how to write code for this with paremeters..Can anybody help on code please..
    CLASS : CL_SALV_WD_C_TABLE
    METHOD : IF_SALV_WD_COMP_TABLE_PERS~SET_STANDARD_VIEW
    My current ALV CODE
      DATA: l_ref_interfacecontroller TYPE REF TO iwci_salv_wd_table .
      DATA: l_value TYPE REF TO cl_salv_wd_config_table.
      l_ref_interfacecontroller = wd_this->wd_cpifc_alv( ).
      l_value = l_ref_interfacecontroller->get_model( ).
    Thanks.,
    Subba

    Hi sarbjeet singh,
    Thanks for your reply...
    I didn't understand your answer...Already this view gone to production system and every USER created his own view..
    Now how can make default standard view to all users..
    If i keep Standard view as Intial view and release transport to production is it effected to all users and display standard view as initial view?
    Thanks,
    Subba

  • How to make Default the Higher-Level Manager of the employee

    Dear experts,
    how to make Default the Higher-Level Manager of the employee as Further Participant in performance management ?
    Regards,
    TVS

    Hi,
    The delivered BAdI below defaults in both the appraiser and appraisee as part-appraisers//Default Further Participants.
    BAdI Area: Appraisal Enhancements
    BAdI Definition: HRHAP00_DOC_DEF_DO (Appraisal - Default Further Participants)
    App. Enhn.: DEFAULT_ALL_MANAGERS     
    Implementation: HRTMC_DEF_OTHERS
    Implementation short text: Determine All Managers
    Implement this BADI  in SE18/SE19 and  write the desired code in the  BADI methods
    Hope this will help u out.....
    Regards
    Lakhan

  • How to make default Currency  depending upon plant in table entries

    Hi,,
    How to make default Currency  depending upon plant in table entries?
    I am making entries in SM30.
    I have the following fields in z table.
    plaant , material,month.year,PFvalue,Currency.
    Can  some body throw light for this issue,please?\
    I am familiar  with modification-events.
    With Regards,
    Jaheer

    Hi,
      In PBO, within a LOOP, table control is filled via a Structure/Work Area.
      In that module, code as follows,
    LOOP AT SCREEN.
        IF WA-FIELD1 = C_1 AND SCREEN-GROUP1 = C_G1.
          SCREEN-INPUT = 0.
          MODIFY SCREEN.
        ENDIF.
    ENDLOOP.
      Here, WA is a strcture & FIELD1 is its field, like that...
      I already did this.
      Check it out & Reply.
    Yours,
    R.Nagarajan
    We can

  • Family member Gender

    Dear all,
    I want to make default Gender for family member/dependents infotye.
    i.e.  Father.   it should be male by default when i creating it.
    regards,
    jagdish

    Hi,
    You can default if by implementing the user exit ZXPADU01.
    Please check the following code:
    IF INNNN=INFTY EQ '0021' AND INNNN=SUBTY EQ '01'.
    DATA: wa_P0021like P0021.
    CALL METHOD CL_HR_PNNNN_TYPE_CAST=>PRELP_TO_PNNNN
    EXPORTING
    PRELP = INNNN
    IMPORTING
    PNNNN = wa_P0021.
    wa_P0021-GESC1 = '1' . --> The field you wanna default.
    CALL METHOD CL_HR_PNNNN_TYPE_CAST=>PNNNN_TO_PRELP
    EXPORTING
    PNNNN = wa_P0021
    IMPORTING
    PRELP = INNNN.
    ENDIF.
    Regards,
    Dilek

  • How do you designate a family member to pickup an item at an Apple Store?

    I just bought a Macbook Pro and can't figure out how I can designate my son to pick it up for me.

    For most orders, you can have a friend or family member make your pickup. AFAIK, only unlocked iPhones must be picked up by the person who placed the order. Read here:
    http://store.apple.com/us/browse/home/personal_pickup

  • How to make default account assignment category in planned order?

    Scneario Description:
    1. Sales order for a configurable parent item is created in ERP & order BOM is changed & transferred to APO. In APO MRP run takes place for that parent item, which creates a planned order with account assignment category "M" (M:Individual Customer w/o KD-CO.
    2. Now based on the dependant requirement generated for parent item, MRP takes place for one of the child item in ERP & purchase requisition gets created for child item.
    Question:
    1. Can anybody help me how i can make default account assignment as "F" (F:Order) in the planned order of parent item?
    2. PR created for child item also has default account assignment category as "M". we wish to change that to "F".
    Thanks & best regards
    Hemchandra & Sandeep Mandhana

    Hi V. Suresh,
    The account assignment category maintained in the requirement class for parent item is 'M'.
    No account assignment category maintained has been maintained in the requirement class Semi-finished component (this component is sent for subcontracting).
    The business process is as follows:
    1. Create Sales Order for Parent say ME_PARENT.
    2. Order BOM for ME_PARENT is created and subsequently cifed to APO.
    3. PP/DS heuristic is run for ME_PARENT.
    4. MRP for component ME_COMP is run in ERP.
    It can be seen that purchase requistion for ME_COMP has a/c assgn category as 'M'. It seems that the ME_COMP has inherited 'M' from ME_PARENT.
    We would like to have no a/c assgn category for ME_COMP.
    Any pointers?
    Regards,
    Sandeep

  • How to make default personalization options for users

    Hi all,
    How can I make default personalization options for users, so that those will the default options when the user opens the portal BSP applications. Those will be the standard, at later point of time if they want they can personlalize some other fields, but earlier fields will be the default fields and user cant be able to change them.
    Thanks
    Murthy

    Hi Murthy,
    If you use IMG (crmc_blueprint_c) to customize PCUI appl than you can use the personalization feature. If you select 'Not in List' in the IMG for the field in the fieldgroup structure, than this field by default will not be viewable in the List View and will not be checked as 'Visible' in the Personilzation link. So by not selecting 'Not in List' you are giving that field to be viewable and all other fields are available for users to personalize by default.
    If you have maintained the 'List View' using the CRM Designer, than most likely you would lose the above feature, as SAP Standard code considers the CRM Designer as high level of customization.
    Thanks
    Harsh

  • How to make default value for region based on city?

    Dear Experts,
    When city is selected in TRIP or PR05, how to make the default value of city based on region?
    The standard search help givenfot citydoesnt contain any enhancement point?
    Pls suggest how to resolve this!!!
    Thanks In Advance
    Rgrds,
    Sravan

    Hello Sahil
    Account and CC/PC are 2 different entity types. For PC and CC there is dependency. First you have to load Cost centers and then load PC.
    For CC - load CC master data first. Then load hierarchy file then group file and finally assignment file.
    Follow same process for PC.
    GL you can load independently but you have first load group GL then operational GL and then GL at company code level,
    Kiran

  • How to make default selected "Set to Null" option in  Prompt screen?

    Hi,
         I have created Report using Bex Query. It has around 20 Optional variables.
        In the Prompt screen for Optional variables it is showing "Set to Null" Check box.
         I want to make this Check box selected by default when we preview. Kindly help me to make this option.
         Thanks for your support in advance.
    Thanks & Regards,
    Shiva

    Hi.
    If you mean on how to set default to date between dashboard prompt there is a Default to part in the prompt.
    Example - SQL Results:
    SELECT min(TIMES.TIME_ID) FROM "Presentation folder"
    SELECT max(TIMES.TIME_ID) FROM "Presentation folder"
    Or you can add repository variable as default for each date (from and to), etc.
    Regards
    Goran
    http://108obiee.blogspot.com

  • How to make default event on Droid calendar an "appointment"?

    Does anyone know how to make the default new event on the Droid calendar an "appointment" instead of a "meeting?"  When I enter a new event on the Droid calendar it assumes a meeting, asking for attendees and for attendance confirmation.  That's also how it syncs to my Google calendar, as a "meeting."  I only want to create simple appointments on the phone calendar. Right now I have to go up to the Google calendar, delete the event as a "meeting" and re-enter it as an appointment, at which point it flows down to the phone correctly.  Help!

    Thank you for your inquiry! I can definitely understand the need for being able to increase the font size in your email. At this time, there is no option in Android phones to increase the font size for email. This issue has been lifted up to Google in the past, but at this time there is no information on whether this will be available in the future. There are different mail applications in the Market that may have the ability to increase the font size.

  • I have CC and DC Pro on my account. How do I designate a family member to use the DC Pro?

    Is there a way to designate a family member to be able to use the DC Pro subscription on my account? I have the Creative Cloud (all apps) for myself, but I specifically purchased the monthly DC Pro plan.
    Or will they need to use my email address log in to their application? If so, if there are two different types of subscriptions.. which one will be used? Sorry to confuse you.. as I'm so confused myself.

    Correct. They need to register under their name. Contact support to sort this out.
    Mylenium

  • How do I most effectively use find my phone and how can I help a family member use find my phone?

    What is the most effective way for me to use FIND MY PHONE?
    What is the most effective way for me to help my family member FIND THEIR PHONE?
    Thank you

    Effectively use is for what? On your computer you can log into iCloud at www.icloud.com and locate your device. Or you can use a different iOS device and the Find My iPhone app to do the same thing.

Maybe you are looking for

  • ERROR ORA-30200 IN RUNNING CREATION FILE - Forms [32 Bit]

    Running a process of Forms [32 Bit] Version 6.0.5.35.3 get the error ORA-30200 while running the same process from a different computer file creation occurs in a correct way (This is a client-server) The form uses the TEXT_IO and specifically the fol

  • Circumventing Authorizations in BAPI_GOODSMVT_CREATE

    Does anyone know if there is a way to circumvent the standard authorizations in BAPI_GOODSMVT_CREATE in order to use custom authorizations? Thanks...

  • Sending Mail From Pages

    A new behavior has emerged after updating to OS X 10.6.8.  Trying to email from pages by typing Share, Send via Email, PDF (or Pages or Word) and nothing happens.  This used to work fine.  Thoughts?

  • IPhoto and Lightroom

    I am trying to switch from Aperture to Lightroom but I still want to use Iphoto - I have a big library there. Importing from IPhoto to Liightroom is ok but when I tried dragging same pictures back from LR to Iphoto, Iphoto said they are in unreadable

  • Can we set prompts value in Webi to schedule thru JAVA SDK 4.0

    Hi, I need to schedule webi report which has prompts.  Can we have schedule webi report with prompts in 4.0. I was able set values for prompts and refresh the webi report using documentInstance object. I think we can't use this object for scheduling