While open_form module is hanging when I execute my form?

Hi Gurus,
    While executing my form it's hanging, particularly in the open_form(load-form function module in it when exporting stxl values here it's hanging,
  plz give some useful solution
with regards.
Thambee.

Dear;
This is not the problem of Oracle it is because of VIRUS in your computer, because of this virus it is not execute any exe file in your PC, Plz check it.

Similar Messages

  • I get an error while changing modules pop up when opening Lr. There is no import button to use and if I try to load the default catalog I get the error message again essentially making Lr completely unusable for me! please help

    When launching Lr i get the initial screen to come up followed by an "error while changing modules" pop up. I have uninstalled and re-downloaded, followed all the suggested trouble shooting fixes and still nothing. When the app starts it has the basic info boxes but without any options in them (i.e. no import button or any buttons at all for that matter).All my other creative cloud apps seem to be working fine but Lr won't. Please help

    Ah, see, you said you had done it differently before.
    > and I tried to add a toolbox button by navigating to AcroPDF.dll.
    You'll need to reinstall Reader if the libraries aren't registered. You can't register them manually.
    Perhaps if you posted some of your code (where it creates the objects, etc.) we might be able to give you some more advice. You're sure you aren't trying to use anything outside of the AxAcroPDFLib.AxAcroPDF class?

  • Why my system hanged when i execute this block

    when i execute this query , why my oracle stop reponding
    and after some time start an ifinite output...
    declare
    v_nextval varchar2(10);
    cursor c6 is
    (select seq_a.nextval from dual);
    begin
    open c6;
    loop
    fetch c6 into v_nextval ;
    exit when v_nextval <= 10;
    dbms_output.put_line(v_nextval);
    end loop;
    close c6;
    end;
    kinkly take a look on this
    thanks

    Maybe something like this.
    >
    suppose in my table col A
    have last inserted value 258
    i have migrated database from sql server 2005 to oracle 10g
    where sequences currval is not initailized and last value is 1
    now i m creating a new sequence but i do not want to mention Startwith 258
    so how to do
    >
    SQL> select 'create sequence sequence_' || chr(level + 64)  || ' start with 1 ; ' from dual
      2  connect by level <= 2;
    'CREATESEQUENCESEQUENCE_'||CHR(LEVEL+64)||'ST
    create sequence sequence_A start with 1 ;
    create sequence sequence_B start with 1 ;
    SQL> create sequence sequence_A start with 1 ;
    Sequence created.
    SQL> create sequence sequence_B start with 1 ;
    Sequence created.
    SQL> create table table_A
      2  (
      3   sno number
      4  )
      5  /
    Table created.
    SQL>
    SQL> insert into table_a
      2  select level from dual connect by level <= 10;
    10 rows created.
    SQL>
    SQL> create table table_b
      2  (
      3   sno number
      4  )
      5  /
    Table created.
    SQL>
    SQL>
    SQL> insert into table_b
      2  select level from dual connect by level <= 20;
    20 rows created.
    SQL> with mapping_table
      2  as
      3  (
      4   select 'sequence_a' sequence_name, 'table_a' tname, 'sno' column_name from dual
      5   union all
      6   select 'sequence_b', 'table_b', 'sno' from dual
      7  ),
      8  max_value_table
      9  as
    10  (
    11   SELECT
    12       sequence_name,
    13       to_number(
    14         extractvalue(
    15           xmltype(
    16    DBMS_XMLGEN.getxml('select max(' || column_name || ') c from '||tname))
    17           ,'/ROWSET/ROW/C')) max_value
    18  FROM mapping_table
    19  )
    20  select * from max_value_table;
    SEQUENCE_N  MAX_VALUE
    sequence_a         10
    sequence_b         20
      1* select * from user_sequences where sequence_name in ('SEQUENCE_A','SEQUENCE_B')
    SQL> /
    SEQUENCE_NAME                   MIN_VALUE  MAX_VALUE INCREMENT_BY C O CACHE_SIZE LAST_NUMBER
    SEQUENCE_A                              1 1.0000E+27            1 N N         20           1
    SEQUENCE_B                              1 1.0000E+27            1 N N         20           1
    SQL> with mapping_table
      2  as
      3  (
      4   select 'sequence_a' sequence_name, 'table_a' tname, 'sno' column_name from dual
      5   union all
      6   select 'sequence_b', 'table_b', 'sno' from dual
      7  ),
      8  max_value_table
      9  as
    10  (
    11   SELECT
    12       sequence_name,
    13       to_number(
    14         extractvalue(
    15           xmltype(
    16    DBMS_XMLGEN.getxml('select max(' || column_name || ') c from '||tname))
    17           ,'/ROWSET/ROW/C')) max_value
    18  FROM mapping_table
    19  ) ,
    20  sequence_collation
    21  as
    22  (
    23   select us.sequence_name, us.increment_by, mvt.max_value from user_sequences us, max_value_Table mvt
    24   where
    25       us.sequence_name = upper(mvt.sequence_name)
    26  ),
    27  sequence_exec_order
    28  as
    29  (
    30  select 1 execution_sequence, 'alter sequence ' || sequence_name || ' increment by ' || max_value || ';' text from sequence_collation
    31  union all
    32  select 2, 'select ' || sequence_name || '.nextval from dual ; ' from sequence_collation
    33  union all
    34  select 3, 'alter sequence ' || sequence_name || ' increment by ' || increment_by || ' ;' from sequence_collation
    35  )
    36  select text from sequence_exec_order order by execution_sequence
    37  /
    TEXT
    alter sequence SEQUENCE_A increment by 10;
    alter sequence SEQUENCE_B increment by 20;
    select SEQUENCE_A.nextval from dual ;
    select SEQUENCE_B.nextval from dual ;
    alter sequence SEQUENCE_A increment by 1 ;
    alter sequence SEQUENCE_B increment by 1 ;
    6 rows selected.
    SQL> alter sequence SEQUENCE_A increment by 10;
    Sequence altered.
    SQL> alter sequence SEQUENCE_B increment by 20;
    Sequence altered.
    SQL> select SEQUENCE_A.nextval from dual ;
       NEXTVAL
            10
    SQL> select SEQUENCE_B.nextval from dual ;
       NEXTVAL
            20
    SQL> alter sequence SEQUENCE_A increment by 1 ;
    Sequence altered.
    SQL> alter sequence SEQUENCE_B increment by 1 ;
    Sequence altered.
    SQL> select * from user_sequences where sequence_name in ('SEQUENCE_A','SEQUENCE_B')
      2  /
    SEQUENCE_NAME                   MIN_VALUE  MAX_VALUE INCREMENT_BY C O CACHE_SIZE LAST_NUMBER
    SEQUENCE_A                              1 1.0000E+27            1 N N         20          11
    SEQUENCE_B                              1 1.0000E+27            1 N N         20          21Regards
    Raj
    P.S : dbms_xmlgen query from the old posts in this forum.....

  • File upload hanging when called from another form

    Hi
    I have created a file upload form from the documentation I found on metalink and the form works fine on its own. I have then implemented the form into a multi form application and when the file upload form is called from another form it hangs trying to get to the client drive so that it can pick up a file. I have tried using the 'call_form', 'open_form' and 'new_form' built-ins but the results were all the same. Can anybody help me?
    Maria

    Hello,
    This is not the support, so there are no post more urgent than other.
    Francois

  • Browser hangs when an Adobe Interactive Form is

    Hi Folks,
    I'm fairly new to ABAP (< 1 year) and am in the process of creating my first Adobe Interactive Form. In fact it will be the first IFbA at our company, when I get done with it!
    Here's the problem am facing: The Interactive Form that I'm building is called within an ABAP Web Dynpro application. If the displayType in the view is set to 'native', when the IFbA is called, the browser hangs and eventually shows the form after 5 full minutes. However, if it is set to 'activeX', it comes up with the form instantly. It does not matter what objects(WD activeX or native) I have on the form, It does the same thing.
    Our System information:
    SAP_Basis and SAP_ABA: 701 SP5
    ADS: 802.20100902045248.720952
    Adobe Reader 9
    I've looked at the SAP Note 999998 and have pretty much done what they've asked for. But, have had no progress with it. I'm pretty much at my wits end. So, somebody please help?!
    Thanks,
    CS

    Hi,
    Goto the Layout,
    Then goto Utilities->Insert WebDynproScript  and Activate.
    it will work.
    Uma

  • Error when I execute CJ88 form WBS element to AUC asset.

    Hi,
    We have one WBS element which was created to settle the values to AUC asset at the period end. Now we are in 2012 fiscal year 8th period. Asset accounting books were closed for company code of the 2011 fiscal year. This company code currency AUD and Controlling area currency is EUR.
    User has booked some expenses to this WBS element in company code currency in 2012 fiscal year 1st period. When he tried to settle in 2012 fiscal year 1st period, he is getting error like "First clear the values in previous year". when we go and see the WBS element for the 12th period of 2011 fiscal year, still there is a difference "0.01".
    When we go and see the CJI3 for this WBS element, fiscal year 2011 and period 12 still there is some 0.01 value. My doubt is why system is showing this difference in CJI3, even I have posted transactions in company code current. Client was able to close the Asset accounting books without any errors. 
    User has posted expenses debit and credit amount to this WBS element during the period in 2012 fiscal year, still system is showing 5.25 difference  for the same WBS element in CJI3 transaction code.
    Could any body help me to know why this difference is showing even we post the amounts in company code currency. Why system has not given any error in 2011 fiscal year when user was closing books for asset accounting?
    Thanks and regards,
    Yelamanda Rao.

    When closing the year, the system checks to see if Periodic Posting has been recently run, and throws error if it still needs running.  System performs other checks too, such as checks for incomplete asset records.
    However, the system doesn't check for missed settlements.  We have to manually check for settlement errors, and for pending settlements, before closing out the AA year.
    There could be an OSS Note on this topic, do not know.  You may need to reopen the fiscal year and AA year and complete your asset support transactions, settlement, periodic posting, AFAR, AFAB.
    Since the year is already audited, stay in touch with accounting and your auditor before taking these steps.
    It is possible to enter offsetting g/l entries to nullify and defer the impact of your settlement, etc., to FY12 if your requirement is to not alter the FY11 g/l balances audited.  But the AA sub-ledger will be slightly changed.
    Regards,
    Greg

  • Why does the server hang while starting up or the "csdb recover" hang when it is run?

    Sometimes after iPlanet Calendar Server crashes, the server hangs during
    startup or the csdb
    utility hangs when I execute the recover
    command.
    <P>
    One possible solution is to delete all of the .share
    files in the same directory as the
    Calendar Server database. In most cases, the server will successfully start up
    again.

    When you start up in Safe Mode various things aren't loaded at startup, Bob.
    Have a thinbk about which of the following may be involved in your own case:
    It forces a directory check of the startup volume.
    It loads only required kernel extensions (some of the items in /System/Library/Extensions).
    It runs only Apple-installed startup items (some of the items in /Library/StartupItems and /System/Library/StartupItems - and different than login items).
    Mac OS X 10.4 Tiger only: It disables all fonts other than those in /System/Library/Fonts .
    Mac OS X 10.4 Tiger only: It moves to the Trash all font caches normally stored in /Library/Caches/com.apple.ATS/(uid)/ , where (uid) is a user ID number such as 501.
    Mac OS X 10.4 Tiger only: It disables any Login Items.
    (from http://docs.info.apple.com/article.html?artnum=107392)
    Have a look at http://docs.info.apple.com/article.html?artnum=106464 for some more possibilities.
    You may find it worth while using System Prefernces/Accounts to creat a new admin user account and see if the problem persists with it. THis may help you narrow down the problem further.
    Cheers
    Rod

  • Error while executing adobe form

    Hi All,
          I am working on an adobe form in development system everything is working perfectly, But the form is giving an exception ()when executed in quality system .I did remote comparison of both layout and interface and there are no changes.
         What i observed is when i execute the form in SFP in dev system it is creating an FM , But in quality system execution of form in SFP is giving me error saying "Error in include information for function module /1BCDW/0000000007" and when i try to check this FM in SE37 it says it does not exist.
      Please let me know if anyone has faced similar issue before and if you have found the solution.
    Regards,
    Anjana Rao

    Hi friend,
    Its simple.
    The same problem exists in Smart forms also.
    What you need to do is you need to give the Adobe form name to the function module "FP_FUNCTION_MODULE_NAME".
    It will return you a name just you need to substitute that in the form call.
    Because for each and every system the function module number generated for the Adobe form differs.
    Just see the link below its for smart form, just adapt the same for Adobe forms, see my post and use the above function module instead of the one in the link [Smartform error|http://forums.sdn.sap.com/thread.jspa?threadID=2127306&messageID=11037853#11037853]
    Do this it will solve your problem.
    If any queries please revert back to me i will help you.
    Thanks,
    Sri Hari
    Edited by: srihari.kumar on Feb 13, 2012 3:52 PM

  • Flash hangs when HW acceleration is enabled in Chromium

    The system hangs for a second every now and then when playing videos in youtube. And also when I disable HW acceleration, it displays blue tint in all the videos. So, apparently, there is no way I can watch videos on youtube without a problem.
    I could use HTML5 but even while using that videos hang when I seek them. Also, there are times when even though I have joined HTML5 trial, videos are still displayed using flash player.
    Hardware details: Nvidia 320M graphics card.
    This happened after I upgraded my flashplayer. I have noticed that FF plays the videos just fine. Is there a solution to this?
    Also, due to low disk space, I generally don't keep the packages in cache so I don't have the older version in cache. I was really hoping if there is no solution to this problem, I would be glad if anyone will share older package here.
    Last edited by shadyabhi (2012-03-29 14:36:26)

    fritz wrote:
    shadyabhi wrote:I would be glad if anyone will share older package here.
    The previous version 11.1.102.63 in the  ARM-repo has security issues,
    but a version 10.3.183.18 with up-to-date security patches is available from Adobe.
    Looking at the PKGBUILD of flashplugin-10 looks like it's a 32-bit version while I am on a 64-bit system. For the time being, I have installed version 11.1.102.63-1 which is working fine for now.
    I am not really sure as to whether a new version will come or not as last month said that it will launch flash only via pepper plugin api in linux.

  • System hanging when i try to display or change or create a function module?

    Hi Experts,
    My system is hanging when i try to display or change or create a FM using SE37 transaction. I am able to execute SE37 transaction but when i give a FM name which is already existing, the system is getting hanged up. If i give a FM which is not present in the system and try to display it, it gives an error "FM does not exists". I have unistalled the SAP logon and reinstalled it again and restarted my system but still this problem is encountered.
    Can any one please help me in this issue??
    Thanks a lot in Advance!
    Regards,
    Lakshman.

    Hi Prasad,
    Go to se38 transaction and look at  UTILITIES-> Settings-> ABAP editor-> Change front-end editor to old(if it is new) and check once. Hope this solves your problem becuase this is what i have done for my problem and let me know whether the problem has been solved.
    Regards,
    Lakshman.
    Edited by: lakshman reddy G on Mar 5, 2009 5:54 PM

  • Powershell error while importing module and executing function from module

    powershell error while importing module and executing function from module
    Function called in uncertain order..
    VERBOSE: The 'Function1' command in the MyModule module was imported, but because its name does not include an approved verb, it might be difficult to find. The
    suggested alternative verbs are "Clear, Install, Publish, Unlock".
    VERBOSE: Importing function 'Function1'.
    VERBOSE: The 'Function2' command in the MyModule' module was imported, but because its name does not include an approved verb, it might be difficult to fin
    d. For a list of approved verbs, type Get-Verb.
    VERBOSE: Importing function 'Function2'.

    First of all those errors look more related to HBR, though if it worked before I would restart services then log into the planning app and then try again.
    Have you tried a different form as well one without an ampersand &.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Zen Micro (While Charging) makes my computer hang when opening/browsing My Compu

    quick question that I can't seem to find an answer for.
    everytime I open my computer to browse my hard dri'ves, it hangs for a few seconds, starts up the Zen Micro, and then shows the icons and lets me browse.
    of course this is only while charging but it is still very annyoing. I also use a quick bar that links to My Computer, and it also hangs when I access that.
    I am guessing its some sort of auto start function, but is there anyway to disable it so that the Zen doesn't turn on and slow down my computer habits?
    thanks for the replys. I can give more indepth information if needed.
    thanks
    -=kaitou=-

    lol. I figured it out in the Windows Registry.
    If anyone else is interested in cleaning up My Computer so it doesnt show Removable Zen Micro Dri've and Zen Micro, go to:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Explorer\MyComputer\Namespace\Delage Folders\
    and delete the key for Zen Micro and Removable Dri've.
    this makes it so that your Zen won't boot up everytime you go to My Computer.
    ;0 hooray!

  • Labview OI executable hangs when started.

    Hello,
    Specs:
    2 Systems running:
    Dell Precision workstations 670
    Windows 2000
    Labview 6.1
    TestStand 2.0.1
    I have compiled the Labview custom Operator Interface (slightly modified) into an executable file (SPR_TSM.EXE) which I installed on each machine. However, on one of the machines when running the executable, the application just hangs at the initial "loading" screen without even displaying the window (just a white square). Then I need to end the process from the task manager. The only way I have found to run the application is to open the SeqEdit.exe (sequence editor) which in turns opens my application because of using the TestStandLVGUIRTS server (!?). The same application runs OK in the other system. I have tried in several user accounts and the problem persists even for users belonging to the ADMIN group. All permissions in the C: driver were set to FULL CONTROL for EVERYONE.
    Please let me know what can else I do to solve this problem. Thanks for your help.

    Thanks very much for the info. It seems to be working, however not as I expected. For this machine I have the application (spr_tsm) running from a batch file that does:
    spr_tsm /RegServer
    spr_tsm
    I tried just registering the application in the command prompt and then running the executable, but it still "hangs" when called from the shortcut. On all occasions I have confirmed that the TestStandLVGUIRTS is listed in the dcomcnfg screen.Another interesting note is that when uninstalling the application there is always an error "Write permission to the Registry denied, LABVIEW Server not unregistered" but it removes TesStandLVGUIRTS from the dcom list. Again, thanks a lot for the info!

  • Web Browser Session Hangs When Opening More Than One Query

    Let me start off with the BW environment - we are on BW release 3.50 at support pack level 12. Basis component is release 6.40 at level 12.
    We have a situation where a web browser HTTP session "hangs" while trying to execute more than one query at a time. A role based menu template is used by our end-users to run queries. The end-users execute a query and while it is running, try to execute a second query. But the web browser for the second query does not become available until the first query is complete.
    The following is the detailed steps of the process:
    1. From my user menu in BW, expand the folder for Role Z: BW_REPORTING and click on SAP_BW_TEMPLATE – Web_Role_Menu. Web browser window will open.
    2. Within the ZTPL_Role_Menu_Reporting web page, select Role Z: FUNC_DEVELOPER > BW Reporting > Controlling > Profitability Analysis > Detail query. (Role Z: FUNC_TESTER can be used in this example as well, just follow the same menu path).  Click on Detail and another web browser window will open for the query selection screen.
    3. On the selection screen for the CO-PA Detail query, enter values and execute the query.
    4. While the CO-PA Detail query is executing, go back to the first opened web browser for ZTPL_Role_Menu_Reporting and go to Role Z: FUNC_DEVELOPER > BW Reporting > Controlling > Profitability Analysis > Operating Concern query. Run the CO-PA Operating Concern query while the CO-PA Detail query is still executing. The session for the Operating Concern “hangs” and does not display the selection screen until the CO-PA Detail query has completed. Once the Detail query has finished, then the second query, CO-PA Operating Concern will then display the selection screen for the query.
    Our end-users expect the second query to display the selection screen immediately with no delay. The end-users do not want to wait for the selection screen of the second query. They want to be able to execute the queries simultaneously.
    Our Basis group as tried adjusting some parameters and has implemented OSS note 853396, but the issue still exists.
    Is it a BW issue or is it an issue with MS Internet Explorer?
    Your input and suggestions are appreciated.
    Thanks.

    Hi.
    I had a somewhat similar issue earlier when I tried closing BW Query windows, it would freeze and wouldn't close. I resolved the issue by turning off some BHO (Browser help Objects) in IE.It can be done using IE>Tools>Manage Add-Ons
    Cheers
    Anand

  • Mail hangs when downloading messages from Exchange

    I've had the problem of Mail hanging when downloading from Exchange 2007, though from time to time it all works fine, suggesting all the settings are correct. Sometimes it will all work after a few forced quit- restart cycles, but this isn't reliable. Following advice on this forum I've trimmed the number of messages on the server (to c. 3,500), to no effect, and have deleted the Envelope Index file (which did temporarily alleviate the problem, but issues returned 24 hours later).
    I see several errors are reported to Console which suggest a communication problem with EWS, and in particular an "id" issue, ("id is malformed" and a illegal temporary id is being used online) though I have no idea what id this is, or whether I can influence it in any way. Here are three exemplars:
    1)
    04/01/2010 00:27:10 Mail[14116] * Assertion failure in -[EWSGateway resolvedIdStringForIdString:], /SourceCache/Message/Message-1077/MessageStores.subproj/EWSGateway.m:1548
    Temporary ids should never be used while online. Got temp-e2dbcc09-254b-4f02-9a54-05e314cb0755.
    0 Message 0x00007fff82691119 -[MFAssertionHandler _handleFailureWithPreamble:description:arguments:] + 137
    1 Message 0x00007fff8269107e -[MFAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 220
    2 Message 0x00007fff825dcb68 -[EWSGateway resolvedIdStringForIdString:] + 186
    3 Message 0x00007fff825da29d -[EWSDeleteItemsRequestOperation prepareRequest] + 380
    4 Message 0x00007fff825f1f93 -[EWSRequestOperation executeOperation] + 60
    5 Message 0x00007fff8269f347 -[MonitoredOperation main] + 229
    6 Foundation 0x00007fff8800406d -[__NSOperationInternal start] + 681
    7 Foundation 0x00007fff88003d23 ___startOperations_block_invoke2 + 99
    8 libSystem.B.dylib 0x00007fff87cb0ce8 dispatch_call_block_andrelease + 15
    9 libSystem.B.dylib 0x00007fff87c8f279 dispatch_workerthread2 + 231
    10 libSystem.B.dylib 0x00007fff87c8ebb8 pthreadwqthread + 353
    11 libSystem.B.dylib 0x00007fff87c8ea55 start_wqthread + 13
    3)
    04/01/2010 00:27:11 Mail[14116] * Assertion failure in -[EWSResponseOperation handleResponseMessage:withObject:], /SourceCache/Message/Message-1077/MessageStores.subproj/EWSResponseOperation.m: 420
    Mail did something wrong: Id is malformed. on EWS response <EWSResponseOperation: 0x1168c57a0> (EXECUTING)
    0 Message 0x00007fff82691119 -[MFAssertionHandler _handleFailureWithPreamble:description:arguments:] + 137
    1 Message 0x00007fff8269107e -[MFAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 220
    2 Message 0x00007fff825f2eb2 -[EWSResponseOperation handleResponseMessage:withObject:] + 2295
    3 Message 0x00007fff825f3592 -[EWSResponseOperation handleResponseMessages] + 240
    4 Message 0x00007fff825f30a1 -[EWSResponseOperation executeOperation] + 69
    5 Message 0x00007fff8269f347 -[MonitoredOperation main] + 229
    6 Foundation 0x00007fff8800406d -[__NSOperationInternal start] + 681
    7 Foundation 0x00007fff88003d23 ___startOperations_block_invoke2 + 99
    8 libSystem.B.dylib 0x00007fff87cb0ce8 dispatch_call_block_andrelease + 15
    9 libSystem.B.dylib 0x00007fff87c8f279 dispatch_workerthread2 + 231
    10 libSystem.B.dylib 0x00007fff87c8ebb8 pthreadwqthread + 353
    11 libSystem.B.dylib 0x00007fff87c8ea55 start_wqthread + 13
    3)
    04/01/2010 11:25:57 iCal[9798] deleting pending creates because the server failed to confirm their creation: (
    "<NSManagedObject: 0x115cf0a50> (entity: ContactMapping; id: 0x1185962f0 <x-coredata://54D56B92-4C67-416D-8B08-A79AB7FDAF86/ContactMapping/p361> ; data: <fault>)",
    "<NSManagedObject: 0x115c4e530> (entity: ContactMapping; id: 0x115ce7bc0 <x-coredata://54D56B92-4C67-416D-8B08-A79AB7FDAF86/ContactMapping/p362> ; data: <fault>)"
    Any help very welcome!

    I finally called AppleCare again (after the first rep never got back to me), and we determined that somehow my Mail Rules had become corrupted. One of them (probably thanks to OmniFocus fiddling with my Mail rules) was caught in a loop that would keep repeating until it caused Mail to crash. I had to remove the "MessageRules.plist.backup" and "MessageRules.plist" files from my ~/Library/Mail folder, and then recreate all my rules, but that did the trick.

Maybe you are looking for