Full request deletion from same datasource in different R/3 systems.

Hi,
I have a cube in which data is full loaded . I have a two R/3 Systems e.g. A and B.  there is a standard datasource which is loading data as a full load. this same datasource is pulling data from these two R/3 Source system i.e. A and B. Now My problem is I want to remove earlier data from the same datasource from cube before new data arrives in the cube.
There are settings to be done at infopackage level, I want to know what setting shall I do so that only source system relevant data get deleted from the cube before new data with full load arrive in the cube.

Hello,
you need to check:
Datasources Are the same
Source Systems Are the same
Selections are same or more comprehensive
When you start the infopackage manually, it will ask you to confirm deletion of data packages.
BR
Ondrej

Similar Messages

  • Request Deletion from Write-optimized DSO

    Hello,
    With the new Write-optimized technology, it is possible to delete manually "older" requests from the W-O DSO.
    Could anyone of you think of an automated process to delete "old" requests from a W-O DSO (not the entire content , the most recent should still be available.
    For instance : delete everyday the request older than 7 days.
    Already checked solutions :
    - Selective deletion at the administration level of the DSO -> cannot be repeatedly scheduled
    - Copying the Selective Deletion generated program to make one's own program and schedule it (system cannot "remember" the generated program)
    - Diverse SAP Function Module -> do not work for this scenario (like RSSM_DELETE_REQUEST, only for cubes, RSSM_PROCESS_REQUDEL_ODSO or    RSSM_DELETE_REQUEST, where you need to specify the Request number
    - We do not want to include a delete job in a routine at the Transformation level.
    - We do not want to complicate the Data Model by creating a new intermediate DSO allowing to flush the DSO at each load..
    Any other ideas??
    We are on Version 7.0, SP 13.
    Many thanks!
    amanda

    Hi ,
    We have worked on similar business requirement .We wrote a report program in SE38 and running it via a process chain .
    If you want i can help you to write code for same .
    It will be a two step process :
    1.deleting request from RSICCONT so that it get deleted from manage tab.
    2.deleting data from active table of that WDSO .
    Code for Program :
    data  :v_time  type c length 17,
              v_date like sy-datum .
    ( N) = 7  put no of days here before which you want to delete records
    v_date = sy-datum.
    subtract 7 from v_date.
    concatenate  v_date   sy-uzeit  into v_time.
    delete from  rsiccont where icube = wdso_name and timestamp LT v_time .
    delete from  wdso_active_table_name where rstt_tsmp LT v_time.
    It will do your work .
    Regards ,
    Jaya

  • Request Deletion from Cube stuck in execeptional state

    Hi All,
    We are stuck with a strange situation caused by below steps.
    1. We loaded a full request in cube
    2. Next day we scheduled deletion of the request from cube
    3. While deletion was in progress, we deletd the DTP through which the request was loaded
    4. DTP was deleted. Now this request stuck with status 9 (deletion started) in RSBKREQUEST table.
    5. If we check the request ID it shows deleted but we can see the request still in cube
    6. Compression of newer requests is not  happening as they are referrins issue with this stuck request
    Now I am looking for below help
    1. How can we delete the request from cube now
    2. Is there any way to create the DTP with old technical name
    3. Can we compress the request with this request in cube
    Regards
    Jitendra

    Hi Jitendra,
    1. How can we delete the request from cube now
    As suggested by raman change it to red and then try deleting.Check the backend tables also system is saying its deleted then tables should not have entries for this request.
    2. Is there any way to create the DTP with old technical name
    I think DTP technical name is decided by system so we can not not create tech names for DTP.
    3. Can we compress the request with this request in cube
    Current status of you request is not green so we can not compare it.so delete it first.
    Regards,
    Ganesh Bothe

  • Change Request deleted from Buffer

    Hello,
    If a Change request is deleted from the buffer, before it is imported into the system.
    Can we determine which user ID deleted the Change Request from the buffer?
    Thanks,
    Gautam.

    Not sure ...if u can get this info directly....However have a look into the table E070USE...Might help!

  • 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

  • Request.getParameter() from same page as HTML form

    I have a jsp page with a form. form contains a textfield, once the user submits the form, i want jsp scriptlet to get the
    value of the user input and carry out processing on it within the same page and give a result.
    problem is the first time the page is loaded, there is an error in the request.getParameter() statement since no form has
    yet been submitted i guess ....
    if i use another page ... it works ... but i want to display the information in the same page ...
    thanks

    I'd like to see an example where you'd get a NullPointerException from the line
    if(request.getParameter("foo") == null)
    but not one from
    if(null == request.getParameter("foo"))
    In either case, the only possibility for a NullPointerException would be if your request variable were null (but this would cause a NullPointerException in either method). Otherwise request.getParameter() returns a null value if the parameter does not exist, but will not throw a NullPointerException.

  • Manage MetaData from same photos in different formats like it was one

    For example - I import photos in RAW and than export in into JPEG. Id like to manage them later like one photo. Now When I want to see also the JPEG I need to import it once again - so I have the same photo twice in different format. When I change metadata I want automatically to change it in both formats. Something like stack into one photo, but with this future - when I change metadata - it will change in both.

    Hi Xiaojing,
    Thank you for your answer. It is useful.
    The problem is: My application is not going to play music or video, it just needs to browse over the disk and create a list of available music files including info like song name, album, artist. All this info is kept in meta-data. Some users can have a lot of music of their computers. That's why I don't want to load the whole file and wait for onMetaData event - it can take a long time. I just want to read the meta-data from the file, but not to load the all file as I need for listening the music of playing the movie.
    I already applied extracting meta-data for MP3 files exactly the way you mentioned, it works fine. I only have to wait for Event.ID3 – I implemented Timer to wait until all my files are processed. Probably, if user has a lot of music on his computer, it will take a lot of time.
    I can try to read AAC the way you advice.
    I am really looking for implementation of your advice for reading the music file as a ByteArray and extracting meta-data. In this case we don't need to load all the file, but just to read part of it.
    Do you have some code implementation?
    Thank you again for your response,
    Elena

  • Routing JMS message from same queue to different channels.

    From a given adapter module, is there a way of calling different communication channels?
    The scenario: The sender of the data is JMS. One single queue contains desperate text format. Based on the content of the first 4 characters , PI has to parse it differently in its own corresponding MT. The target IDoc structure remains the same. I have multiple messageTransformBeans set up, one for each MT assuming that the data would arrive in different JMS queues. However since the data is now all heaped on to a single queue, the challenge of routing the data now lies in SAP PI.
    HowTo - Send Test Messages to the Adapter Engine (to an Integrated Configuration) - This solution does send message directly to the IE (using 7,1), but not to the adapter engine where the messageTransformBeans exist.
    Any solid pointers in the direction will be really helpful.
    Regards,
    Keerti

    Hi,
    you can go for end to end testing.
    if jms not available use file adapter in the sender side and fetch the text file and test it.
    Regards,
    Muni

  • Delta Request deletion from info object

    Hi,
      We are loading 'DELTA's' for master data to an info object.
      Last night delta was failed due to idoc error.
      how can i delete the delta request from the info object and re do the delta again...
      I inserted the info object as data target so that i can get an option of manage on context menu...but when i did that there are no requests show in the manage of info object
    how can i delete failed data request from an info object and re do the delta  again
    Thanks

    Hi BW KING,
    An infoobject can be a data target and also use direct update. Are you loading using an InfoSource? Check where you have the load infopackage, if it's under an infosource, you can do that. If you have your infopackage under the infoobject "icon" (without update rules), then you don't have the option to manage the loads.
    Hope this helps.
    Regards,
    Diego

  • Transport request deleted from buffer how to retain it?

    Hi geeks please help me.
    As the support package upload,i have found that some transport request request are blocking the support package upload.The error issued was Queue_not_empty .I went to command prompt to get the list of transport request with status "will not be import because it is tagged".
    then to remove them from the buffer I executed commands
    tp addtobuffer <tr.request> <SID> pf=<path of tp profile> U1 tag=SPAM
    tp delfrombuffer <tr.request> <SID> pf=<path of tp profile> tag=SPAM
    .But now I see the transport request in the queue is in "RED" status.
    I need to retain the transport request and reimport it.Is there any way to do that?
    I have both K-file and R-file corresponding to this requests in cofile and data directories respectively.
    Regards
    Syamkrishnan

    Hi Syamkrishnan,
    just copy the cofile and data file in the transport directory, then go to STMS click on Extras -> Other requests -> Add and add the transport to the queue.. then just reimport.
    Hope this help
    Juan
    Please reward with points if helpful

  • Load Text and Transaction from same DataSource

    Hi,
    I have a datasource i generated using DB COnnect.
    In that datasource i have (among others) the Fields employee id and employee name.
    I would like to use that datasource to load employee name as the text of my Zemployee infoobject i created.
    Is it possible, or a new datasource is a must here?
    Regards,
    Gili

    Hi Gilad,
    This will be possible if you enable your char as an InfoProvider and allow flexible update. Then you can create update rules from this transactional data InfoSource to your InfoObject. We are using this in more than one scenario.
    Hope this helps...

  • Users from same OD have different group memberships on each client

    Hello -
    I am getting the dreaded "This user can not login because an error occurred" when a network user tries to log in.
    Oddly - on some clients he can log in, but not others.
    I have checked the open directory settings in directory utility on each client machine and they are identical.
    But typing id <username> on each of the clients gives me different results :
    Server
    id: bensmith: no such user
    *Client machine that works (iMac)*
    Office-iMac:~ apndavies$ id bensmith
    uid=1040(bensmith) gid=20(staff) groups=20(staff),1027(family),103(com.apple.sharepoint.group.2),404(com.apple.s harepoint.group.7),402(com.apple.sharepoint.group.6),216(com.apple.access_loginw indow),107(com.apple.sharepoint.group.5),1033(mobileaccounts),62(netaccounts),12 (everyone),401(com.apple.sharepoint.group.3),403(com.apple.sharepoint.group.4),1 01(com.apple.sharepoint.group.1)
    *Client machine that won't allow network users to login*
    Study-Mac-Mini:~ apndavies$ id bensmith
    uid=1040(bensmith) gid=20(staff) groups=20(staff),1027(family),1033(mobileaccounts),62(netaccounts),12(everyone) ,101(com.apple.sharepoint.group.1),216(com.apple.access_loginwindow)
    Have I got a problem with Open Directory? Surely the results of the id command should be identical?
    Many thanks,
    Andrew

    Hi Tim -
    Yes it is. Sorry - was getting a bit desperate this morning.
    Problem now solved - for those with the same / similar issues there were two problems.
    Initially - the client machine that would not connect had it's DNS server set to my router - not my server (which is running DNS for the local LAN)
    Once I fixed that (don't have a clue why or how this setting got changed - could have been wrongly assigned my my router (Airport Express) - not sure), I noticed that Kerberos was no longer running on the server. I could connect to it via screen sharing, but I couldn't connect to an AFP share. I checked a few things, then happened to notice that my Snow Leopard server was no longer "bound" to open directory (itself) in System Preferences>Accounts>Login options.
    Fixing both of these issues resolved the problem.
    Thanks again to Tim for his help and advice.
    Regards,
    Andrew

  • Activity Costing from same resource to different cost center

    Hi everyone,
    We  need to use a manufacturing resource where it has to cost for activities for product "X" to one cost center and for activities for product "Y" to another cost center. One resource can be assigned to only one cost center
    is it possible to do in SAP or any work around ?. Any suggestion highly appreciated
    thanks !!
    Ganeshan Kalembeth

    Hi,
    u are right we can not assign .one resource to two cost centre ....i think its not possible at all..we need to create different resource for that ...product..that only i can suggest
    regards

  • Same font appears different in two systems

    The problem principally lies with transaction MM03 (Material Master - Display). The material description in "Additional Data" tab in any Material View is appearing to be of different fonts in two different client systems.
    Upon checking, I found that both systems use the same font (Arial Monospace for SAP) with fotn size of 9.
    Hence, I am not able to understand the difference in appearance of the two.
    I have tried comapring I18N settings of both the systems. Please suggest a way to get rid of this problem.
    Regards,
    Ankur

    HI,
    Font depends on client.............so first check the client
    Just check the SE73 Font download
    -Rick

  • Request full request

    Hi Gurus,
    could you please give some details on repare full request.
    what are the precautions we have to take.
    and it should be on existing infopackage or not?
    and it is again on full infopackage or delta infopackage.
    Please it is very urgent for me ,I have to do repair full request .....and iam very new to this topic.
    please respond it asap..
    Thanks in advance..
    Regards.
    Surya.

    Hi,
    Check it,
    Repair full request
    you can delete the full request from the infopackage by selecting data target tabin the infocube column you can find the do not delete push button there you define the deletion of your request by selecting deleting exiting requestthen check box full or initial data load.
    this is the correct way of deleting the previous request from infocube.
    Delta loading not possible if FULL requests already available in ODS from same datasource & souce system combination, In order to delta's FULL requests should be changed to Repair FULL full requests. Then system allows Deltas.
    Repair Full Request
    Assign points if it help's
    Thanks
    santosh

Maybe you are looking for

  • CS3 Premiere error 0xc0000409 on boot-up no matter how many times I install

    It wasn't easy finding this forum place but anyway I hope you can help me out first off I use Windows XP and it is CS3 Premiere Pro I am talking about of the Master Suite, second off I am not English and because my error was displayed in Dutch I have

  • HT1051 Unable to order Calendar from UK laptop to deliver in Ireland whilst in Ireland

    Problem solved from other posts- now, how can I delete this??

  • Menus in abap

    Hi everyone, I created a small application in abap with mini sap 6.10 and I've been trying to develop a main menu that is going to be always showing. Can't i do that? and call the same screens and reports many times from that menu? Any help will be a

  • Longs

    I'm trying to make a cursor as part of a pl/sql function. i find that if I include one value of type LONG in the output I am fine but if I need to output a second variable (by exactly the same mechanism) I get a warning about illegal use of LONG data

  • I am receiving an error message ---

    error "Mail got an error: AppleEvent handler failed." number -10000 when I run the following AppleScript. The variable theEmailAddresses contains the correct email address from the first in the group per the log command. I am new to AppleScript. The