Master data updation not reflected in Bex report

Hi,
There is a field "Approver" in a report. It will only show the name of the Approver. And recently the same approver name has been changed in MDM system and now the problem is newly changed name is not reflecting the reporting. It shows the only old name in reporting.
My doubt is, what about already loaded record in BW system. Whether changes will be made for the older data. I mean it is possible to overwrite the approver name stored earlier in BW.
D Raj

Hi
Yes, master is always overwritten.
load the new value to the  approver Info object.
in RSA1 -> right click --> activate master data.
Initially when data loaded, records will be Modified version. when you perform activate master data then M versions records will turn to A version.
records with A version are only visible in Report.
If your report is on Aggregates, then you have to perform ACR (attribute change run) to update the same new value in aggregate.
you can use the program RSDDS_AGGREGATES_MAINTAIN.
Regards,
Venkatesh

Similar Messages

  • 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

  • Down Payment entries not reflecting in J1INMIS report

    Dear Guru's,
    TDS deducted at  the time of down payment made to vendor is not reflecting in J1inmis report.
    Is J1INMIS report does not reflect down payment entries?
    What will be the reason for this?
    Which alternative report to followed for J1INMIS !!!
    Waiting for your positive reply.
    Regards,
    Sany.

    Hi Sany,
    To update Business Place & Section Code, execute the program given below. After execution of the program run T.Code J1INPP and your issue should get resolved. Let me know if this works.
    Ask the Abaper to write the following Code & execute the program:
    REPORT  ZFI_BUP_SEC_CHANGE.
    TABLES : BSIK,BSAK,BSEG.
    parameters: PA_BELNR TYPE BSEG-BELNR OBLIGATORY,
                PA_BUKRS TYPE BSEG-BUKRS OBLIGATORY,
                PA_GAAHR TYPE BSEG-GJAHR OBLIGATORY.
    PARAMETERS : PA_BUPLA TYPE BSEG-BUPLA NO-DISPLAY,
                 PA_SECCO TYPE BSEG-SECCO NO-DISPLAY.
    PA_BUPLA = 'MUM'.                               (Note : Use the Business place & section Code Used
    PA_SECCO = 'MUM'.                                         in your company code).
    START-OF-SELECTION.
    PERFORM CHANGE_DATA.
    END-OF-SELECTION.
    *&      Form  CHANGE_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM CHANGE_DATA .
    DATA : LT_BSEG TYPE TABLE OF BSEG WITH HEADER LINE,
           LT_BSIK TYPE TABLE OF BSIK WITH HEADER LINE,
           LT_BSAK TYPE TABLE OF BSAK WITH HEADER LINE.
    BSeg updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSEG
    FROM BSEG
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSEG.
      IF LT_BSEG-BSCHL    = '25' OR LT_BSEG-BSCHL = '26'
         OR LT_BSEG-BSCHL = '27' OR LT_BSEG-BSCHL = '28'
         OR LT_BSEG-BSCHL = '35' OR LT_BSEG-BSCHL = '36'
         OR LT_BSEG-BSCHL = '37' OR LT_BSEG-BSCHL = '38'
         OR LT_BSEG-BSCHL = '39'.
        LT_BSEG-BUPLA = PA_BUPLA.
        LT_BSEG-SECCO = PA_SECCO.
        MODIFY BSEG FROM LT_BSEG.
        Write : / LT_BSEG-BELNR, 'Update For BSEG', LT_BSEG-BSCHL,
                  LT_BSEG-BUPLA,LT_BSEG-SECCO.
      ENDIF.
    ENDLOOP.
    Bsik updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSIK
    FROM BSIK
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSIK.
      IF LT_BSIK-BSCHL    = '25' OR LT_BSIK-BSCHL = '26'
         OR LT_BSIK-BSCHL = '27' OR LT_BSIK-BSCHL = '28'
         OR LT_BSIK-BSCHL = '35' OR LT_BSIK-BSCHL = '36'
         OR LT_BSIK-BSCHL = '37' OR LT_BSIK-BSCHL = '38'
         OR LT_BSIK-BSCHL = '39'.
        LT_BSIK-BUPLA = PA_BUPLA.
        LT_BSIK-SECCO = PA_SECCO.
        MODIFY BSIK FROM LT_BSIK.
        Write : / LT_BSIK-BELNR, 'Update For BSIK', LT_BSIK-BSCHL,
                  LT_BSIK-BUPLA,LT_BSIK-SECCO.
      ENDIF.
    ENDLOOP.
    BsAk updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSAK
    FROM BSAK
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSAK.
      IF LT_BSAK-BSCHL    = '25' OR LT_BSAK-BSCHL = '26'
         OR LT_BSAK-BSCHL = '27' OR LT_BSAK-BSCHL = '28'
         OR LT_BSAK-BSCHL = '35' OR LT_BSAK-BSCHL = '36'
         OR LT_BSAK-BSCHL = '37' OR LT_BSAK-BSCHL = '38'
         OR LT_BSAK-BSCHL = '39'.
        LT_BSAK-BUPLA = PA_BUPLA.
        LT_BSAK-SECCO = PA_SECCO.
        MODIFY BSAK FROM LT_BSAK.
        Write : / LT_BSAK-BELNR, 'Update For BSAK', LT_BSAK-BSCHL,
                  LT_BSAK-BUPLA,LT_BSAK-SECCO.
      ENDIF.
    ENDLOOP.
    ENDFORM.                    " CHANGE_DATA
    Thank You.

  • How to include the UDF of items master data into PLD (Inventory in Warehouse Report (Detailed))

    Hi,
    Is there a way to include the UDF in the items master data into the <<Inventory In Warehouse Report (Detailed)>> PLD?
    I checked the default layout and found out all the column source type is "free text" and the content is #Item, how do I know the value of the UDF?
    Thanks

    Hi,
    Some of the standard reports are hardcoded in sap. Not possible to add UDF field in PLD.
    Also refer this thread Variables -  Sap business one
    Thanks & Regards,
    Nagarajan

  • Loaded data is not yet visible in Reporting (see long text) Message no. RSM

    Hi All,
    I have one issue in BI part of Solman. For one of the scenario of Solution Manager uses its own BI component (BI_CONT 7.03 SP08 SAP_BW 700 SP15).
    There is one background job which has to update the data in one of the infocube 0SMD_PE2D. This job is getting failed for the past 2 months.
    When i check the logs of that background job, it shows the long text as below.
    Loaded data is not yet visible in Reporting (see long text)
    Message no. RSM1130
    Diagnosis
    There is an inconsistency between the load status of the data and the option of reporting on this data.
    There is data in the InfoProvider that is OK from a quality point of view, but is not yet displayed in reporting.
    The problem, for example, is to do with request 0000000494, number APO_R4CEHVODV7XS7MRL741GSMV9UB.
    Procedure
    Choose Refresh to remove the inconsistency.
    I went to RSA1 and selected that cube and choose "Execution changes - Manage". On the right hand side under request tab page it shows all the requests with request status as Green.  In Monitor there is No Data Available
    I found a similar thread [Loaded data is not yet visible in Reporting for Data Mart destination cub; unfortunately solution is not updated.
    Could any one help me
    regards
    Naveen

    Hi Aduri,
    In LISTCUBE i am getting the following error
    SQL Error 0
    Unknown error in SQL interface
    System error in program SAPLRS_EXCEPTION and form RS_EXCEPTION_TO_MESSAGE 
    Source system is Solution Manager only, production client and BI by default its running in 001 client. We dont have any APO system in our landscape.
    Kindly advice
    Regards
    Naveen

  • All master data values not shown in query selections

    Hi
    I have created a query on a BasisCube containing the InfoObject 0FUNC_AREA. I loaded data to 0FUNC_AREA and the cube.
    I then created a query on the cube, in which I want to filter on 0FUNC_AREA. However, when I get the list of available values for 0FUNC_AREA not all the values in the master data is shown. It only shows 25 values out of 105.
    As a default, the data shown is only the cube data, so I removed the tick in the checkbox: Show only InfoCube data. Still the same.
    Then I went to the InfoObject and set the 'Query Def. Filter Value Selection' and 'Query Execution Filter Val. Selectn' equal to 'Values in Master Data'. Still the same.
    Then I deleted the contents of the InfoCube. It still shows the original 25 values.
    The really strange thing is, that when I go into the selection screen for 0FUNC_AREA in the BEx and limit the shown values to one of the values available in the master data but not shown in the list, it shows the text of the functional area in the limit summary window. But still when executing the limitation, it cannot find the value!!!
    The problem is the same in LISTCUBE
    I hope some of you can help we with this.
    Thanks
    /Karsten

    Hi Hari
    1) Reactivated the master data, said it was already active.
    2) Could see a difference between the data contained in cube and the remaining data. Otherwise not.
    I deleted cube and master data and reloaded, the problem still persists. I am beginning to suspect a bug in BW.
    I have to determine whether I am going to live with it (as it isn't critical, just a nuisance) or create an OSS on it.
    Thanks for all the input guys.
    /Karsten

  • Impact on transactional Loads if Master data is not loaded

    Scenario for your reference:
    The loads to ZPO_LINE from PC3 was failing for past 20 days from The fix was applied on April 21. 
    I need help to decide the effects of not loading ZPO_LINE for past 20 days. And create a detailed plan for data loads required.
    If the master data is not loaded for 20 days will it affect the transaction loads happened during those days?
    And how can i find out the impact and correct the transaction data if it does?
    Can any 1 help me with this?

    Hi,
    If i understand your scenario, you have a scenario where the Master data load has not been updated for the last 20days but, the transaction data was loaded without any interruption.
    In such a scenario, the Transactional loads will only be affected if there is some field which undergoes transformation after looking up on the master data.
    So, first load the master data and run the attrib change run process.
    After this, if the transaction data is in full update mode, then you dont need to do anything as data will be refreshed with correct values in the next load.
    If delta loads are there, you might need to performa  full repair.
    Regards,
    Rahul

  • Master data update bringing in multiple records for single entry

    Hello,
    I found that if I deleted and reloaded data in a master data object, it was showing me correct number of records. However, just a full update was not overwriting it with correct number of data records. there were always 1 or 2 extra blank records. I thought master data update should overwrite previous records and we need not delete and reload it.
    Why would this happen?
    Thanks!

    Hi there,
    Are you refering to time dependent master data? From to values are present?
    If so, that's the correct situation, since BW (OLAP) instead of R/3 (OLTP) allows you to mantain historical data, i.e., a material can be valid from a specific time period with several attributes and other attributes can be valid for the same material in another time space.
    Diogo.

  • Generic master data update

    hi all,
    i have created a generic data source on Z table in r/3, replicate in BW and generic data source is available in BW. i have created a infosource and want to do flexible upload into 0Material data target which is assign under Cross applicant component( flexible master data update. i can not see the infoprovider under this application component in BWD system. 0material infoprovider is availble in BWQ and BWS system. i think some one remove this characteristics as a data target. i look into business content under cross application Master data flexible update , but can not find 0 material as a data target. please some one advise me how i can go after this.
    Thank you
    Qandeel

    hi Martin,
    Thank you for your quick response. i look into RSD1 infosource with direct update check box is enable, but its not enable for the" Character is data target/infoprovider.
    i look into BWQ system 0material is enable for direct update and also a character is data target/ infoprovider. what i need to do to change the setting for 0 material and to enable this a infoprovider/ data target. some how settings get change in BWD system and its not available as a data target. please advise
    Thank you
    Qandeel

  • Purchasing requistion dates are not reflecting in R/3

    Hi All,
    material created in R/3,here purchase requistion generated in R/3 & APO.
    Then in APO,after Rescheduling in detailed scheduling planning board new purchase requistion delievery date is not
    reflecting in R/3.
    Kindly revert back ASAP.
    Regards,
    Venkat.
    Edited by: venkat1215 on Jul 23, 2010 11:05 AM
    Edited by: venkat1215 on Jul 23, 2010 11:30 AM

    Venkat,
    You didn't answer my question.
    As a general rule of thumb, APO is much fussier about changing and synchronizing orders that were created in R/3.  If you have a choice, you should always create purchase reqs in APO (although cross-creation is supported, and can be made to work nicely if you are diligent).
    When you change an order in APO, and then publish the change to R/3, it is possible that the settings in R/3 will cause an issue with 'booking' the change.  One way to test this is to manually make the same change, but directly in R/3.  There should be no warnings or errors.
    Another thing to look at are the Application logs on both sides (SLG1) for possible failures that may give a clue.  Restrict to date and time interval where you know the proper update did not take place.
    Rgds,
    DB49

  • Customer master data updation from one system to another system

    HI  Experts,
    I have an issue with customer master data updation from one system to another system. And here only one field is not updating properly from one system to another system. and we found this is through idoc , but we don't find field in any segment.
    and the field is called ADDR1_DATA-HOME_CITY.
    and this will displayed as different city in address column.
    but as per the notes given in help , it is by program , form through only passing. but not able to trace and as per my analysis ADRC table , ADRNR  had this field HOME CITY.
    And this is for some customers updating wrong one from one system to another system , and for some customers field itself not updating in address column.
    please can you suggest any one. here are screenshot for your reference.

    that is not enough, it was enough in times before 40b release, but this was in the  last century
    Please read OSS note 384462 - Master data and addresses
    it explains what you have to do for ALE

  • Uploaded Data's Not reflecting

    Dear Experts,
                  Org Unit change of 1500 Workers Uploaded through BDC but still Data is not reflecting in the particular new Org Unit. I have Run the RHINTE Reports too is anything Im Missing Please help.
    Thanks & Regards
    Khaiser

    Dear Experts,
                    Issue Resolved by Own!!!
    Regards
    Khaiser

  • Loaded data is not yet visible in Reporting (see long text)

    hello
    all
    I have the next problem : in transaction RSA1, with infocube 0SD_C03 (Sales: Overview) click right/option/manage. appear the next message "Loaded data is not yet visible in Reporting (see long text)", when execute the rollup, show the next message : "Request 'REQU_48QRSOY3PVEJYDCO1B9II221D(    23393)' in DTA '0SD_C03' locked against Qualok using real-time Planning
    as I solve this problem ?

    Jurado,
    What is the frequency of your real time load? was it loading when you query the cube? Have you checked the status of the load? Yellow, if Yellow and if the load is completed Change the technical status to Green and you should be able to see the data. Are you sure your query restriction (if any) satisfies the data?
    Probably if you look closely you would know the answer.
    Goodluck,
    Alex
    (Arthur Samson)

  • Is there FM that enables master data update?

    Hello
    Is there FM that allows master data update? I would llike to modify text of infoobject without data load or .
    I know its possible to make a fake update but I dont wish to do so

    HI
    Check this document :
    'How to... update Master Data during upload of transaction data', there is sample code
    https://websmp202.sap-ag.de/~sapdownload/011000358700002766042003E/HowToUplMasterDataTransact.pdf
    you may need RSDDS_ATTRIBUTES_ACTIVATE to activate data.
    Function modules for Master Data
    Regards
    Chandra Sekhar T

  • How to normalize data in BW and in Bex Report

    Hello Experts,
    Could you please clarify me with the followings please?
    1. How to normalize data in BW and in Bex Report?
    2. What are the best designs for data normalization and where?
    3. What are the advantages and disadvantages for BW data normalization / denormalization?
    Need your guidance and will appreciate help.
    Thanks in advance.
    Regards,
    Bhakta

    Hi,
    You can do this in the report. See here for details:
    http://help.sap.com/saphelp_nw04s/helpdata/en/1f/25883ce5bd7b1de10000000a114084/content.htm
    Hope this helps...

Maybe you are looking for

  • Net value calculation in pricing

    Hi Experts, Net value in SO and customer gross in billing showing incorrect value Base price inclusive of duty - 100 So excise base value u2013 90.66 statistical condition ED- 9.07 ECESS- .18 SHECESS- .09 The issue is net value in SO showing 109.34 (

  • VISA USB Communication

    I'm in trouble trying to communicate a raw USB device trough VISA and CVI. I can easily connect and disconnect the device by using viOpen/viClose, but I don't know how to read/write data. Some functions like viWrite return this error: "Unable to star

  • Mac won't shutdown after Leopard upgrade; Kernel trap report

    After upgrading to Leopard last week, my iMac has repeatedly failed to shut down properly. When I select shutdown, the system seems to be turning off as usual, closing all programmes and the screen switching off to black, but one fan is still left ru

  • Stipr Sets with Apple Disk Utility DU

    We have installed a Raid System with two Raid Volumes, partitioned into 2 spaces, striped together as Stripe Level0. After expanding the two Volumes trough adding new disks, we will have two new Bigger Raid Volumes which can the DU see, but the two S

  • Can't activate siri properly

    I'm trying to use Siri on my new iphone 4S but everytime I hold the home button and ask a question she tries to make a phone call.  What am I doing wrong?