Delete function is hanging

Hi all;
I am trying to delete some data from few cubes using a delete function. This usually never give me any issues. But today all the other cube went fine but in one cube when I run this function its just hangs don't do anything get a message on the taskbar saying 'database selection'. I checked on SM66 under the time column it's red.
I can do this deletion by selective deletion but not sure why this is hanging up...is there anything I can do quick to check where it's hanging and for what?
thanks.

Hi Nitik,
Maybe your system needs a DB reorganization.
The data might be spread over too many DB extents.
I suggest your DB-administrator monitors what happens during deletion.
Succes,
Udo

Similar Messages

  • How I can delete add-in in windows 8.1 ,I see only enable and disable function but I don't see any add-in delete function

    hi,
    how I can delete  add-in applications in add-in applications section ,  I try to delete one but I don't see any delete function, I see only enable and disable function in the manage add-in applications wizard.
    thanks
    johan
    h.david

    Hi,
    If you want to remove the add-ins of Office 2010 programs, you need to remove it from control panel.
    For example, if you use Excel, please try to follow the link to delete the add-ins:
    http://office.microsoft.com/en-us/excel-help/add-or-remove-add-ins-HP010342658.aspx
    If I misunderstand something, please let me know.
    Regards,
    George Zhao
    TechNet Community Support

  • How do I delete documents from my iPad that were added when it ran regular Acrobat, now that it has switched to DC?  The docs are not on the cloud, and DC does not seem to have a delete function for non-cloud docs.

    I use an iPad.  It automatically switched me from old-fashioned Acrobat to DC.  How do I delete docs that were put on my iPad with the old Acrobat?  They are not in the cloud, and DC does not seem to have a delete function for them.

    Hi,
    By default, Acrobat DC for iOS displays recently viewed files.  You need to switch to other file location (such as Local, Document Cloud, Creative Cloud) to delete, rename, move, or duplicate files.
    You can switch to Local, if you would like to see the files and folders that are locally stored on your iPad.
    Would you take a look at the following document to see how you can switch to other file location and delete files?
    How to manage files in Acrobat DC for iOS
    Please let us know if you have additional questions.  Thank you.

  • Is there a way to password protect the delete function for pics/videos??

    My 2yr old toddler is randomly deleting my pics and videos on my iphone. Yes he knows how to navigate to the pics and videos on his own. I think its that shiny red delete button that catches his eye when he's bopping around form screen to screen.  I just want to disable the delete function function so that he doesnt do that anymore. I know there is the backup but that relies on me knowing when and what he deletes as I dont back up all the time.I heard Android has this feature but wasnt sure if the iPhone did. Any help would be appreciated.

    The real way to fix this problem is to obvioulsy not allow a 2 yr old to play with your $600 phone.
    Get that kid an iPod touch to play with ! 

  • Multiple message deletion functionality disappears

    My iPhones 5S with iOS 8.1 loses multiple message deletion functionality. I tap a message in communication thread, chose more options, mark messages to be deleted and push waste bin. When used a few times the waste bin is replaced with camera options and deleting multiple messages is not possible; see screenshot. In order to re-establish the functionality, I have to close the message app down and restart it. Are there any solutions or work around to this?

    Hi Kare Gronholt,
    If you are having issues with your iPhone's ability to delete multiple messages, you may want to try some things to troubleshoot.
    First, quit all running applications and test again -
    OS: Force an app to close
    Next, I would try restarting the iPhone -
    Turn your iOS device off and on (restart) and reset
    If the issue is still present, you may want to restore the iPhone as a new device -
    How to erase your iOS device and then set it up as a new device or restore it from backups - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L  

  • Delete Functionality in manual tabular form

    Hi everyone,
    I have created 2 tabular forms on the same page.everthing is working fine.Both the tabular form are able to insert and update.I am getting problem to implement the DELETE functionality in those tabular form.
    I inserted this code htmldb_item.checkbox(6, id) del in the region and i created a delete process.But i am getting (no data found) error.
    could anyone help me in solving this.
    thanks
    phani
    ===========================================================
    DELETE PROCESS:
    FOR i in 1..HTMLDB_APPLICATION.G_F01.count
    LOOP
    DELETE FROM (TABLE NAME)
    WHERE id = HTMLDB_APPLICATION.G_F06(i);
    END LOOP;
    =============================================================
    TABULAR FORM 1:
    REGION:
    select x.column1,
    x.column2,
    x.column3,
    x.column4,
    x.column5,
    x.del,
    x.cks
    from (
    select htmldb_item.hidden(1,column1) column1,
    htmldb_item.text(2,column2,10) column2,
    htmldb_item.text(3,column3,10) column3,
    htmldb_item.text(4,column4,10) column4,
    wwv_flow_item.date_popup(5,null,column5) column5,
    htmldb_item.checkbox(6,column1) del,
    htmldb_item.md5_checksum(column2,column3,column4,column5) cks
    from TABLENAME
    union all
    select htmldb_item.hidden(1,null) column1,
    htmldb_item.text(2,null,10) column2,
    htmldb_item.text(3,null,10) column3,
    htmldb_item.text(4,null,10) column4,
    wwv_flow_item.date_popup(5,null,null) column5,
    htmldb_item.checkbox(6,null) del,
    htmldb_item.md5_checksum(null,null,null,null) cks
    from dual) x
    ==================================================================
    PROCESS:
    declare
    l_cks wwv_flow_global.vc_arr2;
    j pls_integer := 1;
    begin
    -- Get original MD5 checksum
    select wwv_flow_item.md5(column2,column3,column4,column5) cks
    BULK COLLECT INTO
    l_cks
    from TABLE;
    -- Compare the original checksum, l_cks,
    -- with submitted checksum, htmldb_application.g_fcs.
    -- If they are different, raise an error.
    -- for i in 1..l_cks.count
    -- loop
    -- if htmldb_application.g_fcs(i) != l_cks(i) then
    -- rollback;
    -- raise_application_error(
    -- -20001,
    -- 'Current version of data in database has changed '||
    -- 'since user initiated update --process.');                      
    --return;
    -- end if;
    -- end loop;
    -- update
    for i in 1..htmldb_application.g_f01.count
    loop
    if htmldb_application.g_f01(i) is not null then
    update TABLENAME
    set column2= htmldb_application.g_f02(i),
    column3 = htmldb_application.g_f03(i),
    column4 = htmldb_application.g_f04(i),
    column5 = htmldb_application.g_f05(i)
    where column1 = htmldb_application.g_f01(i);
    else
    if htmldb_application.g_f03(i) is not null then
    insert into TABLE
    (column2,
    column3,
    column4,
    column5
    values
    (htmldb_application.g_f02(i),
    htmldb_application.g_f03(i),
    htmldb_application.g_f04(i),
    htmldb_application.g_f05(i));
    end if;
    end if;
    end loop;
    end;
    I created the other tabular form on the same page with
    htmldb_application.g_f11(i)
    htmldb_application.g_f12(i)
    htmldb_application.g_f13(i)
    htmldb_application.g_f14(i)
    used the same code.

    Have you got any response on this? I would like to know how to do it too. I am trying to implement a manual tabular form on a page and need this functionality.
    I do know one thing. After attending the ODTUG conference last week, Raj said something about you have to process check boxes and radio groups separately from the rest of the form.
    Thanks,
    Michelle

  • OBIEE Cookies Delete function

    Hi all,
    I have a problem with OBIEE cookies and portal link.
    So, a fount this solution http://onlineappsdba.com/index.php/2011/10/22/delete-obiee-cookie-explicity-other-than-logout-call/.
    and this part:
    OBIEE Cookies Delete function needs to be added in the dashboard page .Open the Dashboard Editor and add the Cookie deletion code using java script in a text prompt and Check Contain HTML Markup.
    But I don't know the javascript function with i need put and how can I call the function when the BROWSER is closing.
    Thanks

    You can create a compound key of Cat + SubCat (concatenation in a logical column is a quick win) which will render the SubCats unique and assign that as the logical level key:
    SubCat:
    A-Basic
    A-Value Add
    A-High
    B-Basic

  • IIs it possible to retrive deleted Function Module

    Hi all,
    i just want to know is it possible to retrive deleted Function Module .
      the request is not released yet.

    Hi Sai,
    Its not possible. (Confirm by contacting ur Basis people, if they can help).
    But the following is valid only if your function module is(or was) a transportable object.
    Go to SE37, enter your function module name and create. Assign it to the same function group and have the same interface and description. Save it, activate it.
    Now go back to SE37, enter the function module name, in the menu, 'Utilities>Versions>Version Management'. Now you should see all your previous versions. Select the most recent past version. Do a retrieve and then activate it as the latest version.
    Not sure if it works. But still give it a try.
    Best Regards,
    Anjali
    Message was edited by: Anjali Devi

  • Calling delete function!

    Hi all I have a bean with my sql stuff inside! I also have a servlet calling the sql functions.
    I have written my delete function inside my bean and then called the function from the servelet. I have then called used a JSP page to excute the view all records method, using the bean. I now want to add a link that will delete the selected record, which will call my delete method from the bean! not sure how to do this? Can some one please help!
    Thanks!

    Have the JSP submit a request to the servlet to delete the records. The servlet instantiates the bean, asks it to delete the records from the database, updates the new list of available records in scope, and sends the JSP that displays all the available records back as the response.
    I think you've done this right - capture the database code in a bean, have a central servlet that handles all client requests, and let the servlet instantiate the bean to do the work. It's called Model-2 MVC. There are frameworks like Struts and Spring to help you manage it.

  • Disable Delete function on Menu in Tcode IW32

    Dear all,
    I want to disable Delete function on Menu in Tcode IW32 when the status Maintenance Order is LOCK, please help me!!!
    1. The status of a Maintenance Order is LOCK
    2. Disable Delete function

    Hi,
    Try below exits :
    EXIT_SAPLCOIH_006 : PM Order: Customer Enhancement for Exclusion of Function Codes
    Function code for Delete is : LOEA.
    Kindly check.

  • Delete function has stopped working on Thunderbird for all files

    Windows 7 Professional operating system on my laptop. Delete function in all forms was working fine until yesterday. Have failed to work out the problem.Any ideas out there?

    To diagnose problems with Thunderbird, try one of the following:
    *Restart Thunderbird with add-ons disabled (Thunderbird Safe Mode). On the Help menu, click on "Restart with Add-ons Disabled". If Thunderbird works like normal, there is an Add-on or Theme interfering with normal operations. You will need to re-enable add-ons one at a time until you locate the offender.
    *Restart the operating system in '''[http://en.wikipedia.org/wiki/Safe_mode safe mode with Networking]'''. This loads only the very basics needed to start your computer while enabling an Internet connection. Click on your operating system for instructions on how to start in safe mode: [http://windows.microsoft.com/en-us/windows-8/windows-startup-settings-including-safe-mode Windows 8], [http://windows.microsoft.com/en-us/windows/start-computer-safe-mode#start-computer-safe-mode=windows-7 Windows 7], [http://windows.microsoft.com/en-us/windows/start-computer-safe-mode#start-computer-safe-mode=windows-vista Windows Vista], [http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/boot_failsafe.mspx?mfr=true" Windows XP], [http://support.apple.com/kb/ht1564 OSX]
    ; If safe mode for the operating system fixes the issue, there's other software in your computer that's causing problems. Possibilities include but not limited to: AV scanning, virus/malware, background downloads such as program updates.

  • Lock the delete function (Trash) for contract documents

    Dear Experts,
    I have Query in SAP CLM :
    I am in need to lock the delete function (Trash) for contract documents after they have been executed. After a user sets the contract document phase at "Executed," they should not be able to click the trash icon and delete that contract document record.
    Thanks in advance.
    Best Regards,
    Iqbal

    Hi Mudit,
    we  have already  script  for Contract Document and Post Phase Change.
    I am not java expert, where to put the code for delete or inactive the trash icon in this programe, Pls Help
    // Author: ABCD
    // Class: Contract Document
    // Context: Document Lifecycle Event
    // Target: Post Phase Change
    // Imports
    import com.frictionless.api.doc.IapiDocumentLockManager;
    import com.frictionless.api.common.types.ObjectReferenceIfc;
    import com.frictionless.api.common.types.TypeFactory;
    import com.frictionless.api.contracts.ContractIBeanIfc;
    import com.frictionless.common.db.PersistentBo;
    import com.frictionless.api.doc.collaboration.*;
    import com.frictionless.api.common.log.Logger;
    import java.math.BigDecimal;
    import java.util.*;
    import com.frictionless.api.doccommon.masterdata.*;
    import com.frictionless.api.common.exception.*;
    import com.frictionless.api.ibean.IBeanIfc;
    import com.frictionless.api.ibean.IBeanHomeIfc;
    import com.frictionless.api.contracts;
    import com.frictionless.api.usermgmt.masterdata.*;
    import com.frictionless.api.common.exception.*;
    import com.frictionless.api.common.types.*;
    import com.frictionless.api.ibean.*;
    ApplicationException ae = new ApplicationException(session);
    // Logger
    logMsg = Logger.createLogMessage(session);
    // Agreement Bean
    agreeBean = doc.getParentIBean();
    if (hasValue(current_phase))
    // Lock the legal approval and workflow fields after draft phase
    if (current_phase.equals("Draft"))
    IapiDocumentLockManager.unlockField(session, doc, "CLAUSE_CHANGE");
    IapiDocumentLockManager.unlockField(session, doc, "LEGAL_APPROVER");
    if (!(current_phase.equals("Draft")))
    IapiDocumentLockManager.lockField(session, doc, "CLAUSE_CHANGE");
    IapiDocumentLockManager.lockField(session, doc, "LEGAL_APPROVER");
    // If contract document phase is not Internal Approval
    if ((current_phase.equals("Executed")))
    agreeBean.getIBeanHomeIfc().upgradeToEdit(agreeBean);
    collaboratorList = agreeBean.getCollaborators();
    for (collabIter = collaboratorList.size(); collabIter > 0; collabIter--)
    // Get the collaborator
    collab = collaboratorList.get(collabIter-1);
    name = collab.getDisplayName();
    if (!collab.getCollaboratorRole().getDisplayName().equals("Owner") @and !collab.getRepresenting().getDisplayName().equals("Legal"))
    collaboratorList.delete(collab);
    agreeBean.getIBeanHomeIfc().save(agreeBean);
    if ((current_phase.equals("Internal Approval")) @or current_phase.equals("Legal Approval"))
    agreeBean.getIBeanHomeIfc().save(agreeBean);
    agreeBean.getIBeanHomeIfc().downgradeToView(agreeBean);

  • Attachment & delete function

    Dear All,
    Has anyone have idea about ATTACHMENT option in oracle application
    1. i want to know is there any way we can restrict size limit for attachment upload in oracle application.
    Attachment is a function in oracle application.
    2. There is one more option is "DELETE" function in oracle application toolbar. i want to know how to disable DELETE option for ATTACHMENT function.
    thanks

    Hi,
    1. i want to know is there any way we can restrict size limit for attachment upload in oracle application.
    Attachment is a function in oracle application. See these documents.
    Note: 604458.1 - How to Limit The Attachment File Size?How to Limit The Attachment File Size?
    Note: 605377.1 - How To Set A Maximum File Size For Attachments?
    Note: 739643.1 - Is There A File Size Limit For EBS Attachments
    2. There is one more option is "DELETE" function in oracle application toolbar. i want to know how to disable DELETE option for ATTACHMENT function.See (Note: 743490.1 - Customization in Oracle Applications).
    Regards,
    Hussein

  • Illogical delete function

    Hello Experts,
    I have the following versions:
    Versions:   Actual (1), Plan (2), Backup of Plan (2A).
    Years :      2005   ,     2006   ,   2006
    I have a delete function with selection conditions using year and version.
    The deletion is based on year variable and version variables for the different versions. Year & version Variable combinations form several selection criterias Variable offets for years are used to derive for years 2005, 2006, 2007. Version variables are derived from user variable input.
    The deletion is to delete version 2A only. However, when executed, the deletion deletes version 1 as well.
    On 1 other occasion, the deletion worked correctly by only deleting the intended version 2A. Version 1 still intact.
    Has anyone encountered such a strange phenomenon?
    I checked each step very carefully from variables entered to tracing the execution. The deletion seems illogical to me as the delete function somehow deleted
    a version not intended for deletion. The other version variables are blank, not set with any version. So, it should not cause the deletion.
    If you understand my problem, I hope you can hint me how such situation can occur.
    Thanks !!!
    Regards,
    Pascal Gabin

    Hi Pascal,
    Try executing the Parameter group for the Planning Function with Trace. It should help drill down to the records being selected by the function, and look into the problem.
    Hope it helps.
    Regards
    Anurag

  • Disable Delete Function for Assets

    Hi all,
    Is it possible to block the Delete function from ALL assets for specific user roles only while still allowing other specific user roles to use it?

    Hi,
    Try below exits :
    EXIT_SAPLCOIH_006 : PM Order: Customer Enhancement for Exclusion of Function Codes
    Function code for Delete is : LOEA.
    Kindly check.

Maybe you are looking for

  • Problem while covnerting menu from 4.5 to 6i and 10g

    Hi, I have a .mmt file. I converted it to mmb in 4.5 and used f60genm command to upgrade from 4.5 to 6i. I get and error FRM-10043 Cannot open file. I can open the mmb and compile it. But I cannot convert mmb to mmt in 6i thru designer also. Can any

  • Help!! I plug in my ipod and nothing happends!! Help please!?!?

    I plug in my ipod an nothing happens how can i fix it?

  • Wrong charset in jar file

    I'm using NetBeans 6.7.1, Firebird 2.1 with UTF8 charset. "jdbc:firebirdsql:localhost:erpdebug?sql_role_name=TENDERING;lc_ctype=utf8" All works fine until program inside NetBeans. When jar file starts outside IDE - all non-English characters becomes

  • 10g Listeners

    What configuration files will tell me if our 10g Listener has: A password set? ADMIN_RESTRICTIONS turned on? Listener Logging turned on? For a 10g Listener, should we have all the above set/turned on, or is a Listener password not really necessary? A

  • CS4: conflict with third-party plugin

    Hi We face the issue that our plugin conflicts with an existing closed-source plugin. We use a unique developer ID and I believe that all declarations in our plugin are correct. My question; how can I get indesign to yield more informative error mess