Field not being updated in Master Data table

Hi guys,
I'm pulling data from master data in BW... specifically 0ven_compc. I haven't added any new fields to this maser data table, and one field that I'm trying to pull is not being populated. In the master data table this field is blank, but in the PSA there are values. Somehow the values are not being loaded into the master data table. I've checked the transfer rules and communication structure and everything looks fine. Why is this happening?
Thanks,
Anthony

Hi Anthony,
The problem may be that there is an inconsistency with the target master data infoobject. Please make a dummy change to the target infoobject (i.e you can change the description), save this change and then click on the activate icon. Please then check if the field is filled with the next load.
If the problem still exists please let us know your BI version and support package level.
Best Regards,
Des.

Similar Messages

  • Field not visible in maintain master data option

    Hello experts,
    maturity_date field is mapped and active in transformations.
    but when i want to see data for it.
    field not available in "maintain master data" option or "display data" option.
    regards,
    kv

    you can search in se11 /bic/pmaturity_date.
    and also is attribute only is checked in general tab.
    bhaskar

  • Multiprovider not taking info from master data table?

    Hi all,
    i've a problem with a multiprovider and some navigational attributes of zmaterial.
    There are several infocubes in the multiprovider and they all have zmaterial, the problem is that the data from one of these cubes is taking the values of some navigational attribute from the cube itself, not from the master data table of zmaterial even if i changed the assignment from the multiprovider.
    Is there any option i must check/look to get this thing work?
    If you need any other info just let me know.
    Thank you.

    Hi,
    It seems the identificaiton are still  incorrect.
    Just try to put the identification for those characteristics from the navigational attribute option in the multiprovider and not from the infoobject present in the cube.
    So for ZMaterial_A it should be identified with ZMaterial_A in the multicube from the respective cubes.
    Thanks
    Ajeet

  • Master data tables not available after installing trail version sap abap

    Hi Experts,
    After installing trail version of sap for practicing SAP ABAP..i am not able to access master data tables like MARA EKKO etc.
    Please let me know how i can access these tables data .
    Is there any alternate to access these tables?
    Thanks and Regards,
    Siva

    Hi Siva,
    Master data table and any other application table are not present in trail systems. Notice that solely purpose of those trials is to learn/practice basis stuff and ABAP programming.
    If you need to practice ECC's modules like FI, SD, ... you need to have an access to IDES system. For this you need to be SAP partner or customer.
    cheers
    m./

  • Master Data table in a Lookup in Transformation

    Hi,
    I am writing a Lookup in Transformations.As per the logic i need to read the Master Data Table of a Infoobject to get the Attribute from the master data table.
    The Master data is not time dependent
    Which Master Data table should i use in my Logic
    /BI0/M *
    /BI0/P *
    Thanks

    If there is no time dependency, use /BI0/P *

  • 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.

  • Abap logic not fetching multiple rows from master data table

    Hi
    I just noticed that my logic is fetching only 1 row from master data table.
    ProdHier table
    PRODHIERACHY            Level
    1000                                  1
    1000011000                      2
    10000110003333              3
    10000110004444              3
    '10000110005555              3*
    logic only fetches one row of level 3, I would like to fetch all level 3 rows.
    DATA: ITAB type table of /BI0/PPROD_HIER,
          wa like line of ITAB.
    Select * from /BI0/PPROD_HIER INTO wa where /BIC/ZPRODHTAS = 3.
    IF wa-PROD_HIER(10) = SOURCE_FIELDS-PRODH2.
         RESULT = wa-PROD_HIER.
         ELSEIF wa-PROD_HIER(5) = SOURCE_FIELDS-PRODH1.
         RESULT = wa-PROD_HIER.
    ENDIF.
    ENDSELECT.
    thanks

    Hi,,
    I have implemented the logic in end routine and it still reads only the first row.
    I am loading only PRODH1 and PROD2 but now I want to get all values of PRODH3 from the master data table.
    The first 5 values are PRODH1 and first 10 values belongs to PRODH2.
    Whenever PRODH2 = 1000011000 in source I should get the following values
    10000110001110
    10000110001120
    10000110001130
    I have multiple rows of 1000011000 so my result should be
      1000011000               10000110001110
      1000011000               10000110001120
      1000011000               10000110001130
    DATA: ITAB type table of /BI0/PPROD_HIER,
    wa like line of ITAB.
    data rp type _ty_s_TG_1.
    Select  * from /BI0/PPROD_HIER INTO table itab where /BIC/ZPRODHTAS = 3.
    LOOP AT RESULT_PACKAGE INTO rp.
    read table itab into wa with key PROD_HIER(5) = rp-PRODH1.
    IF sy-subrc EQ 0.
         rp-PRODH3 = wa-PROD_HIER.
         ELSE.
    read table itab into wa with key PROD_HIER(10) = rp-PRODH2.
    IF sy-subrc EQ 0.
         rp-PRODH3 = wa-PROD_HIER.
    ENDIF.
    ENDIF.
    MODIFY RESULT_PACKAGE FROM rp.
    ENDLOOP.
    Edited by: Bhat Vaidya on Sep 10, 2010 11:27 AM
    Edited by: Bhat Vaidya on Sep 10, 2010 11:37 AM

  • Data load error during updation of master data

    Dear all,
    While updating the master data from the PSA , the following error is appearing and the load fails.
    "The time interval ['20050313'/'20050313'] & (from/to) for the data
    records 1 & and 2 & overlaps in characteristic 0EQUIPMENT &."
    What could be the reason for this error and how to correct the same.
    I am able to understand that the valid from and the valid to date are same. in R/3 whenever a change record is created for the equipment the valid from and the valid to date will be the same as shown below.
    Creation of record (for example today) valid from         :- 02.06.2008 and valid to 31.12.9999.
    Change of record (for example tommorrow) Valid from :- 03.06.2008 and valid to 31.12.9999
    In the above case the valid to date of the creation data will automatically change from 31.12.9999 to 03.06.2008. 
    How could this be solved.
    Regards,
    M.M

    Hi Magesh,
    Please look at /BIC/*Equipment table in SE16.
    Find the record with a key = ********* and notice what values have Date_from and Date_to fields. The interval they determine, overlap with ur date_to and date_from.
    You need to supply correct date_to & date_from values.
    thanks
    Assign points if this helps
    Note:  this is a common scenario in time dependendent master data.....it happens because you have two records for the same values of master data and also they have overlapping time interval.....you cannot have two values of master data at the same time.

  • Mdifying "Code" column in UD Master Data table

    Hi all..
        is it possible to modify the length of the field "Code"(Default column crerated when a UDT-Master Data is created) in Master Data table.
    if it is possible,Please give me sample..
    Sandeep

    Hi Sandeep,
    you can use for example the following code:
    oUserFieldsMD.GetByKey(sTableName, 2)
    oUserFieldsMD.EditSize = 10
    nerr = oUserFieldsMD.Update()
    The EditSize sets or returns the field maximum value entered by the user. This applies only when the Type property is set to db_Alpha or db_Numeric.
    There is one exception that alphanumeric values can not be decreased.
    Regards Chris

  • Master data table locked

    Hi All,
    I am doing Master Data loads, Longtime back we scheduled Infopackage Group “IPAKGRP” is having 3 Infopacks(ATTR,TEXT,IDATTR) are running as full loads in BW-DEV.
    Today , for testing purpose I created to new Infopackage for ATTR only , and  scheduled immedialtly,data comes in RSA3,PSA but not into Infoobjects i.e master tables:
    it shows :
    Master data table locked to processing
    Diagnosis
    The master data table is currently being processed. It is therefore locked and no other update processing can be carried out.
    System Response
    Update has been terminated.
    Procedure
    You can delete the lock if it is a leftover setting from a canceled load process.
    Check the master data lock.
    Procedure for System Administration
    I checked in SM12, I am the only user using this Infoobject.  When I open Infopak it shown in SM12 myname and this Master Infoobject. When comeout from Infopak under that Infoobjects infosorce it shows no entries in SM12.
    1)What is reason for getting locks?
    2)How to solve this to get data into INFO OBJECT?
    3)What mistakes I had done? Shall i run Infopak group? Please tell steps how to run that.
    Please Give Helpful Tips.
    Cheers,
    Murali.

    Hi dear,
    the temporary lock you see when you are in the infopackage doesn't cause any problem...it's normal and avoid that any other user access into the same IP...
    No matter with your issue during dataloading...
    Try to re-run the extraction and look if your problem is still there...then check in SM21 to verify WHERE is your problem...
    Hope it helps!
    Bye,
    ROberto

  • Which master data table to be used to get attribute value

    Hi all,
    I am writing  routine in update rule to get data for one master data attribute of master data 0customer.
    But I am cofused in choosing master data table to get data.
    There are two master data table in master data tab of  0customer characteristics.
    1. View of MstrDtaTbls  :-  /BI0/MCUSTOMER
    2. Master data tab          :-  /BI0/PCUSTOMER
    Suggest me which one to take .
    Although I have tried with 2 one and it is working fine.

    Hi,
    If the attribute is not time-dependent please use  /BI0/PCUSTOMER, else use /BIC/QRCOSTCTR.
    Just remember P table and Q table.
    Regards,
    Frank

  • How are attribute and text master data tables linked in SAP R/3?

    Hello,
    how are attribute and text master data tables linked in SAP R/3?
    Most tables with attribute master data like T001 for company codes,
    have a text master data table T001T (add "T" to table name).
    When looking at the content of table T001 via transaction se11,
    the text are automatically joined.
    But for some tables there is no "T"-table (e.g. table TVBUR for sales offices
    has no text table TVBURT), but in se11 you get texts. There is an address
    link in TVBUR, but the Name1, etc. are empty.
    a) Where are the text stored?
    b) How does the system know of the link?
    Hope someone can help!
    Best regards
    Thomas

    Hi Thomas
    The master and text table are not linked by name, of course, if you see the text table, it has the same key fields of master table, only it has the field key spras and the field for description.
    The link beetween the tables is done by foreign key: if you check the text table TVKBT u need to see how the foreign key for field VKBUR is done:
    -> Foreing key with table TVBUR
    -> Foreing key field type -> KEY FIELD FOR A TEXT TABLE
    ->Cardinality-> 1-:CN
    It's very important the attribute sets for Foreing key field type, if it's KEY FIELD FOR A TEXT TABLE, it'll mean the table is a text table: i.e. that mean the master table is a check table for the text table, where the foreign key type is for text table.
    U can find out the text table of master table by SE11: GoTo->Text Table
    U can fined some information in table DD08L.
    Max

  • Can't Delete Private Cloud - tbl_WLC_PhysicalObject not being updated

    I am having issues with our SCVMM instance where I can't delete Private Clouds...even if there empty. 
    When I right click the Private Cloud and click Delete, the "Jobs" panel says it finished successfully, however, the Private Cloud is not deleted. 
    After doing some researching, I believe its because entries in the tbl_WLC_PhysicalObject database table are not being updated correctly, when a VM is moved from one Private Cloud to another. After determining the "CloudID" of the Private
    Cloud I am trying to delete, I still see resources assigned to this Private Cloud in the tbl_WLC_PhysicalObject table, even though from VMM Console, the Private Cloud shows up empty. 
    For some testing purposes, I assigned a VM back to the Private Cloud I am trying to delete, only to move it out again and gather some tracing/logging. When I moved the VM back out of the Private Cloud, I had a SQL Profiler running in the background, capturing
    the SQL statements on the DB server. Looking at the "exec dbo.prc_WLC_UpdatePhysicalOBject" statement, I see the @CloudID variable is assigned the "CloudID" of the Private Cloud the VM is currently assigned to/the Private Cloud I am trying
    to delete and is NOT the CloudID of the Private Cloud the VM is being moved to/assigned to. 
    Instead of having the VMM Console GUI do the Private Cloud assignment/change...I copied the PowerShell commands out...so I can run them manually. Looks like the script gets 4 variables ($VM, $OperatingSystem, $CPUType, and $Cloud), and then runs the "Set-SCVirtualMachine"
    CMDLET. For the $Cloud variable, it does return the proper "CloudID" of the Private Cloud I am trying to move the VM too (I ran it separately and then ran an ECHO $Cloud to look at its value). When I run the "Set-SCVirtualMachine" CMDLET,
    the output has values for "CloudID" and "Cloud" and these are still the values of the source Private Cloud/Private Cloud I am moving the VM out of and ultimately want to delete. 
    Has anyone ran into this? Is something not processing right in the "Set-SCVirtualMachine" CMDLET?

    I been slowing looking into this and this is where I am at:
    I built a development SCVMM 2012 R2  instance that mocks our production environment (minus all the VM's...just the networking configuration and all the private clouds have been mocked). From there, I started at SCVMM 2012 R2 GA and one by one installed
    the 4 rollup patches in ordered and at each new patch level,  I monitored the queries coming in through SQL Profiler, as I moved a VM between private clouds and created new VM's within clouds. As I created new VM's and moved the VM's between clouds. the
    stored procedure "prc_WLC_UpdatePhysicalOBject" all have a value of NULL for the CloudID column....so a CloudID isnt even associated to the physical objects (basically the VHDX files and any mounted ISO's I have on the VM's). 
    I did find out this SCVMM instance was upgraded from SCVMM 2008 (I took over after the 2012 R2 upgrade was completed). 
    I am thinking at this point...nothing is wrong with SCVMM 2012 R2 if you build and recreate it from scratch and a new DB. I am thinking this might be a depreciated field from SCVMM 2008. The only other thing we did, was put in a SAN and moved VM's from stand-alone
    hosts to the new CSV's (A mixture of 2008 R2 and 2012 NON R2 hosts). 
    At this point...since we dont have Self-Service enabled yet....it will be a days work to rebuild a new instance of SCVMM 2012 R2 and migrate the hosts/VM's to it and start from a clean slate. 
    I know the DB structure isnt really published...but does anybody have any other insights into this? 

  • How to check the records in Master Data Table?

    Hi,
       I am trying to load the Master Data Table using the Flat File.Now how to check the records in Master Data Table?
    I done the following way:
    Info Provider->Info Object->Right Click->Display Data or Maintain Master Data
    But it's not showing the records.It's asking like CID from......To......
                                                                        CID(SID)from.............To.......
                                                                         here CID means customer id(characteristic).
    and showing some settings.
    Please guide me.
    Thanks & Regards

    Hi Sri,
    Go to T- code RSD1 and type your info object name and open the P- table in the infoobject then select execute symbol to see the updated  data in to master data info object.
    regards
    sap

  • ODS not picking one particular master data record

    Hi All,
    Problem is when we run a query on ODS,it is not displaying the one particular data records.Then we check the ods that particular record values are not available,but it is in master data tables.
    My question is what will be the reason for this.we are using Generic extraction.
    thanks

    Hi,
    Check for primary keys of master data tables and key fields of ODS . I think there should be mismatch which is why some records are getting overwritten.
    Also in the ods request check number of records transfered and number of records added.
    ODS key fields should be exactly same as Primary key of master data table otherwise there are chances of loosing data.
    Hope that helps.
    Regards
    Mr Kapadia
    Assigning points is the way to say thanks in SDN.

Maybe you are looking for