Additional Field in Vendor Master for PF Number and ESI Number

Hi Experts,
I have to maintain ESI Number and PF Number in Vendor Master, but no such field is available in vendor master or J1ID. Kindly suggest me the fields which I can use. We have to capture the ESI and PF Number of the vendor in case He is a subcontractor to us.
Regards
GR

Hi
You can looks for customer fields (ABAP developed fields). You have standard development available in SAP. See the below config path. It will help you and your abaper
spro>logistics General->bussiness partner->vendors->control--->adoption of customer's own master data fields.
With the help of help text available there you and your abaper can develop it with flow logic easily with minimum effort.
Hope it helps you
Regards
Antony

Similar Messages

  • Add additional field in Vendor master data for VAT Reg. No.?

    Add additional field in Vendor master data for VAT Reg. No.?
    Hi I need to add one additional field for other VAT Reg. number in vendor master data FK01, We currently have two field
    Current Settings:
    Country : LFAS-LAND1
    VAT registration no.: LFAS-STCEG
    I need to add one additional field for text information. Is this possible?
    Thanks you very much
    Luis G.

    If you want to add new fields that are not possible from config (check with your consultant) you need to implement BADIs
    In SPRO, go to:
    >Logistics-General
    ->Business Partner
    -->Vendors
    --->Control
    >Adoption of Cusomter's Own Master Data Fields
    and read the documentation provided there.
    You will need to implement following BAPIs
    Processing Master Data Enhancements: VENDOR_ADD_DATA
    Customer Subscreens: VENDOR_ADD_DATA_CS
    I am not aware of any other way to add new fields to Vendor master (however, check with your consultant for config related screen modifications)
    Should you need any further info to implement it, post back (read it thoroughly first, it's quite self-explanatory).
    regards,
    Aabhas

  • Additional Fields in Vendor Master

    Hi All,
    I am using ECC5 version my client wants Other Country, Other City, Other Region fields in Vendor Master.
    So can some one help me out how to add those fileds in Vendor masters. I saw in my Account group could not find it.
    So if some knows the solution for same kindly let me know.
    Thanks in Advance.
    Regards,
    Kiran.

    Hi,
    You can add ZZ-fields with the BADI 'VENDOR_ADD_DATA'  and 'VENDOR_ADD_DATA_CS'.
    But if you need store other address or alternative addresses, perhaps you can create a partner function for this role.
    I hope this helps you
    Regards,
    Eduardo

  • Creating additional screen field in Vendor Master at Company Code Level

    Hi All,
    I have to add some custom fields in Vendor master at Company Code Level.I have alraedy implemented a BAPI suggested by the system to add additional fields.
    A  new Button is coming after implementing the BAPI , which gives me a space to add new custom fields , which i have appended at LFA1.
    My problem is that , the new Button is visible at each screen, i.e Button is coming at Address tab, Control tab, all screen correspond to company code and all tab correspond to purchasing.
    While i want that Button should only be visible at screens correspond to company code.
    Please suggest how to acheive the same.
    Regards,
    Subhash

    Hello Karidhal Subhash -
       I'm facing a similar problem. I've got my BADI working properly with the exception of...
    I only want my custom button to appear if they've input a Company code on the selection screen. Did you find a way to solve this problem?
    regards.

  • Masking Certain Field in Vendor Master Data

    We have a Enhancement which involves conversion of Vendor Numbers.,It so happened that a category of Vendor Codes were the Social Security Numbers.
    Now that due to Privacy Laws etc they are converting that number logic which is throwing challanges.
    The first Step is to convert Vendors from XSSN to Y123 and the second is also retain the social number in a encrypted field as it is used for 1099 reporting.
    I am aware that there is a standard functionality for Credit Cards Numbers Masking but not sure if there is any thing for special fields on Vendor Master.
    If you are aware of any options to handle the switchover or masking certain fields pls share them with me.
    Thanks,
    Praveen

    Praveen,
    Did you try 'Define Screen Layout per Activity (Vendors)' and suppress/hide the fields?

  • Added new fields in vendor master in xk01 but data is not getting saved

    Hi experts,
    To add new fields in vendor master i have followed the following steps :
    1.) Appended a structure ZRTGS in LFA1 table with required fields and activated
    2.) Added new button in xk01( vendor master ) using spro -> logistics-general -> business partner -> vendors ->
    control ->adoption of customer's owaster data fields -> prepare modification free-enhancement of vendor master record
    Created a screen group ZR and defined label tab pages with function code ZRTGS and saved entries
    3.) Created a implementation for BADIs VENDOR_ADD_DATA and VENDOR_ADD_DATA_CS.
    4.) Created a program with my own subscreen for the required fields
    The button is getting displayed in XK01, XK02 and XK03 respectively. Whenever the button is clicked the subscreen with
    the fields is also displayed. But whenever i try to save the data in either XK01 or XK02 it is not getting saved in to the
    database table LFA1.
    Request your help in this regard.
    Thanks in Advance.

    Hi,
    You may need to check this include .
    EXIT_SAPMM06E_008  -->Import Data from Customer Subscreen for Purchasing Document
    Thanks,
    vamshi

  • Withholding tax fields in Vendor master is not avbl to config as sensitive

    Hi,
    I need to configure, fields in Withholding tax accounting as sensitive fields in Vendor Master.
    Table reference for Withholding tax is LFBW.
    But the fields from this table are not avbl for configuring in SPRO.
    It gives an error message as: This field is not allowed.
    Is there any other method to add the required fields from LFBW table to configure them as sensitive fields.
    Or adding the fields as sensitive is restricted for few fields only.
    Pls do the needful.
    Regards,
    Radha

    Hi Radha,
    I finally found development we did for a customer. Below you can find sampler code. You can use exit ZXF05U01.
        FIELD-SYMBOLS : <FIELD_VALUE> TYPE ANY.
        DATA : SENSITIVE_FIELD(30).
        FIELD-SYMBOLS : <FIELD_VALUE2> TYPE ANY.
        DATA : SENSITIVE_FIELD2(30).
        TABLES : T055F .
        IF LN_LFM1 NE I_LFM1.
          REFRESH KRITAB.
          SELECT * FROM T055F WHERE KOART = 'K' AND
                                    FELDN LIKE 'LFM1%'
            SPLIT T055F-FELDN AT '-' INTO KRITAB-TABNAME KRITAB-FNAME.
            APPEND KRITAB.
          ENDSELECT.
          LOOP AT KRITAB .
            CONCATENATE 'LN_LFM1' '-' KRITAB-FNAME
            INTO SENSITIVE_FIELD.
            CONCATENATE 'I_LFM1' '-' KRITAB-FNAME
            INTO SENSITIVE_FIELD2.
            ASSIGN (SENSITIVE_FIELD)  TO <FIELD_VALUE>.
            ASSIGN (SENSITIVE_FIELD2) TO <FIELD_VALUE2>.
            IF <FIELD_VALUE> NE <FIELD_VALUE2>.
              <FS_LFA1>-CONFS = '1'.
              IF SY-TCODE = 'XK01' AND <FS_XASEG> = ' '.
                DATA : LFM1CONFS(1) TYPE C .
                EXPORT LFM1CONFS LFM1CONFS2 FROM '1' TO MEMORY ID
          'LFM1CONFS'.
                UPDATE LFA1 SET CONFS = '1'
                                UPTIM = SY-UZEIT
                                UPDAT = SY-DATUM
                          WHERE LIFNR = <FS_LFA1>-LIFNR .

  • Head Office field in Vendor Master

    Hi,
       We have entered a Head Office Vendor in the Vendor master ( Branch).
    Now at the time of PO creation system has correctly fetched the Branc Vendor address.
    When we are trying to post the Vendor Invoice we are getting error "Different invoicing party 400065 planned in purchase order xxx
    Message no. M8286.
    As the Head office Vendor is fetched at the time of Invoice we are facing this error.
    How to resolve this? The Invoice is to be posted to the Head Office Vendor only.
    Rajesh

    Hi Venkat,
       Is maintaining the partner function ,mandatory for using the Head Office field in Vendor master?
    What I can observe is, during MIRO system is able to fetch the Head Office Vendor even if the PO is for the Branch Vendor.
    The error which I mentiond appears due to this only as there is a conflict between two Vendors.
    Rajesh

  • PAN No as madatory field in Vendor Master CIN Details

    Hi,
    I want to make PAN No as madatory field in Vendor Master CIN Details.
    Can anyone help.
    Regards,
    Anurag Khanna

    OK, I guess you are referreing to J1ID T code where we maintain the PAN # for vendor
    is it possible to create an ERROR message if PAN # is NOT updated?..This is just a thought or workaround

  • Addtional fields in Vendor Master

    Hi All,
    I am using ECC5 version my client wants Other Country, Other City, Other Region fields in Vendor Master.
    So can some one help me out how to add those fileds in Vendor masters. I saw in my Account group could not find it.
    So if some knows the solution for same kindly let me know.
    Thanks in Advance.
    Regards,
    Kiran.

    Hi,
    You can add ZZ-fields with the BADI 'VENDOR_ADD_DATA'  and 'VENDOR_ADD_DATA_CS'.
    But if you need store other address or alternative addresses, perhaps you can create a partner function for this role.
    I hope this helps you
    Regards,
    Eduardo

  • Custom field in Vendor Master - track field changes

    Hi Experts,
    I have a requirement to enhance vendor master (XK01) by adding custom fields. I did this, but now the customer needs to track changes made to this field. He expects to see the changes made to this custom field using menu path 'Environment -> Field Changes' from vendor master transactions (XK01, XK02, XK03). I have enabled the track changes in the data element, so that field changes can be tracked in CDPOS, but that is not enough. Please help to find solution. Thanks.
    Regards
    Arun

    Hi Brad,
    I added the new fields to vendor master using the SPRO option:
    'Prepare Modification-Free enhancement of Vendor Master Record' in the following path:
    Logistics-General -> Business Partner -> Vendors -> Control -> Adoption of customer's own master data fields. This created a button on vendor master, and my field is in a pop up box which is generated on click of this button.
    This field is stored in LFM2 table.
    I have enabled the change flag in the data element of the custom field, and it is showning the field changes in CDPOS table.
    But the problem I face is how I can avoid going to the CDPOS table and instead use the menu option :
    'Environment -> Field Changes'
    Regards
    Arun

  • What the setting required in vendor master for Intercompany or intracompany

    What the setting required in vendor master for Intercompany or intracompany orders
    Thanks,
    Kiran

    Hi,
    For the inter company STO scenario
    Create a vendor for the company code of receiving plant, using account group :0007 Assign this vendor to Delivering plant
    in the Purchasing view>Extras>Add. Purchasing data>Plant.
    Also create an internal customer for the supplying sales area and assign it to the vendor, it helps in determining the Shipping point.

  • Vendor Master:  Name, Street Address and PO Address

    Hello SAP Gurus-
    I am working on a Vendor Master cleanup hopefully to streamline our Vendor Master Data.  We have data in all fields of the vendor master for address and in effort to decide on what to do with the SAPScript for checks, we would like to know what we have in what fields. 
    Is there a table I can use that shows all the fields with values for all Vendors?  LFA1 is not showing street address or PO Box Address.  I found S_ALR_87012086 but that doesn't show all fields either.
    Thanks!

    Well, perhaps your installation is doing things a little differently, but I use ADRC for most stuff, except for email address...There are POBox specific fields, such as city, zip, etc., in ADRC.  Occasionally, I've used ADR2, 3 and 6; somewhat rarely, though, except for email retrievals.  But, no, there's not a single table, everything in one, for SAP business partners. 
    Perhaps there's a BAPI or Function Module that would be helpful to you, like BBP_VENDOR_GET_DATA2 or BAPI_VENDOR_GETDETAIL.
    Yes, Rob, we gotta keep it complicated, so we can remain employed....lol.

  • Spefications for Pdt Name,Serial Number and Pdt Number not working in HPSA

    HP technical support came and replaced a new motherboard on Feb 5, 2015. Also,  I have not being accessing HPSA for quite some time now and I am not aware how long has this take place.
     When I access HPSA, under System Information, only Product Name, Serial Number and Product Number are not mentioned.
    I recently updated to the latest version of HPSA today(Feb 7, 2015), but it still can't read them.
    What can be done so that HPSA can read them. 
    Please guide me accordingly.

    Hi @aswann, 
    I have brought your issue to the attention of an appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message after the weekend from an identified HP contact. Additionally, keep in mind not to publically post ( serial numbers and case details)
    If you are unfamiliar with how the Forum's private message capability works, you can learn about that here.
    Regards,
    George
    I work for HP

  • I have had  adobe creative suit 6 design standard for 2 years and all of the sudden it would not open. I do not have the windows disc anymore however i still have the product code, number and serial number. is there anyway to get my photoshop back?

    I have had  adobe creative suit 6 design standard for 2 years and all of the sudden it would not open. I do not have the windows disc anymore however i still have the product code, number and serial number. is there anyway to get my photoshop back?

    uninstall, clean and reinstall per Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    for the installation file(s):
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.5 (win), 5.5 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

Maybe you are looking for

  • Dual monitor settings on macbook pro 13"

    I am using a 13" MacBook Pro (non retina display) that only has 1 thunderbolt port to connect a 2nd display.  I was able to get 2 displays to work by using a mini display port to HDMI adaptor and USB to HDMI adaptor.  However, I can not get the monit

  • When i open the cover of my ipad Air i get the home screen Im sure i used to get the lock screen

    I have my iPad Air kept in a third party cover which operates the sleeep/wake function I have just become aware that when i now open the cover, i get a home screen and not the lock screen is this something that has changed with the intro of ios 8.1.3

  • Function Profile Type

    Dear friends, Can any one tell me what is the purpose of the function profile type and what is the different between ic webclient profile and framework profile? Best regards, Mohamed Moderation: Locked. Please, try to find an answer first. See rules

  • Imported photos appear only as dotted line in the thumbnail view.

    For the past year all of the photos that I have imported just show up as a "blank" with a dotted line around it.  I can only view photos one at a time (after I click on it).  What's up?

  • Where is the site publishing options located? I have iweb 09 3.04.

    I was publishing to a folder, now I want to publish with FTP directly to godaddy.  Watched the nifty little apple video which says to change that in the site publishing options but I don't see that in any menu.