Union Number in Master data

Hi all,
Can anybody tell me how I can found out where the Union Number is maintained in the EE master data? We are planning to use this field in the Benefits feature (BSTAT) for a custom need. I checked infotype 0057 but not sure which field exactly represents the Union Number. Reasons,
1. No field says 'Union Number'
2. The technical info in the feature structure says its 4 character field but all the fields in IT 0057 with a number allowed entry of more than 4 characters.
Any guidance on finding out the exact location of Union Number in the master data will be a great help because it solves our custom need so easily. Thanks in advance.

hai..
Try with contract types in IT 0001... Else u can use Personnel Ids i.e 185 IT..
manu

Similar Messages

  • Need to find out the number of Master data records transfered to the BW

    Hi,
    We need to find out the number of Master data (example -0MAT_PLANT_ATTR) records to be transfered to BW side. This is a delta extract.  We are preparing test scripts to check the master data extract ( full & delta) from ECC6 TO BI 7.0..
    Advance Thanks.

    Hi,
    Goto RSA3 and run that master data extractor in D mode if you want to know the number of records in delta and in F mode if you want to know the Full volume. But make sure that you set data records/calls and the display extr calls numbers so that you get the total number of records.
    The other option is goto the master data source table and look at the number of records in that table. That'll give you an idea of the total number of records in the table.
    One other option is to goto RSA7 , select the delta datasource and hit the display button. You'll get to know the number of entries in the delta queue that way as well.
    Cheers,
    Kedar

  • Previous Account Number customer master data

    FI Gurus,
    I want to be able to use field KNB1-ALTKN under company code data in master data. I want to use this field to store the old legacy customer number, but then I want ot be able to search when Ina doing customer search in FBL5N. Is there a way to do that?
    Thank You for your help.

    Hi Frank,
    Try this way.
    Go to SE36-> DDF->Extras-> selection views.
    origin of view -> SAP-> Change
    you can see Tables/Nodes on right hand side -> click page down.
    place cursor on KNB1 and click choose.
    In Table fields/Node fields
    click page down until you see ALTKN field.
    assign functional group 04 to the field and save.
    Note: Under origin of view ->SAP, this is provided by SAP. Make sure before you do change.
    Best Regards,
    Mohan.

  • Huge number of Master data errors

    Hi All,
    I have a situation. Actaully in our project data records with special characters for master data (0CUSTOMER here) are being edited every day and manually loaded. (note: no provision of RSKC). what happened a day back is unknowingly someone triggered a full load and data with error records from Day 1 is now there till the PSA along with the latest data. now untill and unless the data is corrected and reloaded new data won't get updated. So can anybody please suggest me the quickest way of getting out of this mess. I mean to remove the old data which is already there and get the latest data only from the PSA. Otherwise i need to manually correct around 7000 records!
    Please help. Do tell me if you need more clarifications.
    Thanks in advance!

    Hi
    If it's possible speak to business poeple if they want that invalid characters.If they say yes then allow into BW on RSKC.
    Just delete reuest  and goto PSA and update datatarget immediatly.
    Regards,
    Chama.

  • Abap code not working  - deleting based on master data table information

    Hi,
    I wrote a piece of code earlier which is working and during test we found out that it will be hard for the support guys to maintain because it was hard coded and there is possibility that users will include more code nums in the future
    sample code
    DELETE it_source WHERE /M/SOURCE EQ 'USA' AND
    /M/CODENUM NE '0999' AND
    /MCODENUM NE '0888' AND.
    Now I created a new InfoObject master data so that the support people can maintain the source and code number manually.
    master data table - the codenum is the key.
    XCODENUM    XSOURCE
    0999               IND01
    0888               IND01
    now I wrote this routine all the data gets deleted.
    tables /M/PGICTABLE.
    Data tab like /M/PGICTABLE occurs 0 with header line.
    Select * from /M/PGICTABLE into table tab where objvers = 'A'.
    if sy-subrc = 0.
    LOOP at tab.
    DELETE it_source WHERE /M/SOURCE EQ tab-XSOURCE AND /M/CODENUM NE tab-XCODENUM.
    ENDLOOP.
    Endif.
    But when I chage the sign to EQ, I get opposite values , Not what I require.
    DELETE it_source WHERE /M/SOURCE EQ tab-XSOURCE AND /M/CODENUM EQ tab-XCODENUM.
    Cube table that I want to extract from
    /M/SOURCE                             /M/CODENUM
    IND01                                       0999
    IND01                                       0888
    IND01                                       0555
    IND01                                       0444
    FRF01                                      0111
    I want to only the rows where the /M/CODENUM = 0999 and 0888 and i would also need FRF101
    and the rows in bold  should be deleted.
    thanks
    Edited by: Bhat Vaidya on Jun 17, 2010 12:38 PM

    It's obvious why it deletes all the records. Debug & get your answer i wont spoon feed
    Anyways on to achieve your requirement try this code:
    DATA:
          r_srce TYPE RANGE OF char5, "Range Table for Source
          s_srce LIKE LINE OF r_srce,
          r_code TYPE RANGE OF numc04,"Range table for Code
          s_code LIKE LINE OF r_code.
    s_srce-sign = s_code-sign = 'I'.
    s_srce-option = s_code-option = 'EQ'.
    * Populate the range tables using /M/PGICTABLE
    LOOP AT itab INTO wa.
      s_code-low = wa1-code.
      s_srce-low = wa1-srce.
      APPEND: s_code TO r_code,
              s_srce TO r_srce.
    ENDLOOP.
    DELETE ADJACENT DUPLICATES FROM:
    r_code COMPARING ALL FIELDS,
    r_srce COMPARING ALL FIELDS.
    * Delete from Cube
    DELETE it_source WHERE srce IN r_srce AND code IN r_code.

  • Master Data Update Report

    Hi All
    Can you please provide me a solution for the below scenario:
    At the time of master data update from BW to BPC client wants to see the updated master data reports in excel file.
    Exmp:
    Existing number of Master data (IDs) before BW update : 1000
    Today : I updated the master data into bpc from BW:10
    Now they want to generate a report for only updated recoreds that is "10" and along with this they want to see is there any changes (property values) happen with the existing master data as well and this activity should be included in the package link of master data update and a Email noticafication should be triggered to the concerned person.
    Please help me
    Regards
    Srikant

    Hi Srikant,
    I have attached the screenshots of above table.
    hope this will help,
    thanks,
    Rishi

  • How to find the number of entries in a master data table

    Hi Experts,
    I am trying to find the entries in 0CUSTOMER master data.
    BW>LISTCUBE>Data target: 0CUSTOMER and selected the fields that I need.
    I would like to know how to find the "number of entrees". I tried to run the SUM for a count field, but it is taking forever as there are huge number of records .

    Hi Dev,
    Go to the change/display mode of the info object (0CUSTOMER) in your case. Go to the Master data/Text tab. Here you will find the master data tables according to your settings (P orQ or X or Y). Double click on the table name and it will take you to the SE11 display. From there, you can check the number of records as you do in any transparent table.
    Hope this helps.
    Thanks and Regards
    Subray Hegde

  • Limit the number of Business Partner relations in BP Master data

    Hello Gurus,
    I have a requirement where I have to limit the number of business partner relations to 2 at BP Master Data.For example for a BP X, there cant be more than 2 contact persons. So in the relationship tab they should not be able to add more than 2 contact persons. I know we can do this partner processing in sales transactions, but not sure we can implement the same in BP Master Data.
    Thanks a Lot in advance for your replies,
    Krishna.

    Hi,
    You can achieve this by customizing. Go to Transaction BUBA. Double click on you relationship category. Now change the cardinality. In your case it will be 0:2 .
    This will solve your problem.
    Thanks and warm regards,
    Smita.

  • SIgnificance of Bank Number(BNKLZ) field in Master data

    Hi,
    I am working on Bank Master data setup in ECC6 and have a question regarding the significance of Bank Number(BNKLZ) field.
    In IMG settings -> General Settings->Set Countries->Set country specific checks, if Bank Key = 1 i,e Bank Number then in T-code FI01 for Bank Master, the Bank Number field is display only and is automatically copied from Bank Key value.
    However if Bank Key = 4 in config, the Bank Number field becomes open for input in FI01.
    My question is, what is the significance of Bank Number visa viz Bank Key, in Master data - Bank, Vendor (payment transactions) and Customer etc.
    If in the second option ie, Bank Key = 4, I leave the Bank Number blank while creating Bank Master data, will it affect any other processes related to Payment Process etc?
    SAP allows me to leave all of the control data Blank while creating the Bank Key. Will this not create problems for Vendor or Customer Payment processing etc?
    What is the significance of the Control Data section on FI01 while creating a Bank Key?

    Hi,
    bank key (BANKL) is an identification of the bank defined by the user, bank number (BNKLZ) is used to dientify the bank in payment order file, so this should be oficial code of the bank.
    Example: Each bank in Germany is identified by BLZ - that's the bank number. Deutsche Bank in Berlin has BLZ 10070000.
    So, I can use key 1 in country specific checks customizing and have bank key same as bank number, i.e. 10070000. This helps me to enter bank data into master records, because BLZ is always stated next to bank account number on the invoice.
    Or I can use key 4, create the bank with bank key DEUT_BERLIN and enter bank number 10070000. My payment order will be correct, but in vendor master date in the bank key column will be DEUT_BERLIN.
    My recommendation is to use key 1 and keep bank key same as bank number.
    Regards,
    Michal

  • Modify vendor number when replicating vendor master data from ECC to SRM

    Hi,
    Is there a way  to modify vendor number(manually input vendor number e.g. from a file) when replicating vendor master data from ECC to SRM using the vendor master data user exit (SAPMF02K)?
    Does anyone have documentation on the user exit, how do I use it??
    Thanks and Regards'
    David

    Hi David,
    Please go through the link below:
    [Enhancement SAPMF02K Vendor Master Data  - question about LIFNR;
    Regards
    Anirban

  • Table which stores SU01 Master Data (Telephone Number)

    Hi Experts,
    We goto SU01 tcode to get the master data of SAP ID. I was able to track the table which is updated for all except the TELEPHONE NUMBER which is present there.
    Could you please advice in which table the TELEPHONE NUMBER is stored ? I tries USR* and ADR* . Updating the telephone number in that table is not updating it in SU01 .
    Regards,
    Kausthub

    Hi Sri,
    Thanks a lot. Thats precise. Points given
    Regards
    Kausthub
    Edited by: Kausthub Krish on Jun 12, 2011 11:15 AM

  • Linking personnel number with vendor master data

    Hello,
    When i am created vendor master data,that time Personnel number field is showing "No values found"
    What does it mean?
    Thanks.

    Hi Pari,
    It appears that you are treating employee as vendor. You have not maintajned the personnel number of employees (in HR Module). The personnel number is the only feature within a client which is unique to an employee. You have to enter a personnel number before you can display and maintain an employee's master data and time data.
    Thank You.

  • Gaps in vendor master data number range

    Hi, we have noticed there are sometimes gaps (missing numbers) in the internally issued vendor master data number range. Does anybody have any idea why this happens and how to avoid this?
    Many Thanks for your answers!
    Lucie

    Hi Lucie,
    This happens due to buffering of the number range in question. You can go to SNRO transaction (object KREDITOR) and change the buffering options (deactivate them, actually). Please, consult your ABAP team before doing this. For more info, see note 62077.
    Regards,
    Eli

  • Vendors PAN Number field Mandatory in Vendor Master Data

    HI,
    I am working in 4.7 EE version. I want to make Vendors Pan Number field mandatory while creating Vendor Master Data. As per my knowledge we cannot use Validation for this purpose.
    Regards
    Sudhakar

    Hi Parag,
    In ECC 6.0 you get a tab CIN details in vendor master itself wherein you can maintain PAN no. sales tax no. etc of the Vendor.
    you dont need to use any field for PAN no... If this is followed then wht you are saying is correct. But the problem is that we want to make PAN no. in CIN details tab mandatory and that is not possible.
    Regards,
    SAPFICO

  • Mobile number is not uploading for BP master data creation using BAPI ?

    Hi,
    I am creating Business Partner Master data in ISU/CCS using the BAPI "BAPI_ISUPARTNER_CREATEFROMDATA". Uploading data from Excel.
    Successfully uploading and creating new Business Partners apart from Mobile number, nick name,middle name, and name of birth fields.
    There are 2 issues i am facing:
    1. There is no field name is called Mobile number (data element AD_MBNMBR1) in structures of that BAPI.
    2. Nick, middle and birth names fields are there, but they are under the Expand(+ symbol) in FPP2 (FPP1) Tcode. That's why these fields are not uploading.
    How to upload them?
    Please help me out.
    Thanks
    Sarayu Parvathaneni.

    Hello Roopesh,
    Ususally, to make the BAPI update the database, you have to run BAPI
    BAPI_TRANSACTION_COMMIT after BAPI_PRDSRVAPS_SAVEMULTI2 is executed.
    In se37-> You may insert
    BAPI_PRDSRVAPS_SAVEMULTI2
    BAPI_TRANSACTION_COMMIT
    in the Menu-->function module >test>test sequences.
    Also as Mani said, if the update is successful the return parameter will be '0'.
    Regards,
    Ademola

Maybe you are looking for

  • My maestro debit is not working in Itunes as it is asking for an issue number but my card does not have one.

    I try to purchase a free app on the app store and it asks for my password. I put my password in and it asks me to change my billing info. I put in all the correct info but it asks for a issue number but my card does not have one so i can't purchase a

  • Purchase Order mandatory for Spl Gl Transactions

    Hi Sapiens, I have a requirement to make the Purchase order field mandatory when we do the Spl Gl Transactions, such as Retention, Advance to Suppliers and but not to the Employee related Spl Gl Transaction. I have a Option to see: 1. I am trying to

  • Validation Of  selection screen in Module pool

    Hi Guru, I am giving Plant as input at selection screen. Below that I am creating one table control at selection screen. I have to do validation of the Plant at the selection screen. I am doing that IN PAI module. But when i give wrong plant at selec

  • Problem in create a new connection

    Hi, I want to create a new connection with Oracle SQL Developer Migration Workbench, to migrate data from SQL SERVER to ORACLE, but an error occured when i click on RETREIVE DATABASE : Status: Failure -I/O Error: SSO Failed: Native SSPI library not l

  • Content length tool in Inspector and disappearing links

    I've encountered a couple of problems, one that I've solved in a haphazard way that may be of some help to some people, and one I'm still scratching my head over. First, often my content length in the inspector for the site page simply doesn't work.