Delete requirements in mass

Dear all,
Is it possible to delete the customer independent requirments in mass. In MD83 i have a lot of CIRs.I need to ddelte them in mass as the situation demands it.
please tell me how come it s possible.
karthick

Hello,
try MD74.
Regards,
Romé

Similar Messages

  • TS3899 I have just up dated my iphone 5s to iOS7 - i now have 8310 emails in my inboxes - how do i delet them on mass & how do i restrict the number of recent emails in my inboxes?

    Can anyone help? - uodated to iOS7 and now have 8310 emails - how do i delete them on mass & how do i restrict emails in my inboxes to the most recent 250?

    Hey iphoneboy16
    Create a Shared Photo Stream to get any missed photos that did not make it into the Photo Stream. Remember, when you turned on Photo Stream it will start to copy new photos taken at that point in time. It also only holds the pictures for 30 days and up to 1000 photos.
    iCloud: My Photo Stream FAQ
    http://support.apple.com/kb/HT4486
    iCloud: Troubleshooting iCloud Photo Sharing and Shared Photo Streams
    http://support.apple.com/kb/TS4379
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Deleting folders in mass

    Is there a way to delete folders in mass without sitting and clicking on the dialog box for each folder?

    Mark, if you have a bunch of folders you want to remove from LR's Folder list (but not delete them - and I assume the folders are not empty), assuming this is an infrequent operation - you could go external to LR and COPY the folders to a temp location using your file browser, then delete the original folders. Next go into LR and click on one of the folders; that should remove it and all the others from LR's Folder list. Finally, go back to the external file browser and move the folders back to where you want them.
    Like I said, you don't want to do this too frequently, it's a pain. BTW, this is on a Mac, so the Windows version may behave differently. In the end, unless you have MANY folders to remove from LR's list, it's probably just as fast to click each folder and choosing delete (this removes from LR, but does not delete), one folder after another.
    (I did try MOVING the folders using a file browser to another drive, but in LR, it followed them to the new location. That's why I suggest COPYING the folders then deleting the originals.)
    - Pierre

  • Delete contacts in mass?! No brainer.

    Can somebody explain how to delete contacts in mass? As far as I know it is not a capability on the iPhone. Apple- please make it happen. With the crossover duplications from social media applications this feature is a must have.

    Do it on the computer your iPhone is synched to.

  • I have 1,400 items in my in-box and would like to delete them en masse. Is there any way to do this without deleting them individually? Thank you

    I have 1,400 items in my in-box and would like to delete them en masse. Is there any way to do this without deleting them individually?

    Select the Inbox folder to see emails.
    click on first email to get focus.
    Hold down 'Ctrl' key and press 'A' key
    This will highlight /select all emails.
    they will appear as conversations in the Message Pane
    Clickon Delete.
    when it has finished - you do have a lot of emails :)
    Right click on Inbox and select 'compact' - this removes all marked as deleted emails.

  • Our Client gave a requirement to mass update the additional attributes in Install base for instances in Release 11i.

    Hi,
    Our Client gave a requirement to mass update the additional attributes in Install base for instances in Release 11i.
    So I tried the below code to update:
    But getting the error:
    The Object Version Number passed does not match with the one existing in Installed Base tables.
    Can any one please help how to fix it.
    Code:
    declare
    x_instance_rec CSI_DATASTRUCTURES_PUB.INSTANCE_REC;
    p_ext_attrib_values CSI_DATASTRUCTURES_PUB.EXTEND_ATTRIB_VALUES_TBL;
    p_party_tbl CSI_DATASTRUCTURES_PUB.PARTY_TBL;
    p_account_tbl CSI_DATASTRUCTURES_PUB.PARTY_ACCOUNT_TBL;
    p_pricing_attrib_tbl CSI_DATASTRUCTURES_PUB.PRICING_ATTRIBS_TBL;
    p_org_assignments_tbl CSI_DATASTRUCTURES_PUB.ORGANIZATION_UNITS_TBL;
    p_asset_assignment_tbl CSI_DATASTRUCTURES_PUB.INSTANCE_ASSET_TBL;
    p_txn_rec CSI_DATASTRUCTURES_PUB.TRANSACTION_REC;
    x_instance_id_lst CSI_DATASTRUCTURES_PUB.ID_TBL;
    x_return_status VARCHAR2(2000);
    x_msg_count NUMBER;
    x_msg_data VARCHAR2(2000);
    x_msg_index_out NUMBER;
    t_output VARCHAR2(2000);
    t_msg_dummy NUMBER;
    p_validation_level NUMBER;
    p_commit VARCHAR2 (5);
    p_init_msg_lst VARCHAR2 (500);
    cursor stg_tab_cur is select instance_id,Safety_line_type from gewind_ib_iea_values;
    TYPE stg_tab IS TABLE OF gewind_ib_iea_values%ROWTYPE INDEX BY BINARY_INTEGER;
      stg_tab_var stg_tab;
      stg_tab_bin_int BINARY_INTEGER;
    BEGIN
    x_instance_rec.instance_id := FND_API.G_MISS_NUM;
    x_instance_rec.object_version_number := FND_API.G_MISS_NUM;
    p_txn_rec.transaction_id := FND_API.G_MISS_NUM;
    p_txn_rec.transaction_date := SYSDATE;
    p_txn_rec.source_transaction_date := SYSDATE;
    p_txn_rec.transaction_type_id := 1;
    stg_tab_bin_int :=0;
    For gewind_ib_iea_values in stg_tab_cur LOOP
    stg_tab_bin_int := stg_tab_bin_int + 1;
    P_ext_attrib_values(stg_tab_bin_int).instance_id :=gewind_ib_iea_values.instance_id;
    P_ext_attrib_values(stg_tab_bin_int).attribute_id := 10023;
    P_ext_attrib_values(stg_tab_bin_int).attribute_value := gewind_ib_iea_values.Safety_line_type;
    dbms_output.put_line(P_ext_attrib_values(stg_tab_bin_int).instance_id);
    dbms_output.put_line(P_ext_attrib_values(stg_tab_bin_int).attribute_value);
    csi_item_instance_pub.update_item_instance(
    1.0,
    p_commit,
    p_init_msg_lst,
    1,
    x_instance_rec,
    p_ext_attrib_values,
    p_party_tbl,
    p_account_tbl,
    p_pricing_attrib_tbl,
    p_org_assignments_tbl,
    p_asset_assignment_tbl,
    p_txn_rec, x_instance_id_lst,
    x_return_status,
    x_msg_count,
    x_msg_data);
    commit;
    -- Output the results
    if x_msg_count > 0 then
    for j in 1 .. x_msg_count
    loop
    fnd_msg_pub.get ( j , FND_API.G_FALSE , x_msg_data , t_msg_dummy );
    t_output := ( 'Msg' || To_Char ( j ) || ': ' || x_msg_data );
    dbms_output.put_line ( SubStr ( t_output , 1 , 255 ) );
    end loop;
    end if;
    dbms_output.put_line('x_return_status = '||x_return_status);
    dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
    dbms_output.put_line('x_msg_data = '||x_msg_data);
    COMMIT;
    end loop;
    END;
    Regards,
    Ravichander

    This question is Assumed Answered -- It would be great if you could share the solution with us.
    Thanks,
    Hussein

  • Deleting photos in mass

    How do I delete photos IN MASS from my device?  I have 400 photos and need to clear them off but have only found a way to delete them one by one on the device.  From what I can tell, there is no way to delete using the desktop software as well - only to sync. 

    Mark, if you have a bunch of folders you want to remove from LR's Folder list (but not delete them - and I assume the folders are not empty), assuming this is an infrequent operation - you could go external to LR and COPY the folders to a temp location using your file browser, then delete the original folders. Next go into LR and click on one of the folders; that should remove it and all the others from LR's Folder list. Finally, go back to the external file browser and move the folders back to where you want them.
    Like I said, you don't want to do this too frequently, it's a pain. BTW, this is on a Mac, so the Windows version may behave differently. In the end, unless you have MANY folders to remove from LR's list, it's probably just as fast to click each folder and choosing delete (this removes from LR, but does not delete), one folder after another.
    (I did try MOVING the folders using a file browser to another drive, but in LR, it followed them to the new location. That's why I suggest COPYING the folders then deleting the originals.)
    - Pierre

  • /sapapo/rm60rr20- Not deleting Requirements for some part numbers

    Hi Friends,
    We normally run /sapapo/rm60rr20- /sapapo/md74.....for reorganising independent requirements in SNP.
    But we found that its not deleting requirements for some part numbers. Can any one please tell me why?.
    Is this anywhere linked to master data?
    Thanks
    Krishna

    In the main SAP menu under Master Data, there is a link to look at the change documents of master data. You may want to go to product change documents and see what are the changes that were made to the products where you are unable to reorganize the PIRs. There can be some common changes that you should be able to figure out.

  • User roles were deleted for the mass change in CUA system.

    Dear Team,
    I have assigned a role to a set of users in CUA via SU10 to a specific child system, as like I have executed the task 3 to 4 times for the assignment of the different roles to a set of users and some users may repeated in each execution .
    And when I check in child system after few hours the old roles were deleted and contains the role which I have assigned in the mass change.
    It was happened only to few users not more than 20 users, then I expected that may be the users who get repeated in SU10 more than one time for the different role assignment it get impacted.
    But that is not a problem, because I verified some of the users who repeated more than one time in child system and they didnu2019t get deleted  the old roles and it was appended with the new role to the existing rights of the user.
    Still some of the IDOC were showing in SCUL transaction with Yellow signal triangle shape
    So please help me out what would be the issue.
    Kindly let me know if need more information....
    SV

    Hi,
    It is a problem related to IDOC issue. Please contact Basis Team regarding pushing of the Idocs. I am giving an over view of the steps that needs to be executed for idoc push. Please contact Basis with the same.
    Run RBDAGAIN report (se38)
    Give Idocs and save as variant.
    Now go to sm36 specify a job name and start.
    This will change the Idoc status from 02 to 30. For 03 to 30 it needs a different report. Please check and let me know if any issue. As long as idocs are not pushed properly it will give an error. At times also check the CUA user is ok or not. It gets locked at times. To know which one is the CUA user->Login to child system->su01->See the change executed by the user->Get the user name.
    Let me know if any issue.
    Regards
    Aveek.

  • Delete Contacts en Mass

    When I did a contact sync with Outlook I got an old contact file as well as a new one. Can I delete them all and start over?

    Connect your iPod to iTunes and select the "Info" tab. Scroll to the bottom in the "Advanced section and select "Contacts". Then sync. All contacts will be replaced with contacts from your computer.

  • BADI/BAPI/... for request deletion required

    Hello,
    Does anyone know if there is any BADI, BAPI or recommendable standard programme that I could use to have a request deleted (result should be the same like deleting the request in RSA1) based on the request number ?
    Thanks for any advice.
    Klemens G.

    Hello Kishore,
    Thanks for the 2 tips.
    The BAPI you are mentioning will still keep the request entry visible in the administration tab of the infocube. Can I get it out of there as well like highlighting the request and clicking the "Delete"-button (which will remove the request and delete its associated data from the cube)?
    Kind regards,
    Klemens G.

  • Delete data en masse

    Hi!
    I need delete a lot of LDAP data, how I can delete quickly?
    Regards.

    db2ldif -a myfile.ldif
    use sed or awk or perl to remove your data
    ldif2db -i mynewfile.ldif

  • Delet Requirment

    Hi,
    I am trying to change UOM for material
    I have closed all open documents for material and also stock is ZERO in all plant, but there there is some stock in RESERVATION
    how to make it zero?
    I mean I want to remove this stock from reservation how to do that?

    Dear Wish
    You can try by scraping that reservation so that it will move out from there.
    Additionally, please check this link which would be helpful to you
    [Changing Base Unit Of Measure (Material Master) |http://www.sap-basis-abap.com/mm/changing-base-unit-of-measure.htm]
    thanks
    G. Lakshmipathi

  • Mass deletion of previous demand/requirements

    Hi,
    We have migrated from Discrete to repetitive.
    But there were some dependent requirements and Production orders open.
    Every time i run mrp  i get planned orders for these requirements.
    I have checked the demand in MD62 but i could not find any demand in those dates.
    How to delete these requirements in mass or at table level.
    I have been through some links and found that it can be deleted at table level using MDPB table if yes can you tell me how to use it.
    Thanx in advance.
    Sandeep

    Try running MRP by setting up a background job during off-peak hours with the following parameters...
    Processing key            NEUPL   Regenerative planning
    Create purchase req.      2       Purchase requisitions in opening period
    Schedule lines            3       Schedule lines
    Create MRP list           1       MRP list
    Planning mode             3       Delete and recreate planning data
    Scheduling                2       Lead time scheduling and capacity planni

  • Mass deletion of dependent requirement

    hi
    Can we delete the independent requirement in mass.
    Regards,
    Anand

    Dear,
    To delete the dependent requirement you need to close the parent order i.e. the status of the order should be TECO. You can TECO the order in COHV transaction...selecet all the orders and selcet the mass processing for TECO.
    Or
    If you want to do it for a specific component
    See that the dependent requirement material i.e. the component. goto the component detailed view, here you find one check box called final issue check box, Please activate this. Then the requirement from this order will be deleted.
    please come back if required

Maybe you are looking for

  • How good is password protection in Preview App

    I want to open some PDF's in Preview, do a Print command, then when that opens select PDF and then Save as PDF.  When that window opens, I will then click on Security Options and enter a password that will be required to open the doc.  I need to then

  • Trouble Printing Address Labels

    I using the Canon Pixma MG 2120 printer. I'm using Hallmark Card Studio 2012 with Avery 5160 trying to print a page of 30 address labels. The Canon printer is making me print one label at a time even when I set it to print 30 labels. My previous prin

  • Unable to Extend the Tablespace in BW Production Server

    Hello Gurus, I am unable to extend the tablespace - PSAPODSD in our BW production server. While extending it throws this error BR1052E File odsd.data53 is already used by the database - this can cause problems in backups I am attaching the log for yo

  • Tools to capture network traffic

    Hi, I'm looking for freeware tools which run on windows platform for capturing network traffic out of an interface and then tell that which type for traffic uses how much bandwidth of the interface. for e.g HTTP uses x%, Telnet use y%

  • Modem settings for Apple external modem

    I'm not certain if my terminology is correct, but is there a way to set the packet size (MTU?) for sent transmissions for an Apple external modem? Specifically, I'd like to see what mine is set for, and change the values to perform some tests. I've s