Is it possible to delete a relationship from the BP ?

Hello experts,
I'd would like to replace a function partner SH (having the same number as the DO) by another  from R3 to CRM5.
At the begining i have in R3 this partner
AG 3901007
RE 3901007
RG 3901007
WE 3901007
In R3 by the transaction VD02, I replace the partner SH by another
After the modify i have in R3.
AG 3901007
RE 3901007
RG 3901007
WE 5000000
When the replication is done in CRM using BDOC, i can see, by the transaction BP
the new ship to party partner(5000000) .
The trouble is :
When customer access to ISA (standard version) to order product, he can select the partner 3901007 as shipping adress.
By ISA, he should have the partner 5000000 only.
Is it standard or is it a sap trouble ?
Is it possible to delete a relationship from the BP ?
I don't want to delete the BP partner, i just want to delete the relationship when then BDOC arrive in CRM.
i have found the oss note 596334 497146 757955 too but it doesn't bring me a solution.
Best regards
Christophe

Hello
When you delete a Partner Function in R/3 the corresponding relationshipdoesn't get deleted in CRM. This is standard SAP behavior and not a
bug. Reason for this behavior has been explained in Note 490454.
You can change this behavior by implementing Note 497146. Also check
the note 682427 which will help you in clearing old data.

Similar Messages

  • Is it possible to delete iCloud drive from ios8 device

    I updated my iPad to IOS8,  not thinking I said yes to iCloud drive.  I use my iPad to type minutes at a meeting and then complete them on my iMac.  Since I do not have Yosemite yet, if I type on my iPad will I not be able to access the document on my Mac?  I have all my completed documents saved on my mac but will any new ones be lost in space if they are started on the iPad?    Is it possible to delete iCloud drive from the iPad.  I know I can turn it off, but that won't help.  Maybe I will be lucky and Yosemite will come out before my next meeting.  It looks like I could probably email a copy from my iPad to my iMac as a pages doc. and then be able to open it in pages.
    Thanks
    Judy

    Hi David:
    Thanks.  I see that I could open in icloud pages and I guess work on it there.  I have never worked that way before.  Can you save it back to the mac?  or just to  iCloud?  And I have to send out copies to board members which, I guess, can be done there.  Thanks for your input.  I feel so stupid,;  I even saw the "small print".  Oh well.
    Judy

  • Can i delete an app from the icloud?

    Is there any possibility of deleting an app from the icloud?
    I've been trying,but no success...
    Please help me...
    Thanks

    You can hide it to stop it appearing as available for download. In iTunes click the cross at the top left corner when viewing your purchased items, on an iOS device swipe and tap hide when viewing purchased content in the app store app.

  • HT201812 In the past it was possible to delete songs/tones from iTunes but this no longer seems to be the case.  Is it possible to delete songs or tones if they are not duplicated - I just no longer want them in my library?

    In the past it was possible to delete songs/tones from iTunes but this no longer seems to be the case.  Is it possible to delete songs or tones if they are not duplicated - I just no longer want them in my library?

    Howdy SJHocking,
    It sounds like you want to know how to dele songs and ringtones from iTunes. Take a look at the article linked below, it’ll walk you through the process of deleting content from iTunes.
    Delete songs, playlists, or other items - iTunes Help
    If you have iTunes Match enabled, take a look at this article which will walk you through the process of deleting songs from iCloud.
    iTunes Store: How to delete songs from iCloud - Apple Support
    Cheers,
    -Jason

  • Is it possible to delete data selectively from Business content cubes

    Dear Experts,
             Requesting you to help me out to know, is it possible to delete data selectively from Business content cubes.
    When I'm trying to delete selectively from Business content cubes, the background job gets cancelled with ST22 logs stating
    A RAISE statement in the program "SAPLRSDRD" raised the exception  condition "X_MESSAGE".                                                                               
    Since the exception was not intercepted by a superior program, processing was terminated.  
    and i tried  with few more Technical content cubes but the same thing happens.
    Pls let me know how to selectively delete data from Business content cubes if it's possible?.
    Thanks in advance for your favorable assistance.
    Regards,
    Ramesh-Kumar.

    Hi Ramesh,
    Follow below steps for selective deletion:
    1.     Transaction code: Use the Transaction code DELETE_FACTS.
    2.     Generate selective deletion program:
    A report program will be generated of the given name, here .
    3.     Selection screen:
    Take the deletion program u201CZDEL_EPBGu201D to the transaction code SE38 to see/execute the program.
    After executing it will take you to a selection screen:
    As we need to carry out deletion selective on Calendar week, we need to get the screen field for the field Calendar week. For this, click on the Calendar week field and press F1.
    Click on the technical information button (marked in red box above) you will get below screen:
         ABAP program to carry out the Calendar week calculation
    Problem scenario: As stated earlier the requirement is to delete the data from the cube based on the calendar week. Thus a code must be developed such that the number of weeks should be taken as input and corresponding calendar week should be determined. This calendar week should be then passed to the deletion program in order to carry out the data deletion from the InfoCube.
         Transaction code: Use T-code SE38 in order to create a program.
    Logic: Suppose we need to delete the data older than 100 weeks.
    a.     Get the number of weeks and system date in variables and calculate the total number of days :
    lv_week = 100.      *number of weeks      
    lv_dte = sy-datum.     *system date
    v_totaldays = lv_week * 7.      *total days
    b.     Get the corresponding calendar day from the total days. This is obtained by simply subtracting the total no. of days from the system date.
    lv_calday = lv_dte - v_totaldays. *corresponding calday.     
    c.     Now in order to get the calendar week corresponding to the calculated calendar day we must call a function module 'DATE_TO_PERIOD_CONVERT'. This function module takes input as Calendar day and Fiscal year variant and returns the appropriate fiscal period.
    Get the sales week time elements
      call function 'DATE_TO_PERIOD_CONVERT'
        exporting
          i_date                      = lv_calday
          i_periv                     = lc_sales
        importing
          e_buper                     = lv_period
          e_gjahr                     = lv_year
        exceptions
          input_false                 = 1
          t009_notfound               = 2
          t009b_notfound              = 3.
      if sy-subrc = 0.
        ls_time-calweek(4)      = lv_year.
        ls_time-calweek+4(2)    = lv_period.
      endif.
    v_week = ls_boots_time-calweek.
    Note: We can pass the fiscal year variant which can be obtained from the table T009B.For e.g. here fiscal year variant lc_sales = Z2. LS_TIME will be any table with suitable time units.
    d.     Now we have obtained the required calendar week in the v_week variable. This calendar week is the week till which we need to keep the data. And older data than this week will be deleted. This deletion will be done by the deletion program
    Submitting the Data deletion program for ZEPBGC01 and key field
    SUBMIT ZDEL_EPBG WITH C039 LT v_week.
              Here the calendar week value is submitted to the deletion program ZDEL_EPBG with the screen field of calendar week.
    Hope ... this will  help you..
    Thanks,
    Jitendra

  • Is it possible to delete a folder from my Time Machine backups?

    Hi. I have Time Machine running on my office computer. It has backed up all my data since September. Problem is that I need to delete a folder from the backups that contains personal work. Is it possible to delete 1 folder from all the backups? If not, where are the instructions for erasing the Time Machine hard drive (in my case, it's Time Capsule) and starting from scratch?
    Thanks!

    Emily Kessler wrote:
    Hi. I have Time Machine running on my office computer. It has backed up all my data since September. Problem is that I need to delete a folder from the backups that contains personal work. Is it possible to delete 1 folder from all the backups? If not, where are the instructions for erasing the Time Machine hard drive (in my case, it's Time Capsule) and starting from scratch?
    Thanks!
    Yes, but never do it directly with Finder or any tool other than TM itself.
    Here's how:
    Run TM and access the folder you are interested in with the Finder that pops up when you run TM
    When you find the folder you wish to remove select it and then click the small gear in the TM Finder menu and have TM remove that folder and all corresponding folders.
    Again, never to into the TM backup directly or you can corrupt the database and make it useless.

  • Is it possible to delete a song from 5th generation Ipod?

    Hi All
    Is it possible to delete a song from 5th generation Ipod, if so, how can this be done?

    Connect your iPod Nano to your computer.  Go into iTunes & click on Music or your playlist under "Devices." 
    Delete the songs from iTunes.  Once deleting is done, eject your iPod Nano.
    Check out the following thread:  http://discussions.apple.com/thread.jspa?threadID=2276586

  • 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 delete a relationship using sdk in SCSM ? if yes how ?

    Is it possible to delete a relationship using sdk in SCSM ? if yes how ?
    If the reply was helpful or informative, please remember to mark it as answer or vote as helpful. MCITP SHAREPOINT

    Yes, you can use the SDK to remove relationships. Use the EnterpriseManagementRelationshipObject class. You can use the EnterpriseManagementGroup.EntityObjects.GetRelationshipObject* methods to retrieve collections of relationships or individual relationships.
    Then you can use an IncrementalDiscoveryData object to remove the relationship objects.
    Another method is to use an EnterpriseManagementObjectProjection to remove relationships between objects.
    Here's a blog post with the basics:
    http://blogs.technet.com/b/servicemanager/archive/2010/10/04/using-the-sdk-to-create-and-edit-objects-and-relationships-using-type-projections.aspx
    Removing/Adding activities programatically is not as straight-forward as it might seem. Each activity has a "SequenceId" property. Activities MUST remain in sequence or the workflows will give you unexpected results. For instance, if you delete
    an activity, for each activity that follows you must decrement its sequence id property. Similarly, if you add an activity, you must make sure that it's sequence ID falls in the proper order with the other activities (incrementing other activities as needed).
    As a side note, BOVI Remy, the SDK is the primary entry point to the framework of Service Manager. The powershell cmdlets lay on top of the SDK. In other words, the cmdlets were created with the SDK. The cmdlets provide an abstraction layer to
    make many SDK calls simpler. Basically, anything you can do with Powershell cmdlets, you can do with the SDK. Plus, there's even more that the SDK can do that you can't do with the Powershell cmdlets (currently). :)

  • Possible to DELETE ERASE songs FROM NANO?

    Wondering if its possible to delete/erase songs, podcasts and so on from the Nano itself? If not, are there any cool hacks that allow this? I'm not up to date on all the tricks and hacks but know some Apple people that hack all the time (even iPhone) not to use without AT&T but to add cool functions.
    Not sure where to look.
    Just want to delete items from device without computer.
    Thanks

    *Just want to delete items from device without computer.*
    I'm afraid you can't delete songs directly from the Nano, all additions and deletions have to be made through iTunes on your computer.

  • Is i possible to trigger a workflow from the creation of an event in iCal

    Is i possible to trigger a workflow from the creation of an event in iCal
    Or is is possible to create a workflow to ad events to an iCal calendar which then triggers the workflow or is combined with the ad events workflow.
    Graeme

    Hmm, nope. Not that I'm aware of. Very few apps allow you to hook scripts directly to user activity. Finder* is a notable exception. iCal's "publish" feature has the ability to auto-update after user activity, but you'll either need dot mac accounts or your own webdav server to get that working.
    I'd re-consider the idea of triggering a periodic workflow with iCal. That way if the computer is shut down or asleep, iCal will wait to run the workflow at its next opportunity. You could hide the unsightly repeating events in a second calendar so they're out of the way.
    The next best thing is to write a faceless AppleScript application with a long-duration idle handler. The user would simply add it to their login items in System Preferences. This would also resume its cycle after sleep or shutdown.
    Yet another option is to write an AppleScript that can register itself in the crontab. This has the advantage of running at a predictable time. If you're careful, you can even set the script to wake up or power on the computer as necessary.
    * Folder action scripts can be triggered when files are created, moved, or deleted, but not when they're merely updated. This probably rules out much of iCal's activities in ~/library/application support/ical/.

  • Help help help help. I just mistakenly deleted a Note from the Note App that I need.  I don't use iCloud. The only place I have the Note app is on my iPad and my iPod. What can I do? Is there any help for this?

    Help help help.
    I just deleted a note from the Notes App form my ipad3. I don't use iCloud. The only place this note was is my iPod and iPad. Is there any possible way to recover this note?????
    Thanks in advance

    Thank you sberman, yes the first thing I did was check my iPod. Instant synching works great between the iPad and iPod, so it was deleted there as well. On both devices I have my Notes account to the same account.
    I ashamedly have not synched to iTunes for ages. After I calmed down I realized that most of the info on that deleted Note I had copied and pasted from an excel file in November. I'm in the process of doing that again, and am only out the recent info.

  • My files were deleted by cc from the cloud and from my mac

    after trying to sync a pc to my creative cloud folder, almost all of my files were deleted from the cloud, and I cant acces the archive folder on the web..
    i needed to restore all the files from my trash manually and now I hope that all the files are there... Why this happened? why cant I reach my archive folder on the web? I am not going to use this service again! I believe I can sue adobe for this kind of stuff...

    Hi Yarontm,
    I'm sorry to hear about your difficulties. I'm not sure what happened. One possible explanation is if you deleted your files in a browser at creative.adobe.com/files it would in turn delete them locally from the Creative Cloud files folder if file sync was turned on. Maybe that's what happened? I hope you were able to recover everything you needed.
    - Dave

  • How can I create a fIlter to delete only "junk" from the server?

    One of my E-mail accounts is that of a major client. I handle their customer service online. Normally our protocol is to always leave all messages on the server, so for that one Thunderbird account, I have it set to never delete messages on the server.
    But the account recently started getting a lot of junk messages. Thunderbird is doing a remarkable job at marking those and placing them in the junk folder for that account. I would like to create a filter that could remove them from the server, preferably those more than "x" days old so I could monitor the activity to be sure that no important message are removed.
    I did notice that in "Filters" I can create a custom filter from a header of my choice, but can't seem to create what I want which is:
    - after mail is marked as Junk by Thunderbird to delete those messages from the server if they are older than "X" days (my choice of "X").
    - not delete any other messages from the server for that account

    I believe that did it! Thank you. I am running those changes on a secondary E-Mail address for the same job and server and it appears to be working properly.

  • Getting Error while deleting a field from the 'Z' Structure

    Hi All,
    I have created a 'z' structure in which i have 5 fields, now i want to delete one field from the structure, but it is giving me error like Invalid Change.
    Its a structure so i cant activate and adjust as we do for Tables.(se14)
    So pls help me out asap.
    thanks & Regards,
    Dhruv Shah

    Thanks for Quick Reply.
    I have not used this field in any FM/ Report.
    I have tried log off and then log on. but it make no difference.
    Now the Other scenario is that i want to change the datatype of this field to TEXT25.
    But it is also not allowing me to change because currently datatype is TEXT20.
    So now how can i change the length from 20 to 25.
    Regards,
    Dhruv Shah

Maybe you are looking for

  • GRC 10.0 Landscape and installation

    Currently we use Virsa 400_700 on ERP6.0 and planning to implement to GRC 10.0 We know GRC10.0 can be installed on NW7.02 with SP 06 and EHP2. We have below landscape question for GRC10.0 Can GRC10.0(components - AC/PC/RM) and Plugins(RTAs) be instal

  • Best 2D Graphics to Timeline workflow?

    Hello, I'm currently in the latest version of Final Cut and mostly working in the HDV 1080i format. I'm trying to figure out what the most professional workflow to import graphics and images into my timeline is. I have Photoshop and Fireworks CS3 as

  • Can't unlock phone

    When I try to input security ID, I press the button and a border appears around the button and it does not register the input on my 4s

  • Mail exchange problem with new iphone

    My home button stopped working so I went to the store and got myself a new iphone under warranty (Thanks apple). It is running version 4.3.4 Anyhow, when I got home and restore from backup, everything works beautifully. However, the only problem is t

  • Normalization Gain vs. Manual Gain

    In Final Cut 6 I've applied a gain of +12db to a clip and no audio peaks are found; but when I apply "normalization gain" to 0db (default) it only applies a gain of +7.38. If +12db produces no audio peaks, shouldn't "normalization" set it's gain at l