How to remove Collected objects in BI system?

Hi all,
I am a new user of SAP BI, from the above steps I came to know how to activate remotely the Data sources. My concern is, accidently I have collected the Infoobjects from PHD source system, the system prompted me to check my authoriztion, I chose don't check. I didn't had a clear idea about how this works, the system started creating D versions of selected Infoobjects. I dont want to INSTALL those Infoobjects in BI content. I havn't done INSTALL step.
Can someone guide me on how to remove those selected infoobjects completely from BI content ? Incase if its not possible to remove, if those objects are left as it is... what kind of problem it might cause further?
Thanks
Jeeth

Hi
If you ahve not installed these, you can simply remove these collection by draging the objects to the left hand side panel.
Cheers
Chanda

Similar Messages

  • How to remove the Object from memory.

    Hello.
    Flash file that i made with Flex Builder uses memory too
    much.
    Look at the next example source code.
    var testCan:Canvas = new Canvas();
    this.addChild(testCan);
    this.removeChild(testCan);
    testCan = null;
    but just memory usage still goes up, is not freed instantly.
    so if i load the large flash files on my web browser,
    after 5 munites or something, the web browser is down.
    How to remove the object from memory immediately without
    delay?

    It's all about the Garbage Collector ..
    There is a nice write up here :
    http://www.gskinner.com/blog/archives/2006/06/as3_resource_ma.html

  • How to remove unused objects from the webcatalog In OBIEE11g

    Hi,
    I want to delete unused objects from obiee11g catalog, i know in obiee10g it's working fine (i.e: we can do it via manage catalog then delete the unused objects) is there any way to do it automatically like RPD utility --->removing unused objects from Physical layer in RPD
    fyi: I don't want to delete manualy. i need somethink like button/link to find unused objects(report,filter,folder..etc) from my obiee11g catalog.
    Thanks
    Deva
    Edited by: Devarasu on Nov 29, 2011 12:06 PM
    Edited by: Devarasu on Nov 29, 2011 3:15 PM

    Hi,
    Checked with Oracle Support team and confirmed below points
    --> incorporated into the Current product and consider as BUG it may resolve future release
    --> Currently there isnt any automatic method to remove the unused objects like reports, filters,folder etc from catalog.
    Treated as Bug
    Bug 13440888 - AUTOMATICALLY REMOVE OF UNUSED CATALOG OBJECTS FROM WEBCATALOG
    FYI:
    SR 3-4984291131: How to remove unused objects from the webcatalog in obiee11g
    Thanks
    Deva

  • How to Remove Stock (Damaged Goods) from System?? MIGO Mvmt Typ - 555

    Dear Xperts,
    I have STO Scenario, where we use MIGO for GR at receiving Plant/Depot.
    In case of Damaged Goods
        10.00 MT    (STO Qty)
      =
          9.50 MT    (Received at destination Plant/Depot)
      +  0.50 MT    (Damaged Goods)
    We receive Damaged Goods in specific SLOC (ABCD) and raise Debit Note to Transporter for that Quantity... So we get the value in the Accounting.
    But we still have this STOCK in the system...
    How to remove this stock from the system?????
    (without accounting effect.. B'coz we already have the accounting effect in the system..)
    I tried Movement Type - 555 but still it gives accounting effect...
    Any inputs..??
    Thanks & Regards,
    HP

    How to remove this stock from the system?????
    (without accounting effect.. B'coz we already have the accounting effect in the system..)
    You can use MB1A / MIGO + 551 / 553 / 555 as it was laready told by you.
    "Accounting effect" is not totally clear... If your material is valuated (and I assume it is), you cannot get rid of with w/o generating accounting document (normally).
    One idea:
    If your transporter exists in SAP as a vendor (I suppose it), you can create a return PO (PO item with return flag) and post a GI by mvt 161 to your vendor. After that your vendor (transporter) sends you a credit memo - so, in this case no scrapping is needed.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/a5/63341243a211d189410000e829fbbd/frameset.htm
    Regards,
    Csaba

  • How to remove an object on elements 12

    how to remove an object or person from photo on elements 12

    Use the quick selection tool to outline the person and then press Ctrl+J to extract the selection on to a new layer.
    You can then delete the background layer or turn off the eye symbol and add a new background image as required.
    See my tutorial at this thread:
    Re: How can i save an extracted image to be able to edit it

  • How to transport CU02 objects from one system to another?

    Hi,
    How to transport CU02 objects from one system (Development) to another (Quality)?

    You need to set up the object dependency IDOC in the partner profile.Message type is KNOMAS. The transaction to send is CLD2.

  • How to remove an object from Buffer Cache

    Hi,
    I have a simple question. How can I remove an object from the Buffer Cache in Oracle 10gR2 ?
    I am doing some tuning tasks in a shared development database, so I can't do "alter system flush shared_pool" because it will affect other people who are running their queries. So I want to remove from Buffer Cache only the objects that I know that I am the only reader. I can see the objects that I want to be removed by querying the V$BH view.
    By the way, I did some "alter system flush shared_pool" and my objects were not removed from the Buffer Cache, and they are not in the "Keep".
    Thanks In Advance,
    Christiano

    Further more, you can use CACHE | NOCACHE on table level to indicate how you want Oracle handle the data blocks of said table.
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_7002.htm#i2215507
    CACHE | NOCACHE | CACHE READS
    Use the CACHE clauses to indicate how Oracle Database should store blocks in the buffer cache. If you specify neither CACHE nor NOCACHE, then:
    In a CREATE TABLE statement, NOCACHE is the default
    In an ALTER TABLE statement, the existing value is not changed.
    CACHE For data that is accessed frequently, this clause indicates that the blocks retrieved for this table are placed at the most recently used end of the least recently used (LRU) list in the buffer cache when a full table scan is performed. This attribute is useful for small lookup tables.
    As a parameter in the LOB_storage_clause, CACHE specifies that the database places LOB data values in the buffer cache for faster access.
    Restriction on CACHE You cannot specify CACHE for an index-organized table. However, index-organized tables implicitly provide CACHE behavior.
    NOCACHE For data that is not accessed frequently, this clause indicates that the blocks retrieved for this table are placed at the least recently used end of the LRU list in the buffer cache when a full table scan is performed. NOCACHE is the default for LOB storage.
    As a parameter in the LOB_storage_clause, NOCACHE specifies that the LOB value either is not brought into the buffer cache or is brought into the buffer cache and placed at the least recently used end of the LRU list. The latter is the default behavior.
    Restriction on NOCACHE You cannot specify NOCACHE for an index-organized table.
    CACHE READS CACHE READS applies only to LOB storage. It specifies that LOB values are brought into the buffer cache only during read operations but not during write operations.

  • How to remove an object from session with JSF 2.0 + Faceletes

    hi all,
    I have a facelets page which calls a backing bean of session scope. Now when ever i click on this page i want the existing bean object to be removed from the session . In my existing jsp i have a logic something like this to remove the object from session
         <% if (request.getParameter("newid") != null) {
              request.getSession().removeAttribute("manageuserscontroller");
    %>
    Now i have to refactor my jsp to use facelets and i should not be using scriplets anymore . I did try with JSTL but the <c:remove> tag is not supported by facelets.
    Can someone help me how can i refactor this code to work for my facelets?
    I really appreciate your help in advance
    Thank you

    r035198x wrote:
    Redesign things so that the remove is done in a backing bean method rather than in a view page.Exactly that. I tend to cleanup session variables at the start and at the end of a page flow; generally the end is some sort of save or cancel action being invoked through a button but that is application specific.

  • How to remove an object lock from database in VMM?

    This seems to be a recurring issue for others as well, but the root cause might be different for each
    I am in a situation where I can't add additional disks to a VM because of running intoError (2602) "Unable to perform the job because one or more of the selected objects are locked by another job" - however, other VMs on
    the cluster are not locked and there are no other jobs running against the VM where I need to add the disks.
    Looks like a quirk in the VMM database to me - maybe an "orphaned lock"?  Would love to know how to remove this or how to handle this issue, as the recommended action in VMM doesn't really help much at all (To find out which
    job is locking the object, in the Jobs view, group by Status, and find the running or canceling job for the object. When the job is complete, try again.)  
    Why doesn't VMM at least say which job is locking the object? 

    This post is older than 30 days or we have not heard back from you. 
    Did this issue get resolved?  If so, please share with community how you resolved. 
    Otherwise, re-activate post if you still require assistance.
    o   
    Also, if you feel this is just a bug in SCVMM I recommend submitting bugs or recommendations to our connect site.  Connect offers the ability
    to have the product team directly evaluate a bug, design, or feature request.  Here is the link:
    https://connect.microsoft.com/site960
    Carmen M. Summers (MSFT) --Posting is provided "AS IS" with no warranties, and confers no rights.

  • BT Cloud. How to remove collection?

    I can remove contents from a Collection in BTCloud, but can't see where you can delete the empty collection entry.

    Alan119 wrote:
    Hi Ribblelancs
    Thanks for your reply.  Unfortunately I'm still unable to remove the empty collections.  I'm using an Apple iMac and can't find a view all files option although I can select list views in photos, videos etc but no option to check and delete collections ?
    thanks
    Sorry, my instuctions were not 100% correct (for Windows).
    In Windows you click on  "Collections" on the left, NOT all files. Go into list view if it's not already displayed. 
    You then see your collections in the main panel.
    At the top you will see the matrix symbol for "add collection". Click on "more" and a remove collection symbol will also appear. 
    It should be the same for iOS, but I only have an iPad, so unsure.

  • How to remove background object in new pages?

    How do I remove a background object on document issued from previous pages version?
    Before I could tick 'background object are selectable' or something like this... Now I cannot find anything comparable!

    Section Masters have static uneditable items on every page, really just watermarks.
    I take this back. It won't work in Layout mode documents but in Word Processor documents:
    1. Add a vertical rule with the Shapes tool.
    2. Add either 3 text boxes or a 3 row table
    3. Select all the above: Menu > Arrange > Section Master > Move Objects to Section Master/Make Master Objects Selectable
    4. Insert a Section Break on each page. It has to be a Section break otherwise editing the Master Objects will repeat on previous pages.
    This has been always the absolute worst part of Pages 5 and I really can't figure out how anyone at Apple thought this was good design.
    This was all resolved 30 years ago in PageMaker, Ready-Set-Go, and several other DTP Apps. Not to mention it worked very effectively in Pages '09.
    I admit the Captured Pages implementation in Pages '09 is less than obvious, but its function once set up is way faster than anything else I know.
    Peter

  • How to remove an object/person from a photo

    I am working on some photos. I would like to keep the background image, but remove the people or an object in it. Is there a way to do that? If yes, how?
    Also could someone tell me how to add a person to a different background (than the original picture). What are the steps or ways to do that?
    Note: I have Photoshop Elements 6 for macs

    Mary,
    Actually, this was fairly easy to do.
    1. Use the Polygonal Lasso tool to roughly select the person, then use the arrow keys to move the selection to the left:
    http://www.pixentral.com/show.php?picture=1mAX25OsXTIreIjGbi6jNTCJKFAawa0
    2. Copy/Paste the selection to a new layer (Layer 1), and use the Move tool to move this to cover the person:
    http://www.pixentral.com/show.php?picture=1psigwltAR2fAPTymGYwOOrj2CHjoK0
    3. Since the right edge of the layer did not line up I had to slightly rotate the layer. You can use the Move tool to rotate but since it was a very fine adjustment I used the Free Transform and played around with the Rotate value in the toolbar. A value of -0.5 lined things up nicely, but I also had to use the arrow to nudge the layer up a bit.
    http://www.pixentral.com/show.php?picture=1XYwyI69U8zeW9NlH6qvKZE8FNV1Hq1
    As you can see in this shot the border of the new layer was noticeable:
    http://www.pixentral.com/show.php?picture=1qlLObbtSUIzi0AbDwSqDiAkvJpTmG1
    To fix this I used the Clone tool to clone adjacent areas over the seams, as you will see in the final shot.
    4. With the new layer, some of the morter between the bricks was missing and in some cases this was noticeable. Here's an example, a brick on the bottom row in the center:
    http://www.pixentral.com/show.php?picture=1iqLEmGNSqhas7RTDguwzwOHRRsBn
    I could have used the Clone tool to clone morter from elsewhere but I found it easier to use the Rectangular Marquee tool to select morter from another brick, Copy/Paste the selection to a new layer (Layer 2), and Move this layer over the missing morter.
    Here's the result at this point:
    http://www.pixentral.com/show.php?picture=1mGexOdSQzhanpw3fvDrPVa44gzXf0
    5. The clockwork was corrupted from Layer 1, so I temporarily turned off the visibility of Layer 1 and selected on the Background layer a portion of the good clockwork:
    http://www.pixentral.com/show.php?picture=1wX1ItQO89zlpBrIRydoYlAeRkBoe9
    6. Copy/Pasted this selection to a new layer (Layer 3), moved this layer to the top of the stack and used the Move and Free Transform tools to fine-tune the position. I had to use the Eraser tool to remove some of Layer 3 which covered the "R", and also used the Clone to clean up a bit more.
    Here's the final result:
    http://www.pixentral.com/show.php?picture=1wSdbCrlRalhJWQNJq67kXHaVecd0
    Hey, I took that same picture at Niagara Falls a few year ago!

  • How to remove duplicate server entries in System Landscape

    Hi there, in our SSM 4.0 system landscape (SMSY), there are duplicate server entries (one in lowercase, the other in uppercase). How do you remove the duplicate entries, as whenever you try to delete, say, the uppercase server entry, the system tells you that it is being used in a solution etc? Thus, even though the server entries are in different cases, it still views them as the same server entry, and you cannot delete one or the other.

    Hello Bernardt,
    In smsy there is an icon "Where is used".
    I suppose you speak about a server that has been created in lowercase and again in uppercase. Until you don´t "clean" logical component, project, solution you are not going to be able to delete the entry.
    At least usually I follow this path. I don´t think there is a most "automatic" way, but who knows
    Best regards,
    Dolores

  • Tool or  idea wanted...how to remove an object in a frame

    After Effects. CC2014.xxx
    Yesterday I effectively removed a small skin mole on a close up of a hand ( in movement) by using Simple wireframe Tool. ( and key frames)
    EAsy as it was at the time... I wondered if there was a better tool or technique to do this but it actually only took me  5 minutes for the 4 second clip anyway. And it was perfect.
    Now I want to remove a wrist watch from a mans wrist ( medium shot with tilt up). Objective is to show him with a bare wrist.  ( food factory hygiene issue !!!)
    There is movement of the wrist as in picking up an object ( a biscuit on a conveyor belt)  from  foreground,  and lifting it up slightly to show to camera.
    Thoughts and ideas wanted  please.
    I cant imagine "painting and restoring it".

    Image sequence represented in these three frames.

  • How to remove 'My Printer' from XP 'System Tray' ?

    Installed MG3100 series Printer, and 'My Printer' appeared in the System Tray.
    Still want to use the printer, it works fine, but would like to remove icon link from the tray (scrnshot below).
    Possible ?

    Hello akm.
    For assistance with this particular adjustment, please contact our support group using the "Contact Us" link below for additional assistance.
    This didn't answer your question or issue? Find more help at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

Maybe you are looking for