Master data request id?

Hi all,
I need to check the values of the master data(attr) request by request. How to view the values of the master data(attr) of a particular request only?
or
can anyone tell me in which table the master data request id or request no. is stored?
Thanks in advance.

Hi,
Hi,
There are 2 scenarios for master data load
One is direct update and other if flexible update.
The request will show up in the manage of IO if is a flexible update of master data.
The request will not show up in the manage of IO if you are doing a direct update of master data. In that case goto the infopackage > On the top left hand side there is the monitor button click .this will show RSMO for that infopackage. See the header tab.It and you will get all details about your load request.
Or simply goto RSMO and filter using target name and you can see the loads.
RSMONICDP--Contains the request-id number by data target
RSREQICODS--Gives the list(ODS/CUBE) including the requests which are compressed
also try RSRREPDIR
Hope this helps u..
Best Regards,
VVenkat..
Edited by: Venkata Narayana Jakkampudi on Dec 29, 2008 11:25 AM

Similar Messages

  • Deleting Master Data Requests in a Process Chain

    Hi All,
    I need to delete and reload master data in a process chain.  I created an ABAP program that uses the function module "RSDMD_DEL_MASTER_DATA" to delete the master data.  I invoke this program from my process chain, and this is working well.  My master data is being deleted nicely.
    Question, however.  I noticed that this does not delete the actual data request for that InfoObject.  If I manage that attribute, I still see the request appearing, eventhough I see no records when I select the option to maintain master data.
    Can anyone tell me how I can delete the requests for master data, and how this can be done through a process chain?
    Your assistance would be greatly appreciated.
    Thank you,
    John Stabile

    Hi John,
    I created a program giving the name of the master data object. Using this object, I found the request entries from rsiccont
    Then I check these found entries in rsbkrequest, so as to find the status is successful.
    rsbkrequest-tstate eq '2'.
    rsbkrequest-ustate eq '2'
    see the total code below.. you can copy paste the same
    *TABLES
    tables: rsiccont.
    *SELECTION SCREEN
    selection-screen begin of block a01 with frame title text-t01.
    select-options : s_icube  for  rsiccont-icube obligatory.
    parameter: p_num type i obligatory.
    parameter: p_test as checkbox.
    selection-screen end of block a01.
    *Internal Table Definition
    types: begin of t_rsiccont.
            include structure rsiccont.
    types: recno like sy-tabix,
           end  of t_rsiccont.
    data:  i_rsiccont type standard table of t_rsiccont with header line,
           i_rsiccont_ok type standard table of t_rsiccont with header line,
           i_rsbkrequest type standard table of rsbkrequest with header line.
    *Work areas
    data: wa_rsiccont  type t_rsiccont.
    *Variables
    data: lv_rnr   type rsiccont-rnr.
    *AT SELECTION SCREEN
    at selection-screen on s_icube.
      select single rnr
        into lv_rnr
        from rsiccont
        where icube in s_icube.
      if sy-subrc ne 0.
        message 'InfoCube not found' type 'E'.
      endif.
    *START-OF-SELECTION
    start-of-selection.
      select * up to p_num rows
        into table i_rsiccont
        from rsiccont
        where icube in s_icube.
      if sy-subrc eq 0.
        select *
          into table i_rsbkrequest
          from rsbkrequest
          for all entries in i_rsiccont
          where requid eq i_rsiccont-rnsidlast.
       if sy-subrc eq 0.
          loop at i_rsiccont.
            read table i_rsbkrequest with key requid = i_rsiccont-rnsidlast.
    *check if status is = 2.
            check sy-subrc eq 0.
            check i_rsbkrequest-tstate eq '2'.
            check i_rsbkrequest-ustate eq '2'.
    *actual mode -> delete the recrod!
            if p_test is initial.
              call function 'RSSM_PROCESS_REQUDEL_MDT'
                exporting
                  i_dta     = i_rsiccont-icube
                  i_request = i_rsiccont-rnr.
            endif.
            append i_rsiccont to i_rsiccont_ok.
          endloop.
        endif.
      endif.
    *display list of all request numbers deleted!
      write: 'List of delete request numbers'.
      uline.
      skip.
      loop at i_rsiccont_ok.
        write: i_rsiccont_ok-rnr.
        skip.
      endloop.
    =====================================================
    You may need to correct the formatting
    Edited by: Shailesh Khandarkar on Nov 11, 2009 7:42 AM
    Edited by: Shailesh Khandarkar on Nov 11, 2009 7:46 AM

  • Unable to find the master data loaded request in manage tab

    Hi All,
    Iam unable to see the loaded request in the master data manage tab after some time of loading.
    Immediately after loading i could see the request.If i revisit the manage tab,iam unable to see the request.
    However data is available for the info object .
    Can anyone please suggest on this.
    Regards,
    Kavya

    hi Devupalli,
    Note your request number, find it using RSRQ tcode. Now click on the target icon and see if it takes you to the manage of your infoobject.
    There is a very common error which we sometimes make: are u sure you're checking the right thing? please check that if your infoobject has text, attribute and hierarchy, you're checking in the manage of the relevant one.
    For ex, if you're loading text, you have to go to manage of the text.
    Hope this helps!
    Sheen

  • Master Data is in Revised Version while transporting a request to add an attribute in existing master data infoobject

    Hi Experts,
    I am facing short dump when trying to send a request to add an attribute in Master Data Infoobject from DEV to QA.
    Although the attribute is getting added to main Master data Info object but main master Info object is in Revised Version.
    I have been searching the solution in SCN from couple of days and tried every single solution but none of them works for us.
    When I check in se09 I am getting the following message
    Program terminated (job: RDDEXECL, no.: 09445401)
       Execution of programs after import (XPRA)
    End date and time : 20150420094559
    Ended with return code: ===> 12 <===
    When checking in ST22 IN QA I am getting the following message
    The exception 'CX_RS_PROGRAM_ERROR' was raised, but it was not caught anywhere
      along
    the call hierarchy.
    Since exceptions represent error situations and this error was not
    adequately responded to, the running ABAP program
    'CL_RSDD_DS====================CP' has to be
    terminated.
    When I checked in ST22 in QA I am getting following dump
       31         RAISE EXCEPTION TYPE cx_rs_program_error
       32           EXPORTING
       33             text = 'Invalid DSO subtype'.                   "#EC NOTEXT
       34     ENDCASE.
       35
       36 *   get table name from DDIC
       37     CALL METHOD cl_rsd_odso=>get_tablnm
       38       EXPORTING
       39         i_odsobject = n_infoprov
       40         i_tabt      = l_tab
       41       IMPORTING
       42         e_tablnm    = l_tablnm
       43       EXCEPTIONS
       44         OTHERS      = 1.
       45
       46     IF sy-subrc <> 0.
       47       RAISE EXCEPTION TYPE cx_rs_program_error
       48         EXPORTING
       49           text = 'Error in CL_RSD_ODSO=>get_Tablnm'. "#EC NOTEXT
       50     ENDIF.
       51
       52     CALL FUNCTION 'DDIF_NAMETAB_GET'
       53       EXPORTING
       54         tabname   = l_tablnm
       55       TABLES
       56         dfies_tab = l_t_comp
       57       EXCEPTIONS
       58         not_found = 1
       59         OTHERS    = 2.
       60     IF sy-subrc <> 0.
    >>>>> RAISE EXCEPTION TYPE cx_rs_program_error
       62         EXPORTING
       63           text = 'Error in DDIF_NAMETAB_GET'.        "#EC NOTEXT
       64     ENDIF.
    I have attached the short dump
    Thanks In Advance
    Rashid

    Hi Tom
    Thanks for your reply.
    I am not sure what do you mean by Manually activated in Dev or QA . If you mean Dev then i did and also maintain the infoobject related tables using transaction SE14 but still same error.
    But if you mean in QA then QA is lock for manual activation but i tried though program RSDG_IOBJ_ACTIVATE but again failed. I also maintain the infoobject related tables using transaction SE14 but still same error.
    Regards
    Rashid

  • Master Data -- unable to delete the request

    I loaded master data for 0EMPLOYEE info object, all the records Added but the request is in Read,
    I am trying to QM status Green Manually it is giving the message “QM action not allowed for DTP requests in master data and Text Tables “.
    I am unable to delete the request also, when I am trying to delete it is saying
    <b>Error:</b>
    Data inconsistency; Partition /BIC/B0000959000 not deleted
    Message no. RSAR026
    <b>Diagnosis</b>
    In table RSTSODSPART you selected all the requests of a partition to be deleted logically. Some entries partno = 0 still exist in the partition. Therefore the partition is not deleted.
    <b>System Response</b>
    The system outputs an error when deleting the partition.
    <b>Procedure&</b>
    Check the table for data consistency.
    <b>Error:</b>
    Termination in problem report 'RSS2_DTP_RNR_SUBSEQ_PROC_SET' in row '      177'
    Message no. RSSTATMAN102

    Hi,
    I have answered to another thread like this one which is still unsolved (I suggested to open the issue in the OSS)
    You can try the following OSS note for a start
    SAP Note 1048161 P14:Set QM status for yellow requests using funcion module
    I've also found a very recent one:
    SAP Note 1078527 P16:Request deletion with error RSSTATMAN 102 in row 34
    hope this helps...
    Olivier.
    Message was edited by:
            Olivier Cora

  • Master data loads Request not updated to any data target using delta

    When checking the PSA the request updated ICON has red triangle and the mouse over says
    "Request not updated to any data target using delta".
    I am doing full loads for text data and both full and delta's loads for Attributes. This is BI 7.0 system but the loads are still from 3.1.  DTP has not been implemented yet. The system was just upgraded in July.  I am unable to schedule deletes from the PSA for successful loads.  However, I think the data is updating to the info objects.  My Info package has the selection to PSA then in the InfoObject package by package.  
    How do I schedule the deletes from PSA and why does the Request updated show red but the monitor for the info package show green?
    Edited by: Joe Mallorey on Jan 27, 2009 5:46 PM

    Hi shikha,
    The load has not failed but I am unable to delete the load from the PSA.
    If you do a manage on the Data Source or go to PSA from RSA1 the first column has the green gear icon instead of a green check mark I have red triangle the mouse over says "request not updated to any data target using delta" The data has loaded to info object. I am trying to schedule deletes from the PSA and using the option to "delete only successfully booked/updated requests" So how do I get the request updated column to show a green check mark so my deletes will Process? This is for master data only. My transactions load fine and delete properly according to my settings.
    Thanks for the reply.
    Regards,
    JoeM

  • How to  see request no in master data objects

    Hi Experts,
    In My scenario loading master data to Infoobject with delta update.
    How to do the repeat delta? in case of delta failed.
    Where to se the failed request.
    i need it urgent ,please help me in this regard.
    Thanks,
    Bala

    Hi
    In the infopackage which loads the master data , there is a monitor option in the top. Choose this option and give a date range. You can see here the list of all requests failed/ success/still pending
    From here, if certain requests failed for delta, you can go to PSA and right click on PSA and update immediately
    Hope this helps
    Regards
    N Ganesh

  • Request Download for Master Data from ECC to CRM resulting in "Wait" Status in R3AR3

    Hi All,
    I have created request download in R3AR2 transaction to download master data for a particular Business Partner from ECC to CRM.
    But after I execute the request in R3AR4 transaction and check its status in R3AR3 transaction, it always states as "Wait".
    Please help me as to how to resolve this issue.
    Thanks in advance,
    Shubham

    Hi Shubham,
    Please check the queues in SMQ2 and what status they are showing?.
    Thanks,
    Faisal

  • Request Status for Master Data Attributes Load

    Dear All,
    We are trying to load attribute master data and volume of which is relatively huge around 10,000 records.
    We are facing challenge while updating attribute data from master data info object , the load status remains in yellow status and when we went to details screen it states that data is transfered to transfer rule . ( it has been loaded successfully in to PSA).
    Could anybody please give some hint on this challenge ??
    Regards
    Kapadia

    Hi  Paolo Siniscalco,
    You are right, as number of records are more , i have chosen update of "Only PSA" and then "Subsequently in Data Targets".
    I tried other option also which is infopackage  schedule "Execute in Back ground" and                                                         
    "Request batch process runs untill all data is updated in BW". And process went in to infinite loop.
    Some how i am not able to track out why the request status is not changing .
    Regards
    Kapadia

  • Request deletion from Manage-Master data infoobjects

    Hi All,
    I have a master data infoobject, for which i have created a process chain for deleting the data. I am deleting the P and S table in a program.
    When i run this chain data is getting deleted from the tables, but i see the request (green/red/yellow) in the manage section of the infoobject. I want to delete those entries as well from the manage section.
    Any inputs ?
    Regards,
    Sandeep

    Hi,
    to delete those entries you will have to delete the entries from standard SAP tables...all the tables begining with RSREQ stores the information about the requests...but you may not have authorization for that...
    did you tried RSDMD_DEL_BACKGROUND or RSDMD_DEL_MASTER_DATA_TEXTS function modules....you can use in the program and use at as a ABAP variant in the process chain.
    Thanks
    Ajeet

  • How to Delete Requests for Master Data Target

    In BW 7.0 (SP24) I'm struggling with a time dependent master data process chain load using BI 7 load methods (Transformation / DTP). The unique aspect of this is that we are required to start the process chain with an ABAP that deletes the master data. (RSDMDD_DELETE_BATCH). So a "Full" load is necessary. And we have to remove the previous PSA and Requests so that the DTP won't attempt to load (and ignore) the previous PSA.
    While deleting the previous PSA request is a straightforward operation in a process chain, there does not appear to be a function allowing us to delete the requests from a Master Data object. (info cube and OSD/DSO only).
    Does anyone know of an existing ABAP or Function Module that we can use to delete the existing requests from our object before we run our load processes ?
    Many thanks !

    Try the FM "RSDMD_DEL_MASTER_DATA".
    But before deleting the master data you have to make sure that this master data is not used anywhere i.e, delete all the transactional data first.
    U can also try RSDMD_DEL_PARALLELIZER

  • Delete DTP OL request for Master data

    i have a data source which only allows ful infopackages, once loaded in the PSA  use dtp to load in fullload in the master data attributes .... a request shows up green.
    now i need to delete the previous request from PSA9 not a problem)
    the 2nd run happens psa is reloaded again dtp loads the request but now i got double records in the attributes.
    q1, how do i delete over lapping request using process chains, i can delete them manually but i am lazy i rather have a process chain do it for me at 3:0  am in the morning.
    2nd ) does it matter to have 2 or 20 same data requests in the master data texts or attributes, instead of table space does it effect roducitivity?

    See , I will give an example to understand how delta dtp works
    Case 1 : If you run thru delta dtp
    Run IP .....req1.....8 reocrds
    Run Delta DTP..... 8 records
    Run Delta DTP..... 0 records
    Run IP.......REQ2......10records
    Run Delta DTP..........10 records
    case 2 : If you run Full DTP
    Run IP .....req1.....8 reocrds
    Run Full DTP....... 8 records
    Run IP.......REQ2......10records
    Run Full DTP.......... 8+10 records = 18 (since it's full it extarcts all the requests from PSA)
    If you load 10 times using delt/full dtp obviously you will have 10 requests in attribues/texts of md
    but it will add only new / changed record to the MD tables ..
    load 10 times you will see requests - goto SE16 - /BIC/PMDNAME - execute - will show only unique entries
    Hope it's clear!

  • Transport Request for HR master data

    Hi all,
    When we are hiring an employee or changing employee master data, system is asking for a transport request while saving the data. As master data is not transportable , we do not want system to show popup for the same. Kindly guide me if there is any setting to avoid this popup?

    hi
    this u can do in the table v_t77S0 via SM30.
    in this table put an X mark under TRSP, ADMIN
    reward points.

  • QM action not allowed for DTP requests in master data and Text tables

    Hi,
    I have a master data object load request which has failed, returned error in st22 and job finished.
    BUT the request has not turned red in the monitor - it's still yellow. That means that I can not delete request nor start new load to infoprovider because it believes a request is still running. But it's not, I've checked both sm37, sm50 etc.
    When trying to manually change QM status to 'red' it says 'QM action not allowed for DTP requests in master data and Text tables'
    How can I force QM status to red so that I can move on?
    Running NW2004s BI (7.0) Patch 15.
    I searched for this question but there is no answer
    Thank you

    Folks
    I know how frustrating this problem is even in netweaver 7.0 environment. I found a solution for this problem atlast and it works but a not direct way of resolving this issue.
    When this request is in yellow status and not able to change / delete the request, its actually in a pseudo status and it is a bug in the program. This request sits in table RSBKREQUEST with processing type as 5 in data elements USTATE, TSTATE and this 5 is actually "Active" status which is obviously wrong.
    All we need is, ask your basis person to change the status to 3 in both these data elements and then it allows to reload the delta. Once the delta is successfully loaded, you can delete the previous bad request even though it is still in yellow. Once the request is deleted, the request status gets updated as "4" in table RSBKREQUEST.
    Hope this helps.
    Thanks

  • Master data attribute request unable to delete.

    Hi ,
    The problem which we are facing here is while tryin to delete the mater data attribute request, it pop ups with the following errors
    The request is currently in "yellow'
    Request &1 not extracted; request is in obsolete version of DataSource
    Request &1 (&2) is not available
    Any suggestions on how to delete the request.
    advise needed.
    thanks!

    Hi,
    It is not posible to delete request from master data objects.
    Request administration is not possible in master data. The new request is overwritten in case of modified records.
    You can selectively delete the master data, from master data maintenance.
    Regards,
    Nitin

Maybe you are looking for

  • "Unable to open config file" Error when starting tomcat

    hi all, Here is the output from two of the log files when I start tomcat4 on my linux box. I have configured the mod_jk on the tomcat side. From the output of the second log file, it seems that the ajp13 worker I defined was started successfully. Wha

  • Hard disk malfunction, what's the next step?

    After I upgraded to Tiger version 10.4.9, my PB would boot more slowly each time, but would eventually make it to the desktop. Thinking it was software related, I ran Applejack, which said the directory was corrupt. In another discussion topic, I was

  • Ipod with Windows ME..new program??

    Hey would really love some help please! Bought my ipod about a month ago, didnt realise that ITunes needed Windows 2000 or XP. I have Windows ME and downloaded another program to put my songs on. This has now expired and am now looking for another on

  • What's going on with PB 15?

    Does anybody have any feedback about PB 15?  I believe the Beta version has been out for quite some time.  It seems like I should be hearing something by now.

  • Upgrade affected my sound when viewing series on line

    I have a new MacBook Air (Nov 2013) and have recently upgraded to Mavericks. I now find that when I stop watching series on line and close my laptop, when I try to continue watching, there is no sound and I need to restart my laptopto regain this. Ca