Reconstruct load request

Hi,
What seetings are required for a load request to be available to reconstruct a deleted request in DSO.

Hi ,
In order to reconsturct the major requirment is the load should be through PSA ..
For reconstuction you have to first delete the request from target and then reconstuct it form RSA1 >>PSA ...
1.if its not through PSA .. so in order to make it thorugh pSA first load the data till pSA by running the load with the setting only PSA in processing tab..
and then click process manully .. to update it to target ..
2. or you can add update from PSA step in  your process chain ..after your laod and put the setting of your laod as only PSA and then into data targets ..it wil laod the data till pSAand the update from PSA step will laod the data further into data targets ..
Regards,
shikha

Similar Messages

  • Reconstruction of request in BI 7.0

    hi All,
      In 3.5 , i can go to "Reconstruct" tab in the cube and able to select the request which need to be reconstructed. But in 7.0, is there any way to reconstruct the request like what we used to do in 3.5. Can you please let me know how we should do this in 7.0 ?
    Thanks in advance..

    Hi,
    The reconstruct tab only works for InfoCubes loaded with 3.x data
    flow objects (update rules).
    In addition to this, this function only works if the data is stored in the PSA,
    But since you know in BI 7.0 there is no PSA when u load data from DSO to Cube.
    Regards,
    Mansi

  • Re-load request

    I have loaded the data into PSA, and the request is loaded into Data Target successfully.
    For some reason, is there a way for me to reload this request (from PSA) into the Data Target again?
    How should I go about this?
    Pleasea advice, thanks.

    Hi,
    see if its through PSA then you can delete the request from target wothout making it red..
    and Go to RSA1 and reconstruct the request ..
    RSA1>> copy the data source of IP  >> find it in RSA1 and then right click on taht data source find your request ..and reconstruct it ...
    hope this helps you ...
    Reagrds,
    Shikha

  • 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

  • Error "cannot load request real time data targets" for new cube in BI 7.

    Hi All,
    WE have recently upgarded our SCM system from 4.1 to SCM 7.0 which incorporated BI 7.0.
    I am using BI 7.0 for first time and ahve the following issue:
    I ceated a new infocube and data source of flat file and succesfully created transformation, and Data Transfer Process. Everything looked fine. I added flat file and checked preview and could see data. Now when I start job to load data in infocube the follwing error is shown "cannot load request real time data targets". 
    I checked cube type in setting in infcune is shows as Standard.  When I doube clicked on error the following message showed up
    You are trying to load data into a real-time InfoCube using a DTP.
    This is only possible if the correct load settings have been defined for the InfoCube.
    Procedure
    In the object tree of the Data Warehousing Workbench, call Load Behavior of Real-Time InfoCube from the context menu of the InfoCube. Switch load behavior to Transactional InfoCube can be loaded; planning not allowed.
    I did not understand what it is meant and how to set changes. Can someone advice and follow me through.
    Thanks
    KV

    Hi Kverma,
    Real-time InfoCubes can be filled with data using two different methods: using the transaction for entering planning data, and using BI staging, whereby planning data cannot be loaded simultaneously. With Real time cube you can select the method you want to use for update as
    Real Time data Target can be loaded With Data; Planning not allowed &
    Real Time data Target can be Planned; Data loading not allowed
    You can change this behaviour by right clicking on cube and selecting Change real time load behaviour and select first option. You will be able to load the data then
    Regards,
    Kams

  • Need help in deleting the data load request

    Hi All,
    In the system one erroneous data load load request is being generated( whoes status is  monitor without Request), because of this I am unable to activate other requests...
    I want to delete this request, I am deleting it but it is not, it is still remain in the system, and i am unable to activate it as it is an erroneous one, I have deleted that request from the backend table RSMONICDP as well, but still no successful results.
    Please give ur suggestions on this.
    Thanks,
    vinay

    Hi
    There is a possible solution for these kind of issues .
    1. Note that bad request number
    2. Go to SE16
    3. Open table RSODSACTREQ.: Filter the contents by that request number . There will be one entry for that request . Delete that entry
    4. Open table RSICCONT. There will be one entry for that request . Delete that entry
    5. Open Table RSMONICDP. Filter the contents by that request number . There will be 3-4 entries for that request depending on number of data packages in that request .Delete all those entries

  • Actionscript image gallery doesn't recognize load request

    Hi, I'm trying to create a five image gallery, and when I try to add the load request for the 3rd, 4th, and 5th images I get an error message that says it doesn't recognize that request: see code below:
    stop();
    //turn on buttonMode for mc's so mouse changes to hand
    one_mc.buttonMode=true;
    two_mc.buttonMode=true;
    three_mc.buttonMode=true;
    //four_mc.buttonMode=true;
    //five_mc.buttonMode=true;
    //--add button modes for 3-5 here
    //define rollovers (don't define rollOuts yet...will prevent flickering)
    one_mc.addEventListener(MouseEvent.ROLL_OVER, over1);
    two_mc.addEventListener(MouseEvent.ROLL_OVER, over2);
    three_mc.addEventListener(MouseEvent.ROLL_OVER, over3);
    //--add eventListeners for 3-5 here
    //define clicks
    one_mc.addEventListener(MouseEvent.CLICK, load1);
    two_mc.addEventListener(MouseEvent.CLICK, load2);
    three_mc.addEventListener(MouseEvent.CLICK, load3);
    //four_mc.addEventListener(MouseEvent.CLICK, load4);
    //five_mc.addEventListener(MouseEvent.CLICK, load5);
    //--add eventListeners for 3-5 here
    //turn off big rect
    bigRect_mc.visible=false;
    //create URL request to communicate to external file
    //NOTE: You will have to have an "images folder with "one.jpg" in order for this to work
    //title your files so they make sense
    var my1Request:URLRequest=new URLRequest("images/one.jpg");
    var my2Request:URLRequest=new URLRequest("images/two.jpg");
    var my3Request:URLRequest=new URLRequest("images/three.jpg");
    //--add requests for 3-5 here
    //create loader to bring in external file
    var my1Loader:Loader = new Loader();
    var my2Loader:Loader = new Loader();
    var my3Loader:Loader = new Loader();
    //--add requests for 3-5 here
    //move loaders to create room for nav
    my1Loader.x=125;
    my1Loader.y=12;
    my2Loader.x=125;
    my2Loader.y=12;
    my3Loader.x=125;
    my3Loader.y=12;
    //--add positioning for 3-5 here
    //add a close button. The new close is a reference to the CLASS NAME GIVEN IN THE PROPERTIES OF THE SYMBOL...very important!
    var close1_btn=new close();
    var close2_btn=new close();
    var close3_btn=new close();
    //--add close buttons for 3-5 here
    //choose location on the stage (my close button has the registration in the upper right)
    close1_btn.x=954;
    close1_btn.y=11;
    close2_btn.x=954;
    close2_btn.y=11;
    close3_btn.x=954;
    close3_btn.y=11;
    //--add close locations for 3-5 here
    //define event listeners
    function over1(evt:MouseEvent):void {
        //remove over event
        one_mc.removeEventListener(MouseEvent.ROLL_OVER, over1);
        //play one's timeline
        one_mc.gotoAndPlay("over");
        //add rollout
        one_mc.addEventListener(MouseEvent.ROLL_OUT, out1);
    function out1(evt:MouseEvent):void {
        //remove out event
        one_mc.removeEventListener(MouseEvent.ROLL_OUT, out1);
        //play one's timeline
        one_mc.gotoAndPlay("out");
        //add rollover
        one_mc.addEventListener(MouseEvent.ROLL_OVER, over1);
    function over2(evt:MouseEvent):void {
        two_mc.removeEventListener(MouseEvent.ROLL_OVER, over2);
        two_mc.gotoAndPlay("over");
        two_mc.addEventListener(MouseEvent.ROLL_OUT, out2);
    function out2(evt:MouseEvent):void {
        two_mc.removeEventListener(MouseEvent.ROLL_OUT, out2);
        two_mc.gotoAndPlay("out");
        two_mc.addEventListener(MouseEvent.ROLL_OVER, over2);
    function over3(evt:MouseEvent):void {
        three_mc.removeEventListener(MouseEvent.ROLL_OVER, over3);
        three_mc.gotoAndPlay("over");
        three_mc.addEventListener(MouseEvent.ROLL_OUT, out3);
    function out3(evt:MouseEvent):void {
        three_mc.removeEventListener(MouseEvent.ROLL_OUT, out3);
        three_mc.gotoAndPlay("out");
        three_mc.addEventListener(MouseEvent.ROLL_OVER, over3);
    //--add event listener definitions for 3-5 here
    define loadOne
    function load1(evt:MouseEvent):void {
        //remove any listeners you don't need
        one_mc.removeEventListener(MouseEvent.ROLL_OUT, out1);
        one_mc.removeEventListener(MouseEvent.CLICK, load1);
        //add listeners you do need
        one_mc.addEventListener(MouseEvent.ROLL_OVER, over1);
        //turn on big rect
        bigRect_mc.visible=true;
        //load image
        my1Loader.load(my1Request);
        //add image + close to display list
        addChild(my1Loader);
        addChild(close1_btn);
        //add event for close button click
        close1_btn.addEventListener(MouseEvent.CLICK, remove1);
    //define event function
    function remove1(evt:MouseEvent):void {
        //remove image & close button from display list
        removeChild(my1Loader);
        removeChild(close1_btn);
        //turn off big rect
        bigRect_mc.visible=false;
        //reset movieClip button
        one_mc.gotoAndStop(1);
        //add back necessary event listenters
        one_mc.addEventListener(MouseEvent.ROLL_OVER, over1);
        one_mc.addEventListener(MouseEvent.CLICK, load1);
    function load2(evt:MouseEvent):void {
        //remove any listeners you don't need
        two_mc.removeEventListener(MouseEvent.ROLL_OUT, out2);
        two_mc.removeEventListener(MouseEvent.CLICK, load2);
        //add listeners you do need
        two_mc.addEventListener(MouseEvent.ROLL_OVER, over2);
        //turn on big rect
        bigRect_mc.visible=true;
        //load image
        my2Loader.load(my2Request);
        //add image + close to display list
        addChild(my2Loader);
        addChild(close2_btn);
        //add event for close button click
        close2_btn.addEventListener(MouseEvent.CLICK, remove2);
    //define event function
    function remove2(evt:MouseEvent):void {
        //remove image & close button from display list
        removeChild(my2Loader);
        removeChild(close2_btn);
        //turn off big rect
        bigRect_mc.visible=false;
        //reset movieClip button
        two_mc.gotoAndStop(1);
        //add back necessary event listenters
        two_mc.addEventListener(MouseEvent.ROLL_OVER, over2);
        two_mc.addEventListener(MouseEvent.CLICK, load2);
    function load3(evt:MouseEvent):void {
        //remove any listeners you don't need
        three_mc.removeEventListener(MouseEvent.ROLL_OUT, out3);
        three_mc.removeEventListener(MouseEvent.CLICK, load3);
        //add listeners you do need
    three_mc.addEventListener(MouseEvent.ROLL_OVER, over3);
        //turn on big rect
        bigRect_mc.visible=true;
        load image
        my3Loader.load(my3Request);
        add image + close to display list
        addChild(my3Loader);
        addChild(close3_btn);
        add event for close button click
        close3_btn.addEventListener(MouseEvent.CLICK, remove3);
    //define event function
    function remove3(evt:MouseEvent):void {
        remove image & close button from display list
        removeChild(my3Loader);
        removeChild(close3_btn);
        //turn off big rect
        bigRect_mc.visible=false;
        reset movieClip button
        three_mc.gotoAndStop(1);
        add back necessary event listenters
        three_mc.addEventListener(MouseEvent.ROLL_OVER, over3);
        three_mc.addEventListener(MouseEvent.CLICK, load3);
    //--add other events here

    copy and paste the error message after clicking file/publish settings/flash and ticking "permit debugging".  specify the line of code with the error mentioned in the error message.

  • Unloading a child after a load request

    HI,
    I have a drop down box that is loading in different movies when selected.  But when I select the second option in the drop down box, the movie gets loaded on top of the next movie.  I saw that there is a removeChild(), but i'm having trouble finding where to apply it in the code below? If I put it in the function, it creates errors of course....
    var aCb:ComboBox = new ComboBox();
    aCb.dropdownWidth=210;
    aCb.width=200;
    aCb.move(20, 20);
    aCb.prompt="Here is a list";
    aCb.dataProvider=new DataProvider(sfUniversities);
    aCb.addEventListener(Event.CHANGE, changeHandler);
    aCb.addEventListener(Event.CHANGE, changeHandler);
    addChild(aCb);
    function changeHandler(event:Event):void {
    var request:URLRequest=new URLRequest(aCb.selectedItem.data);
    var loadit = new Loader();
    addChild(loadit);
    loadit.load(request);

    Keep a ref from the last added clip
    var loadedClip: *;
    function changeHandler(event:Event):void {
    if ( null != loadedClip )
    removeChild( MovieClip( loadedClip ) );
    var request:URLRequest=new URLRequest(aCb.selectedItem.data);
    var loadit = new Loader();
    loadedClip  = addChild(loadit);
    loadit.load(request);

  • How to associate a BI_BOOK job to its load request?

    I am looking for a way to take a BI_BOOK* job and determine its load request number.
    If you know of a way, please let me know.
    Thank you very much.

    Yes, there are logs during that time, but nothing points me to the request number belonging to the BI_BOOK job.
    I am really looking for an accurate way to associate the BI_BOOK job and the request. For example, even if there are multiple load jobs running at the same time, I should be able to reliably find the request pertaining to the BI_BOOK job.
    What is interesting (and annoying) is that SAP populates RSBOOK table with the request number and BI_BOOK job while data booking is going on and then goes back and deletes the record from RSBOOK table. I wish they left that record alone.
    Thanks!

  • Underlying RS Table :: Date & Time for Data Load Requests

    Dear SAP BW Community,
    In BW 3.5, does anybody know the underlying "RS" table where I can check to see the earliest date & time which a data target was loaded, by providing the data target's technical name in SE16 ?
    Thanks!

    OK, I've found the timestamp the data load requests in the table RSMONICDP.
    To get the earliest data load for infoCube FRED, I'm going to Oracle via SQL*Plus, as follows:
    select to_char(min(TIMESTAMP)) from sapr3.RSMONICDP where ICUBE = 'FRED' ;

  • How to find match Load Request ID with SID?

    In what table can I find matching of Load Request IDs and SIDs?
    E.g I got Load Request SID like 150240 and would like to find matching ID (like REQU_425CQCGUBMHYGN8HBZ6QYTFP7).
    Thanks!
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/u/37289">vitaliy</a>

    if you know the Cube name then you can get it with LISTCUBE transaction.no idea about tables.

  • Reconstruct Infocube Request

    Hello Gurus,
    We have an issue on one of our infocube. The update rule indicates that the particular InfoObject (External Material Group) is assigned to another InfoObject’s (Material) Attribute. However, there are Materials in which the External Material Group field was not maintained from the Source System (SAP R/3). As a result, some records in the infocube have no value on External Material Group field.
    As a solution to the issue I am planning to execute these procedures.
    1.     Update Source System External Material Group attribute.
    2.     Load/Update Material Text and Attribute to BW Server.
    3.     Identify Infocube Request ID which has empty External Material Group.
    4.     Delete identified Request ID from the infocube.
    5.     Reconstruct Request ID.
    6.     Check infocube contents.
    Are the procedures above correct?
    Will these solve the issue?
    Hope to hear from you guys. We’re using BW 3.5.
    Thanks.

    Hi all,
    In line with my question above, I have tried the procedure but the field in the infocube was still not populated.
    Here is the procedure I did in our BW Dev server.
    1.     Since there are no data in our BW Dev server I run a “full update” in the infopackage from R3 QAS server.
    2.     Update test material record in R3 QAS server. Update External Material Group fields, assign a value.
    3.     Run Material Attribute full update in BW Dev
    4.     Check Material attribute of the test material in BW Dev – External Material Group field updated.
    5.     Go to Infocube -> Manage -> Request Tab, delete request id.
    6.     After the job is successful, go to Reconstruction Tab.
    7.     Select deleted request id, and click Reconstruct/Insert button.
    8.     After the successful execution, check Infocube content.
    The records from the specific request id is found in the infocube. However, the field in question is still empty.
    Is there a procedure I overlooked?
    Are the procedure above correct?
    Is there any other way to resolve this issue?
    Note: There are no changes in the Update Rules.
    Thanks.

  • How to load request by request from DSO to Cube

    Hi All,
    I am loading the data from DSO to Cube. In DSO each request has some 50 lakhs records. When I give execute in the cube transformation after some time it is giving timout error(Basis have set the time till 25 min) and I gave one more option in DTP get all new data request by request but this option also not getting the proper data. Again I am getting the time error.
    If anyone knows any other option please let me know.
    Thanks for your help in advance
    Regards
    Sathiya

    Hi,
    You can load on the criteria of key fields in the DSO.
    Or selecting Fiscal periods may help.
    Hope this helps,
    Regards,
    anil

  • 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 delete perviously loaded request from cube

    Hi All,
    I am loading a standard cube from r3 w/o PSA through DTP.
    1 ) how to delete data automatically from cube w/o using Process chains.( previously we have a facility in Infopackage to delete old loaded data ) .In BI7 how to delete the same automatically.
    2) How to schedule the DTP to run on daily basis( w/o process chain ) .I am not able to schedule it via RSRDA ?
    What might be the reason ?
    Regards
      KK

    Chivukula,
    I'm curious as to why you aren't using the process chains.  There's now a "delete overlapping request" process type within rspc.
    You are right thought, the DTP does not offer a facility to delete out the old loaded data.  This feature is not in BI 7.0
    As for scheduling a DTP to run daily, there's no way I know of to run it daily without rspc.  Yes I understand that rspc could get very messy but just create a separate holding area, say DAILY DTPS and put your DTP's in there.
    Cheers,
    Pom

Maybe you are looking for

  • Recordset structure

    From the help Under Recordset Structure, enter the sequence and the number of substructures as follows: <NameA,nA,NameB,nB,...>. Where, nA=1,2,3,... or * (for a variable, unlimited number, including 0). Can anybody give me examples .......of M/T stru

  • Problems with Photoshop rendering text in 3D

    Can anybody out there help me with this. It seems each time I use the 3D function in PS CC, and directly after extrusion my text appears rather deformed, mostly curved characters are flattened somewhat. I tried upping the dpi but I still end up with

  • Error in EPC Checking..help ..

    Dear Expert,                   Below mention warning I got in CALL FUCTION :       Program:  ZFISL_LINET_R  Include:  DTINPSUB  Row:     39 Function module DATA_INPUT_CHECK is flagged as obsolete. If you have any queries, contact the author of the fu

  • Cannot compile ov51x_jpeg

    I have tried installing ov51_jpeg webcam driver for months, on several kernel versions. It looks like installation does not work after kernel 2.6.29: ==> Starting build()... patching file ov51x-jpeg.h patching file ov51x-jpeg-core.c patching file ov5

  • Cannot open my latest project

    Been working for weeks on this new movie project. Almost complete. 1hr 20 min or so. Have had the usual odd bugs now and then but never encountered what happened just a few hours ago. When I try to open my saved project (which is stored on my LaCie 1