Is it possible to Delete BP's from production system

Hi All,
Is it possible to delete old BP numbers from production system?
if yes please let me know the procedure and impact on the system.
if no please let me know ,how to prevent user from entering old BP number into order.
Thanks in advance for your help.
Regards,
Shaik

Hi Shaik,
You can delete the BP using transaction BUPA_DEL.
Just enter the number of the BP you want to delete and then execute.
Make sure that all the checkboxes on the selecton screen are clear.
In case the BP has dependencies and deletion is not alowed, you will get an error message informing you of the same.
Best Regards,
Rishu.

Similar Messages

  • 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 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.

  • 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

  • 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 release the request from production to quality

    is it possible to release the request from production to quality

    It's not allowed..
    You can move request from original server ( where a request is created ) to target server.
    Since in production server you are not allowed development work.. so u can not create req there... and u can not move req of dev server ( which were moved to prod ) from prod to quality.
    Reward if helpful
    Regards
    Pradeep

  • I have deleted one query from production server

    some one have deleted one query from production server. i would like to know who has deleted that query.
    pls let me ASAP.
    regards
    raja

    Hi,
    You can get the time stamp( when it was deleted) from table RSRDELREPORTS. Based on that time check with basis guys to get the more info.
    regards,
    raju

  • How to create a SSIS package to delete word documents from local system

    Hi All,
    How to create a small SSIS package to delete word documents from local system. Word documents might be one or two weeks ago.
    Thanks in advance for your help.

        Dim filename As System.IO.FileSystemInfo
            filename = My.Computer.FileSystem.GetFileInfo("c:\temp.doc")
            If (Now.DayOfYear - filename.CreationTime.DayOfYear) > 3 Then
                'filename.Delete()
            End If
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Deleted dtp's from quality system

    hi experts,
    i have deleted dtp's from quality system can i get them back. i want to restore my dtps back in to my system please any body can help me
    thanks and regards
    vijay

    Hi,
    It is advisable to create DTP's in development and transport across all systems.Normally if you make process chain in development and transport to QA or Prod you need to have same DTP's.Try to always synchronise metadata across all systems.You can find overwrite option in T-code STMS_IMPORT in target system.In your case you dont need to check that option. Try to collect all DTP's in new request again and transport.
    Regards
    Chandu

  • How to find who has deleted the query in Production system

    I Experts,
    I have an issue. Someone has deleted one query in Production system.
    How can i find who has deleted the query??
    I searched the ans for the same i the below threads :-
    Query deleted in production
    How to find out who has deleted the production Query
    But it didn't help me as i couldn't understand how to use the transaction SLG1.. Can Someone please explain me how can i find out who has deleted the Query..
    Regards,
    Pavan Raj

    Hello,
    Please, remember the date on which date the query has seen last time  in the production server. You can use the last date in the From date and To date would be current  date and execute the SLG1 tcode. It would list you all the logs in the Object text you can search for BEX Query designer and sub object text column you can check for delete logs options.
    Double click on the object will list you the query and name. From the user column you can find who has deleted the query.
    Might be this can help you for analysis.
    Thanks
    Geeta Sharma

  • Importing Program from Production System to DEV and QAS.

    Hi All,
    I have 3 Systems in my Landscape.
    DEV-> QAS-> PRD
    One of my Z program is running in the Production system.
    This Z program is got deleted in the DEV and QAS.
    How can I import the Program from Production System to QAS and DEV.
    Regards,
    Viji.

    hi Vijaya laxmi,
    you can goto Production system ---> SE38/ SA38 and copy the program and create the same in program using SE38 in Development system  and then transport it to Quality system.
    You can also Re-Import the Request from Production to Dev system.
    Thanks,
    Nelson
    Edited by: Nelson karunakar on Sep 18, 2008 7:15 AM

  • Issue whilel transporting from production system to quality system

    Hi All,
        I am facing issue in process chain when I transport it from production system to quality system. Process chain is related to deleting PSA logs. When transported to quality system object_type and object_name fields in display variant becomes blank. In production system it is showing 8ZXXX_CA, it should become 8ZXXX_HA in quality system.
       Thanks for your help.
    Regards,
    Shankar

    Hi,
        sorry it was frm dev system to quality system, not prod to quality.
    Regards,
    Shankar

Maybe you are looking for

  • Recovering files external hard drive

    Wasn't sure where to post this.  I haven't been on here for awhile, and I'm not used to the "new" structure. My 1TB LaCie external hard drive - which had my Time Machine backups on it (multiple ones unfortunately) no longer mounts.  I downloaded some

  • "Define New" feature for the UDF

    I have created UDFs in Item master data. I want to load each of my UDFs with the data from a Database field from an UDT. For e.g, my UDF's name is U_Size. My UDT has the following structure: Code - Name -U_Size. I want to display the values of U_Size

  • IBook and my Apple Keyboard

    Hello all! I've got an Apple external keyboard and when I plug it into my USB port and it won't recognize it. I've tried it in a hub and directly into the iBook and neither works. It did give me a messege about a power issue, but I cannot get the err

  • When I open a RAW file from my new Sony camera, how can I get it to open in Photoshop instead of Perfect Effects 8?

    When I open a RAW file from my Nikon's SD card it automatically goes to PS. I have a new Sony camera; when I open RAW photos from it, it goes to Perfect Effects 8. How can I change it so it goes to Photoshop instead of Perfect Effects 8?

  • Insert flash...how?

    I am working on a document to be distributed by PDF... PDF has flash built in, but I understand apple/quicktime dropped flash a while back. So, how do you insert a flash video into pages? I know I could insert it in the PDF document after exporting f