Is it possible to restict archived bp from search

Dear all,
In our system for some Business Partners which have more than one business partner id.
1. Is it possible to delete the inactive Business partners from the system? What is the impact if we delete.
2. We have suggested our team to archive the inactive Business partner ids, does it impact any where in the system?
3. After we archive the BP's still those are available for search
Is it possible to restrict those archived BP's from the search?
please adivise me on this.
Thanks & Regards,
Shaik
Edited by: shaik v on Jun 18, 2009 11:54 AM

Hi Shaik,
Not sure if the standard takes care of restricting archived BPs. But
BADI_CRM_BUPA_IL_SEARCH can be used to restrict BPs in a search.
Check out the standard implementations available.
If a BP is marked as archived it gets stored in BUT000-XDELE.
Also Check the Help too.
http://help.sap.com/saphelp_crm60/helpdata/en/43/12ef38e5852baae10000000a1553f6/frameset.htm
http://help.sap.com/saphelp_crm60/helpdata/en/43/0f107a9d772a84e10000000a1553f6/frameset.htm
http://help.sap.com/saphelp_crm60/helpdata/en/e0/f2683cf5e8fe67e10000000a114084/frameset.htm
Regards.

Similar Messages

  • Is It Possible To Delete Certain Clips From An Archive?

    After successfully completing an Archive, I noticed there are certain clips that I will never use and would like to get rid of them.  I realize that i don't have to import them into my Events  but don't see a reason to have them taking up HD space.  The Archive was built from a mini DV tape cassette which means they are already stored there.  Is it possible to delete certain clips from an Archive?  If so, can't figure out how to go about it.  Any help would be greatly appreciated. 

    I would try this on a small archive first and on a duplicate, just to make sure you don't damage the entire archive by using this technique.
    You can open an archive by right clicking on the archive icon and Show Package Contents. You should get a regular finder file structure. Find the files you want to discard, select them and Move to Trash.  That should be all there is to it.  I don't see where this should cause any problems, you should be able to import the files into FCPX without any problems (but** I have not tried this for myself — that's why I recommend trying this out on a duplicate archive first.)

  • Is it possible to read archive files outside of SAP?

    Hi Experts,
    I would like to read SAP archived data (*.ARCHIVE.ARCHIVING)  with non-SAP application. I already know, that data is automatically compressed (and maybe encrypted?).
    My question: Is there some possibility to read archive files outside of SAP? I suppose that would be needed to do some decompress first.
    Your help is appreciated. Thank you!
    Jan

    Hi Stefan,
    Thanks for your reply. I found some points with your hint. Some summary for others:
    460620 - Migrating archive files:
    "Archived data may have to be migrated. One solution is to perform an SLO service archive migration. You can also perform an archive migration for archive files using the Archive Development Kit (ADK)."
    153433 - Access to archived data from other logical systems
    "For data security reasons, the ADK checks whether an archive file was created in the same system and client where it is to be read. If the client, system or file key do no longer correspond to the meta data that were valid at the time of archiving, you can no longer always access the archive file, particularly for reloading. If only the system ID changes when a new installation due to a system copy is carried out, read accesses are still possible. No solution is provided in the standard system. The access to archive files from other logical systems must be taken into account and carried out in a migration project."
    Unfortunately, I still do not know if it is possible to read archived data outside of SAP.
    Best Regards,
    Jan

  • SAP Archiving - Migrating from one archive backend to another.

    Hi,
    We use SARA for archiving and the archiving system is IBM Provided Filenet Database with ACSAP middle-ware.
    From 1999 till 2009 we have archived terabytes of data into Filenet Database.
    We plan to discontinue Filenet as our choice of archiving backend system and will like to migrate all existing archived data to the new archivingsystem. We are yet to decide what new system will will move to.
    We are looking for help from SAP to answer following questions:
    1) Is it possible migrate all past data from existing archiving system to a new one?
    2) If Yes, then what is the broad approach? Does the data have to be retrieved back to SAP OR Can it be directly migrated from one backend to another one?
    Retrieving the data and reloading into another tool in my opinion would be rather cumbersome and stupid method until this is the only option.
    In Any case, at the end of day we want that all the data should be readable from SAP like before.
    3) Is there any SAP provided tool that we can use rather then going for a 3rd party product?
    4) Please guide to migration related documentation.
    Thank you in advance for your support.
    Regards,
    Chandra.

    Hello Chandra
    yes- there are ways to migrate data out of Filenet into 3rd party tool without retrieving them back through SAP. I am not aware of any SAP tool itself but we have one and could help you with this effort. Please contact me at 610 3508677 and we can discuss the possibilities.

  • Can we move archive data from Filenet to another tool

    Hi Guru's,
    we are currently archiving data from SAP to archive location in Filenet , now we are planning to move archive data to onther tool , please suggest below  thing are possible:-
    1) Keep filenet and add another tool also    
    2) Move all a from filenet to another tools and then start rest of archiving to new tool.
    Regards,
    Jeetendra

    Hello,
    I have done this process when we moved our archived data from IBM Commonstore to IXOS/OpenText as well as when we moved all of our archived images in OpenText that were stored in a jukebox and we moved them to a WORM/Hard Disk Storage (still Open Text).  But, in both cases, we were provided the necessary conversion programs from the relevant vendor (in this case Open Text).
    This process is complex and involves correctly updating mulitple internal SAP tables as well as the database entries in the new storage providor. 
    My recommendation is to work with the 3rd party solution partner where the data is going to be moved to and get the appropriate conversion programs from them.
    Best Regards,
    Karin Tillotson

  • Is it possible to pass a string from an applet to the web site?

    Hi, everybody!
    Is it possible to pass a String from an applet to a web site (as a field value in a form, an ASP variable, or anything else). Basically, I have a pretty large String that is being edited by an applet. When a user clicks on the submit button, a different page will show up which has to display the modified string. The String is pretty large so it doesn't fit into the URL variable.
    Please, help!
    Thank you so much!

    Why do you want to do this in Java?
    Javascript is the correct language for these type of situations.
    for instance:
    in the head of your html document:
    <script language=javascript type="text/javascript">
    createWindow(form){
    if(form.text.value!=""){
    newDoc = new document
    newDoc.write(form.text.value)
    newWin = window.open(document,'newWin','width=200;height=150')
    </script>
    in the body:
    <form onSubmit="createWindow(this)">
    <p>
    Enter a String:<input type=text size=30 name="text">
    </p><p>
    <input type=submit value="submit"> 
    <input type=reset value="reset">
    </p>
    </form>

  • Importing archived project from DVD

    I used burn disk to arcive a project to a DVD. That seemed to work fine.
    I then started a new project and tried to import the "archived project from the DVD and I keep getting this error:
    The file could not be imported: The file “Macintosh Hard Disk/Volumes/Media Drive/Home movies/Billie Jo awards” can’t be imported; QuickTime couldn’t parse it: -43
    So far I am unable to import this DVD or anything else into iMovie
    Any Ideas?
    David

    Your Archived DVD Project will only open in iDVD.
    To access the video you will need the burned copy of the DVD
    To import your DVD you will need a DVD ripper. I use Mac the ripper http://www.versiontracker.com/dyn/moreinfo/macosx/22715.
    If you want to only import the video (to edit or watch on your computer) chose in mode chapter extraction and select the ones you want (yes you can select them all). Then you will need to condvert the .VOB file (found in the video_TS file) to a .MOV or H264 using FFMpegX http://ffmpegx.com/download.html. If the binaries dont work just press cancel (you dont need them for this conversion). Then import your .MOV or .MP4 file into iMovie.
    That should do it
    eMac   Mac OS X (10.4.8)   1.42Ghz PPC G4

  • HT204053 the only way to creat an icloud account is with a ipad, iphone or imac. is it possible to creat the account from my windos PC? i already downladed i cloud, and i have an Apple ID but Not an Icloud account/

    the only way to creat an icloud account is with a ipad, iphone or imac. is it possible to creat the account from my windos PC? i already downladed i cloud, and i have an Apple ID but Not an Icloud account/

    Isa Garduño wrote:
    the only way to creat an icloud account is with a ipad, iphone or imac Apple computer.
    As you already knew, no, you cannot create a new iCloud account from anything but the above devices.
    http://support.apple.com/kb/HT4436

  • Is it possible to transfer music/videos from one itunes account to a separate one?  I need to give my music and videos that I bought a grandchild to her for her ipad.

    Is it possible to transfer music/videos from my itunes account to a grandchild (she will need her own account)  I bought her music and videos and let her play with my ipod touch.  Now she has an ipad.

    No you cannot transfer purchases from one account to another account. Apple does not allow it and never has allowed it.
    She can use you Apple ID on the device and switch between her ID and your ID, but that can cause problems at times and can become a bit of a pain.

  • Is it possible to download iOS  5 from one iMac and not get them totally wiped of apps and stuff. We have an iPad each and a communal email address and an iCloud address each. One iPad now is totally screwed up.

    Is it possible to download iOS  5 from one iMac on two ipads and not get them totally wiped of apps and stuff. We have an iPad each and a communal email address and an iCloud address each. One iPad now is totally screwed up.

    Thank you for your reply.
    I am somewhat new to iOS and OS having grown up with DOS and Windows. I am not familiar with IMAP and iCloud and I am not even sure which types of servers my various emails use.
    The problem I would anticipate with iCloud is that (I assume) it would limit my access to data (including mail) on the iCloud to when I happen to be logged onto the internet. I also assume(?) that large files (photos etc.) would require some time to download whenever I wish to access them from whichever device I happen to be using (I hope I am wrong about this).
    I have kept my devices to 500gb - 1TB for OS and 32gb - 128gb for iOS but since I have pretty slow WiFi (shared with DirecTV Whole Home and Netflix streaming) it is my impression that iCloud might be quite limited due to data transfer times.
    Perhaps a factor would be that I have 2 DSL lines and my main DSL line is connected to two wireless routers (to also provide WiFi in a metal building that blocks WiFi and Cellular signals)
    I may be totally wrong in my assumptions regarding iCloud. My mail is not so urgent that I need access to it instantly and I could wait until I had internet access or I can get it on my iPhone. My main concern with iCloud would be my data files (Word, Pages, Excel, Numbers etc.).
    On the other hand, if I wanted to keep my 10,000 emails that would take up a lot of iCloud memory and I don't know how to measure how much storage it would take or how to move Hotmail or even iCloud mail to iCloud.
    It may take me some time to figure this out.

  • Is it possible to control itunes dj from other computers on the same network?

    is it possible to control itunes dj from other computers on the same network?  we have a computer running itunes connected to our speakers here at work, and we'd like to be able to control it through the other comptuers on the network.  is this possible, or do you have to use iphones/ipads/etc?

    AC is corret you can do that.  It might work a bit better for you if you use a wired connection vs a wireless one for the ATV's.

  • TS4088 I have a MacBook pro that has power issues and will not start but the hardrive is fine.  I do not want to lose all of my files so I was wondering if it's possible to transfer my hardrive from a older Macbook pro to a new one if I were to purchase o

    I have a MacBook pro that has power issues and will not start but the hardrive is fine.  I do not want to lose all of my files so I was wondering if it's possible to transfer my hardrive from a older Macbook pro to a new one if I were to purchase a new one?  Also, the software is not updated as the computer hasn't worked for about 2 months. 
    Also, if it is possible to transfer the hardrive, would my iTunes music transfer as well?  It is not saved in the cloud.
    Thanks for your help, it is much appreciated.

    You computer is probably perfectly repairable, but if you want a new one anyway, it is perfectly possible to transfer the data from the faulty one.
    But it would be a mistake to simply put the old HD in the new computer.
    These are the steps:
    Remove Hard drive from faulty computer. (very easy on Unibody MBPs, do-able but not so easy on older MBPs)
    Put it in a cheap enclosure
    Connect it the new computer
    Boot up new computer.
    If the new computer has never been run before the Setup Assistant will ask if you want to import your apps, data, settings etc from either another mac, another HD connected to the Mac or a Time Machine back up.
    Obviously chose the second option (another HD connected to this Mac) and follow prompts.
    If the new computer has already been run (so Setup Assistant doesn't run when you boot it up), you will need to use Migration Assistant...or run the installer again so that Setup Assistant runs again.
    Message was edited by: Mike Boreham...added sec on line

  • Is it possible to save / extract data from a MS SQL database 2008 using lookout 6.2?

    Is it possible to save / extract data from a MS SQL database 2008 using lookout 6.2?
      Now a days we are saving / extracting data in a excel spreadsheet, but we would like to do that using a database because it is better.

    You can use ODBC connection to work with SQL Server database.
    Use SQLExec object to execute the SQL statement. Here is a KB about the SQL statement.
    http://digital.ni.com/public.nsf/allkb/4ADEEA04CD24AE0B862565E20002A16F?OpenDocument
    To write data to spreadsheet is more straightforward because Lookout has built-in spreadsheet object. But you need to write SQL statement by yourself to interact with other database.
    To read the data back is the same way. Just use "select" SQL statement to query. You can use Datatable object to query.
    The "Data Source" can be "DSN = data source name;". The data source name is configured in Control Panel->Administrative Tools->Data Sources(ODBC).
    Ryan Shi
    National Instruments

  • Is it possible to restrict the user from creating a sibling and allow him to ONLY create child nodes in DRM?

    When in a hierarchy, a user right clicks on a node to crate a new node, he has two options
    -Child
    -Sibling
    Is it possible to restrict the user from creating a sibling and allow him to ONLY create child nodes?
    Business cases:
    1. different level nodes need to have different prefixes.
    - Thus, the default prefix property definition uses the level number to assign a prefix
    - Also, a validation, to ensure the correct prefix, uses the level number
    But if the user can create a child and a sibling then the default prefix will only be right for a single case and not both.
    Thanks

    If the images are exactly the same size then make sure the layer with the mask
    is the active layer and in the other documents go to Select>Load Selection and choose
    your document with the layer mask under Source document and under channel choose the layer mask.
    After the selection loads press the layer mask icon at the bottom of the layers panel.
    MTSTUNER

  • Is it possible to do manaul posting from FI if the customer blocked

    Dear All,
    If the customer blocked in all the sales areas, is it possible to do manual posting from FI.
    Kindly clarify.
    Regards,
    Mullairaja

    hi raja,
    yes, you are right because even sales area is blocked also you can post in FI
    if it is blocked with COMPANY CODE LEVEL, then its a problem
    hope this clears your issue
    balajia

Maybe you are looking for