Default Last name for Spouse in Family infotype 0021

Hi,
We have a requirement and wondering somebody could help me with that:
when ever we maintain the Family infotype 0021 - If the person is married the spouse last name is automatically populating in the last name field. Is there any functionality which would allow the last name of the female spouse come in as blank as it is not standard for the last name to be same as husband.
Regards,
Raghu

Hello there,
Looks like defaulting last name is standard behavior in different countries specifics:
Note 1001323 - Defaulting of Last name in IT0021 (Family/Related Person)
[https://websmp130.sap-ag.de/sap(bD1lcyZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1001323]
Note 1083523 - Defaulting Last name in IT0021
[https://websmp130.sap-ag.de/sap(bD1lcyZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1083523]
Note 625670 - MASTER DATA: Default family name for all IT0021 subtypes
[https://websmp130.sap-ag.de/sap(bD1lcyZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=625670]
MP002120     35     IF P0021-FANAM EQ SPACE AND PSYST-IOPER EQ 'INS'.    "note 1083523       
               36       MOVE P0002-NACHN TO P0021-FANAM.                                       
MP00212R     50    IF P0021-FANAM EQ SPACE AND PSYST-IOPER EQ INSERT.      "JM#1001323  
               51       MOVE P0002-NACHN TO P0021-FANAM.
So if you wish, you can overwrite this according to sandbisw1983 instructions.
Greetz.

Similar Messages

  • Default marked for checkbox 'From Family Infotype' under infotype 0198

    Hi all,
    I need help here to check whether there is something wrong with my codes.
    I want to make a default tick at check box 'From Family Infotype' from infotype 0198.
    If a user enter Tcode PA30 and using infotype 0198, he will see the checkbox is automatically marked before he can proceed to key in other details by copying it from another record and save it.
    Then, i enters the coding as below in include ZXPADU01 but it is not working as needed.
    Pls help me to correct this. Thanks.
    INFOTYPES:            0198.                                    
    DATA: i0198 LIKE p0198.
    FIELD-SYMBOLS: <fs_pnnnn> TYPE ANY.                   
    FIELD-SYMBOLS: <fs_innnn> TYPE ANY.                   
    CASE innnn-infty.
        WHEN '0198'. "Schedular Deduction Tax
        ASSIGN ('INNNN') TO <fs_pnnnn> CASTING TYPE p0198.
        CHECK sy-subrc = 0.
        MOVE <fs_pnnnn> TO p0198.
       IF p0198-subty = '01'.
         IF ipsyst-ioper = 'COP'.
           MOVE 'X' TO i0198-tctgf.
           i0198-tctgf = 'X'.
         ENDIF.
       ENDIF.
        IF ipsyst-ioper = 'COP'.
          IF p0198-subty = '01'.
           MOVE 'X' TO i0198-tctgf.
            p0198-tctgf = 'X'.
          ENDIF.
        ENDIF.
        CALL METHOD cl_hr_pnnnn_type_cast=>pnnnn_to_prelp
          EXPORTING
            pnnnn = p0198
          IMPORTING
            prelp = innnn.
    ENDCASE.
    Edited by: safarin on Jun 11, 2009 6:51 AM
    Edited by: safarin on Jun 15, 2009 4:49 AM
    Edited by: safarin on Jun 15, 2009 4:53 AM

    Hi Sanda,
    I think you can make use of the user exit "PBAS0001". Use one of the components of the exit. Create a project for the same in CMOD and activate it.
    Do the business checks in this user exit's include.
    Hope this helps you.
    Regards,
    Subbu.

  • Can you create a different default Opportunity name for Lead conversion?

    We're using CRMOD for a high-volume call center and we end up with leads with the same name. According to the online help, "The First Name and Last Name for the lead appear in the Opportunity Name field by default." That's working correctly, but it would make our lives easier if it did something different, like maybe First Name, Last Name, and ZIP code, or First Name, Last Name, and a Timestamp. Is there a way to do that? I realize the users could do something manually, but then I get all the associated issues.

    I'm not quite sure how that would work. I attempted this in staging using [<AccountName>]+" "+[<AccountLocation>], and I checked the Post Default box. When I go to convert a Lead, it still defaults to First Name and Last Name on the Convert Lead screen.

  • "Untitled" as default document name for new documents

    I have one installation of Adobe Illustrator CS2 in a Mac with which I have the following problem:
    Whenever I go to File->New, to create a new document, the default document name is blank, and it should be "untitled".
    Is there a way (without reinstalling) to correct this? (turn the default blank document name to "untitled" default document name, for new documents)
    Thank you.
    Juan Poniachik

    On what Mac? If it's on a new Mac with Snow Leopard, I would guess it is one of those compatibility issues of new OS vs. legacy software. If so, you can't change any of that. Other than that I can only think of trying to edit the document templates...
    Mylenium

  • Default caller name for a given phone number

    If you have multiple contacts that have a phone number in common, is it possible to decide which of those contacts is the default display name for that number?
    For example, I have an entry for my wife. I also have an entry for "ICE" (In Case of Emergency). They're essentially the same. When my wife calls or texts me, the display says "ICE." I want it to say "Wife."
    Is this possible?

    Nope.
    BTW, I am curious, do you have a passcode lock on your phone? If so, doesn't that pretty much make any ICE contact pointless since they cannot access the phone?
    Understand your desire to have it there though. Also, there are apps out there (think called ICE) that can let you put a icon on your screen that says ICE and then link that to a number.
    Message was edited by: DaVBMan

  • How to set the default file name for upload

    Hi All,
    I have the following BSP app for a file upload of a csv file. I want the page when displayed show the default file name to be loaded as c:\db1\currentPM.csv
    What changes do I need to make to get the default file name in the BSP app.
    Thanks
    Karen
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content id               = "content"
                   design           = "classicdesign2002design2003"
                   controlRendering = "sap"
                   rtlAutoSwitch    = "true" >
      <htmlb:page title="File Upload " >
        <htmlb:form method       = "post"
                    encodingType = "multipart/form-data">
              <htmlb:textView text   = "File:"
                              design = "STANDARD" />
              <htmlb:fileUpload id          = "uploadID"
                                onUpload    = "UploadFile"
                                upload_text ="Upload"/>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    On Input Processing
    event handler for checking and processing user input and
    for defining navigation
    DATA: EVENT TYPE REF TO IF_HTMLB_DATA,
          DATA TYPE REF TO CL_HTMLB_FILEUPLOAD,
          LV_OUTPUT_LENGTH TYPE I,
          LV_TEXT_BUFFER TYPE STRING,
          FILE_NAME TYPE STRING,
          FILE_PATH TYPE STRING ,
          INTERN TYPE TABLE OF  ZALSMEX_TABLINE.
    DATA: LT_BINARY_TAB TYPE TABLE OF SDOKCNTBIN .
    TYPES: BEGIN OF TY_TAB,
           FIELD1(2) TYPE C,
           FIELD2(2) TYPE C,
           FIELD3(2) TYPE C,
           FIELD4(2) TYPE C,
           FIELD5(2) TYPE C,
           END OF TY_TAB.
    DATA:  WA_TAB TYPE TY_TAB,
           IT_TAB TYPE TABLE OF TY_TAB.
    TYPES: BEGIN OF TY_LINE,
              LINE(255) TYPE C,
           END OF TY_LINE.
    DATA:  WA_LINE TYPE TY_LINE,
           IT_LINE TYPE TABLE OF TY_LINE.
    EVENT = CL_HTMLB_MANAGER=>GET_EVENT_EX( REQUEST ).
    IF EVENT IS NOT INITIAL AND EVENT->EVENT_NAME = HTMLB_EVENTS=>FILEUPLOAD.
      DATA ?= CL_HTMLB_MANAGER=>GET_DATA( REQUEST = RUNTIME->SERVER->REQUEST NAME = 'fileUpload' ID = 'uploadID' ).
      FILE_NAME = DATA->FILE_NAME.
      FILE_PATH = FILE_NAME.
      IF DATA IS NOT INITIAL.
        CALL FUNCTION'SCMS_XSTRING_TO_BINARY'
         EXPORTING BUFFER = DATA->FILE_CONTENT
         IMPORTING OUTPUT_LENGTH = LV_OUTPUT_LENGTH
         TABLES BINARY_TAB = LT_BINARY_TAB .
        CALL FUNCTION'SCMS_BINARY_TO_STRING'
        EXPORTING INPUT_LENGTH = LV_OUTPUT_LENGTH
         IMPORTING TEXT_BUFFER = LV_TEXT_BUFFER
         TABLES
         BINARY_TAB = LT_BINARY_TAB.
        IF SY-SUBRC = 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        SPLIT LV_TEXT_BUFFER AT CL_ABAP_CHAR_UTILITIES=>CR_LF INTO TABLE IT_LINE.
        IF SY-SUBRC = 0.
          LOOP AT IT_LINE INTO WA_LINE.
           SPLIT WA_LINE AT CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
            split wa_line at ','
            INTO WA_TAB-FIELD1 WA_TAB-FIELD2 WA_TAB-FIELD3 WA_TAB-FIELD4 WA_TAB-FIELD5.
            append wa_tab to it_tab.
          ENDLOOP.
        ENDIF.
      ENDIF.
    ENDIF.

    Also, I missed another point.
    In the folder c:\dbdata I have a number of CSV files on the user frontend. I would like the BSP application to get the list of files in the folder and process them one after the other. How can I get the list of files on the folder in the user PC and how to process them one after the other.
    I want the form to display only the default folder and once I press on upload it must process all files and display the status of processing on the same page.
    Please kindly share ideas how I can implement this app.
    Thanks
    Karen

  • Default system names for several RFCs in a WebDynpro project

    Hi , I have a doubt, currently I am adding several RFCs to a WebDynpro project , all of them with the same "Default system logical name" for model instances and RFC metadata..
    It is ok to give the same "default system logical name" for all my RFCs" or should I give a different name for each RFC I add to my project ?
    Which way do you recommend to configure all RFCs in my project?
    Thanks in advance....

    Hi ,
    check the below link reg Effective Web Dynpro - Adaptive RFC Models , hope it will help you
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/11c3b051-0401-0010-fe9a-9eabd9c216de
    Regards,
    Sunitha Hari

  • Starts With Parameter for Last Name for Created By serach criteria F4

    Hi,
    I have a requirement, where I need to add a seach parameter "Starts With" in backend for the last/first name of the Created by serach criteria F4 in lead search.
    But I am seeing for the CREATED_BY criteria the F4 automatically comes from standard and there is no view exist for the F4 in backend.This seems to come from the domain level! Can anyone help how to achieve this?
    Thanks.

    Hello Raj,
    In lead search, we have a criteria for Created_by. Now when user uses the F4 of the Created_by, there are option for first name and last name to search the user names.
    Now when user uses any name(1st or last), the result shows as 1 result found, but actually now result comes.
    hence now they are asking me to add a parameter as starts with for the 1st name and last name of the created_by F4 window search criteria.
    Hope this explanation will be clear for you. If possible please help.
    Actually the F4 of the Created_by comes from the standard, and there is no component/view available in CRM.
    Thanks.

  • Default Subpackage Names for Business Components (11g); Bug?

    Does anyone know how to enable the ability to specify the default packages under Tools -> Default Project Properties ->Business Components -> Packages?
    Mine are all greyed out.
    Also, even when I have the bare minimum of an ADF model project, before even checking "Initialize Project for Business Components", the defalt packages are greyed out.
    Further, once I do check "Initialize Project for Business Components", the section for Default Subpackage Names is complete gone.
    I want to be able to specifiy the subpackages, so that when I regenerate entities etc. from tables the components go to the right packages.
    Thanks for any help.

    This seems like a bug to me. If you select Initialize Project for Business Components, everything is enabled. And stays that way even after you open a different application.
    But , You can set these values under Tools - Preferences - Business Components - Packages. This works nicely. Once you set these, create a new application and things will be fine. If you have existing application, it may require some xml file (.jpr) manipulation. That seems to be a nicer approach. I don't know what is the purpose of Default Project Properties, when you can set everything by Tools - Preferences.

  • First and Last name for a User-Id??

    Hi..
    I want to know the first and the last name of a USER-ID in SAP. Which table I should refer to to get the names.
    Thanks

    Hi,
    I think it's a bit more complicated than that
    First you would need to loook up person number (PERSNUMBER) via USER-ID in ADRP and then look for full name in USR21 via this person number.
    So solution to your problem might look something like:
    SELECT SINGLE adrp~name_text INTO name_text
      FROM usr21 JOIN adrp ON usr21~persnumber = adrp~persnumber AND
                              adrp~date_from   = '00010101'      AND
                              adrp~nation      = ''
      WHERE usr21~bname = usnam.
    Where usnam ofcourse is USER-ID for which you want to find full name.
    Regards,
    Reinis

  • Default partition name for Interval partitioned tables

    Hi ,
    Can we change the default partition names which are generated by Oracle.
    For Example :
    CREATE TABLE part_interval (
    id NUMBER,
    created_date DATE
    PARTITION BY RANGE (created_date)
    INTERVAL (NUMTOYMINTERVAL(1,'MONTH'))
    PARTITION part_01 values LESS THAN (TO_DATE('01-NOV-2007','DD-MON-YYYY'))
    Now if I insert values which doesn't fall in the 01-NOV-2007 date, a new partition is created like SYS_P43. Can I change this default partition name in the SQL statement itself . Not through procedures or functions.
    Regards,
    Raghunathan A
    Edited by: 869187 on Jun 29, 2011 6:08 AM

    869187 wrote:
    Hi ,
    Can we change the default partition names which are generated by Oracle. post SQL & results that show you can change partition names generated by YOU.

  • How do I change the default bookmark name for my iWeb site?

    I'm not sure where the label is coming from that automatically appears as the bookmarked name for my iWeb site and I want to change it.

    I found my answer in the archived discussion "Bookmarking my site". It worked - thanks!

  • Labelling wires can be made easy ..!! Take the control Name as default - Label Name for wire

    Wire : Right Click --> Visbile --> Label  (Its void Now )
    Solution : It can take the control Name as default label of the wire,  instead of  being Void
    Not sure if this idea is already proposed. 
     

    sandyy wrote:
    Ya true, in the above case it should take the indicator Label
    It's just as easy to construct a case where there are multiple sinks to the wire and then you can't just say "take the indicator label". My point was that I don't want NI spending time on figuring that out and writing that code.
    As for your second example, now there's suddenly even more magic in there - The wire labels somehow gained the brackets and the wires which have an uninitialized shift register as a source somehow know that they should take the labels from other wires in the loop.
    If you think the logic for this is simple, you can try writing a Quick Drop shortcut which will do this - for all selected elements which are wires, go find their ultimate source and take its label and apply it to the wire. I think if you try that you'll appreciate why I don't want NI to spend time on this. You might also find that the tool you wrote works well enough for you and you can use it right now without having to wait for NI.

  • Default file name for BEx report

    Hi all, Wishing u a very diwali...
    I have one requirement from user that i should get the file name default as a technical name of the query. As of now when i open the file it is taking some random book1, book2 etc.
    Please suggest solution
    amit shetye

    ok

  • Setting the default Output Name for the Export Media dialog

    In File | Export | Media the Export Settings always show the wrong Output Name, from a project I did several days ago. If I change it for this export, the wrong path just comes back again for the next export.  I don't know how I accidently  got it set for the earlier project.  I don't see any way to set it. Could someone tell me where this is set?  I'm running PrPro CS4.
    Thanks

    dkeubnasoieng wrote:
    I'd read earlier the update wasn't a good one so had avoided it. The
    real frustration comes from not finding how I did it a couple months ago!
    I do not know where you read that but there is nothing wrong with the update.
    Here you will find the latest update.
    http://www.adobe.com/support/downloads/product.jsp?product=98&platform=Windows

Maybe you are looking for

  • How do I search for songs and artists within playlists?

    In the Itunes music app on the Ipod touch there are several views (Songs, Playlists, Genius, Artists, etc.) In song view if you swipe down it reveals the search bar. However when you go to Playlist view and choose a specific playlist there is no sear

  • Unable to see Applications under navigate tab in Planning browser

    Unable to see Applications under navigate tab in Hyperion(9.3.1) workspace I have installed all Hyperion 9.3.1 products as per installation document Please Can any one tell me the solution. i have one more question .already i installed Hyperion Share

  • Console

    Hi I am having weblogic 6.1 sp4. We are seeing strange behavious or admin console. We startup the admin server and see server status both as running. After 2 days we i see the server status it shows admin as running and managed server as blank. I try

  • Keyboard in telephone

    I updated the iphone to ios6 and I was wondering if it is possible to change the keypad on the phone to the way it was in the last update because I see evil and can not see the keyboard with this update. is there any way to change?

  • Nokia email - access point

    I have an N96 with S60 r3 fp2. It supports "destinations" (ie access point groups) as well as the concept of a "default" access point (group).  Only "new" apps use these capabilities. The internal imap client seems to be ok with default, but "nokia m