Field For SSn number

Hi All,
Can anybody please tell me the field for SSN number.And in whcih table it will stored.
I have srached in PA002 but it is not avaliable.
Can anybody help me.
Thanks,

Hi,
This field is applicable to US. You would find this in IT0002-Pesonal Data. If the country grouping is 10, you would automatically get this field in IT0002.
Regards,
Suhasini

Similar Messages

  • Verification field for Batch number - Transaction LM05

    Hi Experts,
    Can some one help on the issue of adding a verification field for BATCH NUMBER on the screen 2502 and make it work.
    Requirement : Add Verification field for batch number and build the logic to verify the batch number -  as the SAP standard does for other fields.
    I have proceeded to some extent and seems like I am not winning.
    Steps done :
    1. Copied physical screen 2502 (SAPLLMOB)  to screen 9502(SAPLXLRF)
    2. Changed the screen to subscreen and removed the OK_CODE from the element list.
    3. Created the project ZMWMRF502 and assigned user exit MWMRF502 to this project.
    4. In the components of the project assigned 9502(SAPLXLRF) to 1502((SAPLLMOB).
    5. Assigned the screen 9502 to logical screen 0502 in the config.
    6. In the transaction LRFMD given the username and variant '1'.
    Now When I execute the transaction LM05 and give the TO number, the system calls my screen 9502 with new field seen in that.
    But the screen is completely greyed out with no data in that.
    I checked PBO and PAI of my new copied screen.
    In all the modules which I received from the copy of SAP standard screen there is no code except name.
    I mean to say that names of all modules exist but when I double click on any module it ask me to create a new object.
    If I have to create module similar to SAP there is a lot of coding in side. How do I proceed further.
    Can some help me.
    Thanks and regards
    Joshi

    Hi Dez,
    If you go in to transaction LM05 and input a number of TRANSFER ORDER, it will take you to a screen where the system will populate the fields pertaining to that particular transfer order.  In that screen we have normal fields as well as verification fields for that particular field. These screens are used on scanners. When the scanner scans the material slip, the corresponding value such as material number, storage bin number etc will be get populated in the verification field.  When the user selects next then the system will perform a check for the two values and pops up an error message if required.
    So there are verification fields for material number, storage type, quantity etc but not for batch.  Our user requirement is to put a verification field just by the side of batch number field and perform same operation as it does for other fields.
    Hope you understood.
    Thanks and regards
    Joshi

  • Hide field for " Change Number". RMMG1-AENNR  " in MMR

    Hi,
    In MM01 and MM02, i want to hide field for " Change Number".
    I tried in OMSR and OMS9, but i could not find field "RMMG1-AENNR".
    Hw to make it hidden.
    Uts
    Edited by: Utsav.agra on Jun 1, 2009 9:17 AM

    Check is your problem can be solved by Screen or transaction configuration?
    T Code is SHD0

  • Field for invoice number

    hi all
       can any body say wht is the relevent R/3 field  and corresponding infoobject for "INVOICE NUMBER"  
      thank you
    regards
    Pradeep

    Hi,
    Invoice number = VBELN  = Billing Document in VBRP table.
    so you can use either of these two infoobjetcs.
    VBELN  =  0DELIV_NUMB
    VBELN  = 0BILL_NUM
    Thanks
    Reddy

  • Add field for tracking number while Auto PR generation via MDBT

    Hi,
    While running MRP through MDBT via Variant , my PR's are generating automatically....
    Now i want one field as tracking number ( Value-100) to be added in PR when ever my PR's are generating automatically via MRP run...
    Is it possible..
    Utsav

    Hi,
    My question is :
    While running MRP through MDBT via Variant , my PR's are generating automatically....
    Now i want one field as tracking number ( Value-100) to be added in PR when ever my PR's are generating automatically via MRP run...
    When ever my PR gets generated via MRP run thrugh variant in MDBT, i want 100 value to be filled in tracking number field...
    Is it possible.
    Utsav
    Edited by: Utsav.agra on Sep 15, 2009 5:49 AM

  • Updating a field for a number of forms from an external table

    Good Day All;
    This one I could not find in the help section.
    I have designed a number of forms that all use the same “rates of pay” (there are 4 categories) for calculating. I was told to expect that a few more forms will be required and these new forms will also be using the same “rates of pay”
    Currently I am using “switch” to insert the “rates of pay” when the user selects a category from a dropdown.
    Is there a way I can update all the forms from an external “table” instead of having to update each form individually?
    Thanks All
    Chomp

    Hi,
    If the form is Reader enabled with Acrobat, then that is going to cut out data connectons.
    You should have a look at John Brinkman's blog: http://blogs.adobe.com/formfeed/2010/07/shared_data_in_packages_part_2.html. Two parts.
    Also there is an example of inter-form communication here, but it may be too clunky: http://assure.ly/qQivbm.
    Good luck,
    Niall

  • Additional fields for line item display for Vendor Accounts

    Hi,
    The additional fields for line item display have been defined for the vendor accounts. I am able to see the additional fields in SAP 4.7 system but not in ECC 6.0.
    Could you help me to know how the same will be displayed in ECC 6.0 system.
    Thanks

    In SPRO, Vendor Accounts -> Line Items -> Display Line Items -> Define Additional fields for Line item display, the fields for Check number from (PAYR-CHECF) and Tax Jurisdiction (BSEG-TXJCD) have been defined.
    When I am executing Vendor Line Item display (FBL1N), I am not able to select these fields for defining a layout. Could you please let me know, how I will get these fields in FBL1N.
    Thanks

  • Mandatory field for TIN No, or  Contact Person

    HI Expert,
                     Can anyone please tell me code for Mandatory field for TIN number or Contact person  at the time of adding Purchase Order.its possible by SP i tried for it but its variable so pls anyone have any idea.
    Sudhir

    Hi Sudhir,
    Try This.
    FOR Contact Person-----
    IF EXISTS (SELECT DocEntry FROM [dbo].[OPOR]
    WHERE
    ((CntctCode IS NULL OR CntctCode = '')
    AND DocEntry = @list_of_cols_val_tab_del))
    BEGIN
    SELECT @error =1, @error_message = 'Your Error Msg1'
    END
    END
    For TIN No.-------
    IF (@object_type = '22' AND @transaction_type= 'A')
    BEGIN
    IF EXISTS (SELECT DocEntry FROM [dbo].[POR12]
    WHERE
    ((TaxID11 IS NULL OR TaxID11 = '')
    AND DocEntry = @list_of_cols_val_tab_del))
    BEGIN
    SELECT @error =1, @error_message = 'Your Error Msg 2'
    END
    END
    Regards
    Ashutosh T

  • Table control for equipment number in me51n

    There is a field for equipment number in me51n for entering a single value , i have to modify that screen by giving a table control so that multiple values can be entered . How do i do that ?

    any suggestions on this please

  • How to mask SSN number in Identification Number field in BP?

    Hello Gurus,
    We have a requirement to mask the initial 5 digits of SSN number when displayed in the Identification Number field in the Identification tab of BP transaction. What is the best way to go ahead with this enhancement?
    We do not want to encrypt the data at the database level. Just encrypt at while displaying SSN Number on BP transaction.
    If anyone has carried out such enhancement, would appreciate if you can share how you did it?
    Thanks to all in advance,
    Shyamak

    Shyamak,
    This is for CRM -
    Go the PBO of the screen that has identification details. In a suitable PBO module, you can implement and implicit enhancement point and change the data in internal table.
    In my system it is function group BUD0. It would be same in yours as well. Screen is 1520 for me, it may be something else for you. I would have done in module - 'pbo_1520'. Do it at the end of this module. Internal table name GT_BUT0ID
    You need to so something similar in ECC
    Cheers
    Niraj

  • Table for Cheque Number field

    Hi Friends,
                   Iam using PAYR table to fetch the cheque number of a particular vendor, companycode, account number and postdate..
    But for some vendors, eventhough the cheque numbers are assigned, PAYR table did n't able to fetch the records.
    Are there any other FI Tables exist for Cheque number fields? If so, please let me know.
    Thanks & Regards
    Murali Krishna . T

    Hi Murali,
    Field is PAYR-CHECT
    PAYR and BSEG are linked via
    BSEG-BUKRS EQ PAYR-ZBUKR
    BSEG-BELNR EQ PAYR-VBLNR
    BSEG-GJAHR EQ PAYR-GJAHR
    BSEG-HKONT EQ PAYR-UBHKT.
    Check the OSS Note - Note 30380 - RFFOUS_C - Check number not stored in document

  • I'm not able it to type into the field for the serial number.

    I have a Mac Book. I purchased a download card from Fry's. After pressing "accept" for the terms on my computer I'm not able it to type into the field for the serial number. What's wrong?

    Are you sure it's a serial number and not a redemption code? A PSE serial number is 24 digits beginning with 1057. If you have a redemption code, here's what you need to do:
    http://helpx.adobe.com/x-productkb/policy-pricing/serial-number-retrieval-process-faq.html

  • Regarding SSN Number in Personal data

    Hi All,
    In ESS, if we change the SSN number of an employee in the Personal Data, it is not getting reflected in the SAP R/3 data and the SSN Number is reset to Space.
    Did anyone experienced the same problem, if yes can you please suggest the solution for the same.
    Thanks in advance,
    Shashi,

    Bharat can you please be more detail. Am also facing the same problem. Its odd. Problem with just the SSN number of the Peronal ldata screen. When we update the SSN value from front end, its gone, its not getting reflectedand even the old numbe rs gone. Suprised how it is possible since SSN is a mondatory field and how could it save through BAPI or RFC without a mandatory field. I guess it shold be a problem with the underlying RFC func that is used to update data into the infotypes. Any suggestions???
    Sam

  • Hide SSN Number in 0employee_attr

    Hi,
           I want to hide SSN Number in the extractor "0employee_attr". have tried RSO2 to eddit the data source, but I get the message which says " 0EMPLOYEE_ATTR is extracted using functional module HR_BIW_GET_MASTER_DATA" and it does not allow me to edit the data source. Any idea how I can address this issue...

    Go to RSA6 transaction and edit the datasoruce over there...
    You can hide the field there and save.
    RSO2 transaction is used only for generic datasources it cant be used for standard ones.
    Edited by: mansi dandavate on Aug 14, 2009 6:58 AM

  • Posting Error: Field Pers.No. is a required field for G/L account

    When I am trying to run the simulation posting run (PC00_M99_CIPE) then is getting an error that u201CField Pers.No. is a required field for G/L account 2275 504566872u201D
    Field Pers.No. is a required field for G/L account  2275  504566872
    Message no. F5808
    Diagnosis
    The value for field "Pers.No." in the interface to Financial Accounting is an initial value but you are required to make an entry in the field selection for G/L account "504566872" in company code "2275" linked to the field selection for posting key "50".
    Procedure
    It might be an error in the configuration of the G/L account field selection. The initial application, used to call up the interface must otherwise define a value for field "Pers.No.". If this is the case, contact the consultant responsible for the application used to call up the interface or get in contact with SAP directly.
    Please help.

    First of all did you required to post with personnel number or not....if it is not required then goto FS00 enter your GL account 504566872....find Field Staus Group under tab Create/Bank/Interest........then goto t code OBVV and select your field status group then click on field status and select Additional account assignments and check personnel number status and change as per your requirement optional or required.
    If personnel number required then create symbolic a/c with account type Q and assign gl account to this symbolic a/c.
    Mohan

Maybe you are looking for

  • New Fios Customer and Extremely Disappointed

    Hello, I just signed on to Verizon Fios because I've heard great things, however I've been extremely disappointed in what I've experienced so far.   My set up for installation was Sat 1/4 between 9am-12pm.  The installer showed up late, at 12:10pm.  

  • Cancelation of partial line items in the MBST is not opening the delivery

    Hi Gurus, We are posting the GR with 503 mvt type with ref to delivery. In this process when some of the line items have to be returned, we are posting MBST against those line items. To cancel / reverse the same in delivery using VL09, system (does n

  • [solved] wxpython upgrade and not owned filesystem

    Hi, I had a strange problem today. I did a big update today (1 giga). I had a conflict with wxpython. I removed wxpython and installed it again. When installing wxpython, I get a lot of wxpython: /usr/lib/python2.7/site-packages/wx.pth exists in file

  • Do I need to re-install 10.4 applications after installing 10.4 Server?

    I have 2 new hard drives I want to put in my G4 MDD. I no longer have my original 10.4 installation disc. I have a Mac OS 10.4 Server installation discs. If I install the SERVER on the fresh blank drive will this also install the entire 10.4 applicat

  • Too many objects matching primary key

    Hi., I am using jdev 11.1.5 I ha created a read only VO and FinyrEO,FinyrVO I had created a button which will update the status as "p" I had used this code in AMImpl Method     public void post (List selectedindexs){         ViewObjectImpl GlJrnlHd =