ReturnEvent not get called after search more than 10 times in LOV page

hi there,
I using ADF and Jdeveloper 10.3.1.2
In my project I have a form which called a LOV page for selecting multiple records and submit button sumup the values of each selected row of LOV and return to the main form and display added value on text field.
problem is when I search records more than 10 times or more I put search criteria and select row on each time. After click on submit the value of each row is sum up return on the main form but it not reflected on main form because ReturnListener not get called .
But when I select many rows more than 10 without searching then the ReturnListener get called when it returning on main form.
So should I do so that ReturnListener get called.
Is it any bug of ADF or Jedeveloper .

Hi,
depends on whether you control the BPM task flow or not. If you do, have a look at this thread for how to debug the problem
How to debug "Attempt to validate an already invalid RegionSite"?
Otherwise, post it to the SOA forum if this is initiated by their generated code. The most common reason though is that the task flow lacks a default activity. So if the default activity is somewhat calculated dynamically in your application then this may be a reason
Frank

Similar Messages

  • Server side function not get called after dispatching cairngorm event second time on same page

    Hi All,
    I am facing a urgent issue regarding cairngorm event. Actually my page contain 3 button add,delete,save
    and  clicking of any button I do the respected functionality. For ex:
    I click the add button & on clicking of add button I fire a cairngorm evnt & after getting response from server side that the record is added
    I displayed a message that the record is added & update the data source.
    After addition of the record , with out going to other page if I perform the same functionaly(Like adding another record) on same page the cairngorm
    event not call the server side function  -  after debugging I find out that cairngorm event  reach to the corresponding excutecommand function & called that function  but it is not calling my server side function & I also din't get any error message .
    I dont know why  the server side function not get called?. similarly if I try for delete or update case the same things happend. Only for the first time it works properly but not for the second  time.
    Could any of  you please tell me why the cairngorm event not calling the server side function.
    Thank you for your kind assistance.
    Regards,
    Ujjwal

    Okay, well I think I've worked out the problem.
    In ASP.NET we would typically bind repeating controls such as DataLists and Repeaters manually using <i>Control</i>.DataBind(), because we're usually using a separate class library containing collections for our objects. Seems the SAP Table control doesn't like this approach.
    I changed the code so that the databinding is specified on the control, and call the Page's DataBind() method and it all worked fine.
    One tip: because the collection I used to bind to is in a separate class library, I receieved a <i>BC306523: Reference required to assembly MyAssemblyName...</i> message, even though I had a reference to the assembly in my project and the DLL is being properly deployed. To fix this, you must include the following directive at the top of the component's ASCX file:
    <%@ Assembly Name="AssemblyName" %>

  • Pricing Routine is not getting called after transport to quality

    Hello,
    We have created a new routine under Condition base value formulas. We have done all the required settings so that it is called while creating / changing sales order. Our routine is working fine in Development server but after transporting it to quality it is not getting called. We can see the routine in VOFM but in debugging mode the system is not able to find the routine.
    Can anybody please tell me what setting is missing in quality?
    Thanks in Advance.
    Priyanka.

    HI,
    Pls ececute this report RV80HGEN in SE38 tcode then only the routine will works for first time.
    Regards,
    kishore.

  • BAdi not getting called after applying CRM7.0 ehp1

    Hi experts,
    We applied EHP1 to our Sandbox system and now Badi: CRM_MKTPL_OL_OBJ is randomly getting called.
    I went to se18 enter the enhancement spot and once i enter the Badi Implementation I can see under
    Runtime Behavior that the implementation is active. However the description in Effect in Current Client says:Execution depends on runtime filter values
    While in our other client in which we havent applied EHP1 the Effect in Current client: Implementation is called
    I know that is just the description but I am not sure if somthing has changed with EHP1
    For both clients the implementation is active, but in the client in which we applied EHP1 the Badi is not getting called where expected.
    Does anyone please have any suggestions.
    your help is appreciated.
    thanks,
    Jeannet.

    Hi Jeannet,
    probably have a look at the filter values in the BAdI implementation as well. It says it has got filters. Maybe the BAdI is only activated for Campaigns but not Elements?
    If that does not bring the conclusion do a where used list on the interface for the BAdI. It will bring you to the place where it is called in ABAP and you see the direct cause why it sometimes is called or not.
    I implemented the mentioned BAdI on CRM 6 as well as 7 and 7.1 had no problems I can remember so far.
    cheers Carsten

  • Error messages when calling RSDRI_INFOPROV_READ for more than one time

    Hello all,
    I need to write a cube, however, before I do this I need to check whether there are already data in the target cube for a certain accounting period. This I do by reading the cube via FM RSDRI_INFOPROV_READ. The following coding is called from a running program after pushing a button on the screen.
    <i>* clear internal tables.
          CLEAR gt_range.
          CLEAR gt_sfc.
    *fill internal tables
          CLEAR ls_sfc.
          ls_sfc-chanm    = '0FISCPER'.
          ls_sfc-chaalias = '0FISCPER'.
          ls_sfc-orderby  = 0.
          INSERT ls_sfc INTO TABLE gt_sfc.
          CLEAR ls_range.
          ls_range-chanm    = '0FISCPER'.
          ls_range-sign     = rs_c_range_sign-including.
          ls_range-compop   = rs_c_range_opt-equal.
          ls_range-low      = '2007001'.
          APPEND ls_range TO gt_range.
    here I do not know what exactly to do with this flag
          lf_first_call = abap_true.
          CALL FUNCTION 'RSDRI_INFOPROV_READ'
            EXPORTING
              i_infoprov             = 'T01'
              i_th_sfc               = gt_sfc
              i_th_sfk               = gt_sfk
              i_t_range              = gt_range
              i_packagesize          = 1
            IMPORTING
              e_t_data               = lt_rd_cube
              e_end_of_data          = lf_eod
            CHANGING
              c_first_call           = lf_first_call
            EXCEPTIONS
              illegal_input          = 1
              illegal_input_sfc      = 2
              illegal_input_sfk      = 3
              illegal_input_range    = 4
              illegal_input_tablesel = 5
              no_authorization       = 6
              illegal_download       = 7
              illegal_tablename      = 8
              trans_no_write_mode    = 9
              inherited_error        = 10
              x_message              = 11
              OTHERS                 = 12.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
          lf_eod = abap_false.
          IF NOT lt_rd_cube IS INITIAL.
            RAISE target_data_found.
            EXIT.
          ENDIF.</i>
    When testing with a period for which data already exists, it runs through quite perfectly. The return table is filled and I know that data exists and I EXIT.
    However, if I press the button again (program is still running) I get an error message 'Nested call of RSDRI_INFOPROV_READ'. And this for each time I press the button.
    So I thought I should clear the flag lf_first_call. After having done so I get an error message 'SQL Error'. Funny is that I get this error only every second time the Function Module is processed. Every other time it works perfectly.
    How can I get rid of those error messages?
    PLEASE - can anybody help me?
    Many thanks in advance,
    Thomas

    Hi,
    you have something like:
    end_of_data = ' '.
    first_call  = 'X'.
      WHILE end_of_data = ' '.
            CALL FUNCTION 'RSDRI_INFOPROV_READ'
              EXPORTING  i_infoprov             = ....
                         i_th_sfc               = ...
                         i_th_sfk               = ...
                         i_t_range              = ...
                         i_reference_date       = ...
                         i_save_in_table        = ....
                         i_save_in_file         = ....
                         I_USE_DB_AGGREGATION   = ...
                         i_packagesize          = 100000
                         i_authority_check      = ...
              IMPORTING  e_t_data               = .....
                         e_end_of_data          = end_of_data
              CHANGING   c_first_call           = first_call
              EXCEPTIONS illegal_input          = 1
                         illegal_input_sfc      = 2
                         illegal_input_sfk      = 3
                         illegal_input_range    = 4
                         illegal_input_tablesel = 5
                         no_authorization       = 6
                         ncum_not_supported     = 7
                         illegal_download       = 8
                         illegal_tablename      = 9
                         OTHERS                 = 11.
      ENDWHILE.
    hope this helps...
    Olivier.

  • Appletv will not repeat a video playlist more than 3 times via AirPlay

    Trying to AirPlay a video playlist from my laptop to apple tv and have it repeat.
    It repeats on laptop but will only repeats a few times on apple tv then stops and goes to appletv menu

    Both in-coming and out-going.
    Went through all the advanced settings with MediaTemple.
    They said everything is set up correctly.
    Again, the exact same username and password combination work perfectly when used to login via webmail.
    The same settings work perfectly to login to the same account via my MBP.
    I am only having problems with this IMAP account on my iPhone.
    Because the same username and password combination work perfectly on webmail,
    MediaTemple therefore says it's an Apple problem and sends me to ask Apple.
    I acknowledge it very well could be a problem on the server side, saying there's no problem with any iPhone and IMAP because you've had no problem with the iPhone with IMAP is pretty rich. Googling iPhone and IMAP problems pulls up a lot of results, many of them leading to other people having various problems here in these very support forums. The most infuriating response is when you talk to the hardware/software vendor (here), they always say, "no problem on our end, talk to your service provider" and when you talk to the service provider they say, "no problem on our end, talk to Apple." And everyone just points fingers at the other guy.

  • ITunes will not show my purchases before October 18, when I had a different username.  How do I get the older purchases (more than 5,000) listed when my password is rejected and it won't issue a new one for that username?

    iTunes will not show my purchases before October 18, when I had a different username.  How do I get the older purchases (more than 5,000) listed when my password is rejected and it won't issue a new one for that username?

    Wow that was really quick, thank you so much.  Im not sure at all which version it was because i said it was around 4 years ago he bought it.  I know it isn't under his username, since he's a PC person (ugh) so i know its probably registered to one of our actual names.  isn't there some way to look it up since we did register it, because I'm not even sure where the disks are from when we bought it (we've moved a lot and also have two storage lockers, i know i would have kept it with other disks) but my cd rom drive is actually broken on my computer as well ( i think it got stepped on and is now squished and won't eject or run disks.)
    So is there anyway they can look up that its registered to one of our names since we did register it when we bought and installed it, or do i really have to find the disk with some sort of proof of purchase (i know there would be no receipt after all this time)
    either way, ill do what you suggested to the best of my abilities and thank you so much for answering my questions, i can't even open the program as its incompatible and find out the info from that) so I'm in a bit of a pickle and your response was so thorough and it didn't seem to be posted long enough to even write a well researched response, thanks, all the best,
    sarucia

  • Random audio interruptions. I'm getting audio snippets, no more than a word or syllable, about 20 times per hour. Emanates from Mac internal speakers. Started after upgrading to OS 10.9.5. What is it? How can I stop it?

    Random audio interruptions. I'm getting audio snippets, no more than a word or syllable, about 20 times per hour. Emanates from Mac internal speakers. Started after upgrading to OS 10.9.5. What is it? How can I stop it?

    Hello Achates:
    I did not read the rather long post. If you wish to reinstall OS X 10.4, use your software install DVD. Backup is essential. To minimize your risk, I would use an archive and install:
    http://docs.info.apple.com/article.html?artnum=107120
    In that way, you will have a fresh copy of OS X and your current settings will be preserved.
    Incidentally, I do not agree that the printer problem is best solved by reinstalling OS X. I have had HP printers for sometime and, on one occasion, had difficulty after an upgrade. HP technical support walked me through uninstalling all traces of the HP driver and then reinstalling.
    Barry

  • How do I get itunes to not list the same artist more than once?

    How do I get ituens to not list the same artist more than once?  I have tried editing the info, sorting different ways and sometimes it works and sometimes not...it's very frustrating to me to have the same artist listed multiple times...

    Setting a common Album Artist for each Album does most of the work. For deeper problems see Grouping tracks into albums.
    In general you need to make sure that all the values in the tags are used consistently. Same spelling, same capitalization, same accents, no leading, trailing, or multiple spaces, and each value of Artist, Album Artist or Album should only be associated with one value of Sort Artist, Sort Album Artist or Sort Album respectively.
    tt2

  • My ipad is locked after entring wrong pasword more than 10 times and i did not back up my ipad. now my device is not able be conncted with i tunes to restore or update, i need a help how can i unlock it?

    my ipad is locked after entring wrong pasword more than 10 times and i did not back up my ipad. now my device is not able be conncted with i tunes to restore or update, i need a help how can i unlock it?

    You have to restore the iPad by syncing to the original computer that you synced to.
    This article explains the process.
    http://support.apple.com/kb/ht1212

  • CVI Error : After more than 2000 times connect to database.

    Dear all:
    After connect to the database more than 2000 times ,CVI shows below error,( I also used the DBdiscoected to  free system resources ) 
    It seems out of memory, but when I checked the memory usage with resource track , memory leak is not found .
    and the physical memory of PC is enough .
    All of your advice is appreciated.
    Tks

    Hi -
    I just setup an ran a simple program which connected and disconnected from a databse 2500 times without error. My program was simply a loop around DBConnect and DBDisconnect, checking for errors after each call.
    Please tell us more about your system. What version of CVI are you using? Also, what is your OS? How many connections do you have open at a time?
    Also, from your screenshot, I see that it mentions "Native error code -2147024882". According to this KnowledgeBase article, native error code messages mean that an error occurred in the database itself, and the code is being passed back to CVI to be handled. From a quick google search on this error code, it appears to mean "Not Enough Storage is available to complete this operation".
    If you are able to condense your code into a version that we can run, which reproduces the error, you can post it and we'll take a look at it. Also, I would recommend looking more into the -2147024882 error in regard to the database that you are using.
    Best Regards,
    John M
    National Instruments
    Applications Engineer

  • Screen fields not getting displayed after Line 16

    Hi All,
    There is a screen exit created in IW51, now the new requirment is to add 3 more fields.  I added the fields below the exiting fields, in line number 15 , 16 &17. After executing the Tcode I could find that the field created in line 17 is not getting displayed in runtime. I have increased the screen length. The fields if moved to line numbers below 16 then they are getting displayed. Can anyone help me to find why it is not getting displayed after line 16.

    Hi,
    Can you give me the Enhancement name?
    I searched for the exits using package , but i did not find any screen exists for that IW51 Tcode?

  • Search more than one location at a time?

    Hello,
    I spend a lot of my time searching for files in our studio (I maintain the archives, backups, file systems, etc.) and I have to search across a number of locations (a number of local drives, specific locations/folders on various servers, etc.). Right now all our machines in the studio are on Tiger and I'm considering upgrading to 10.5, but the one major roadblock I've come across thus far is the ability to search various locations in 10.5. In 10.4 I was able to select multiple locations (local machine, specific folders on file and archive servers, etc.) all at once to find what I need. In 10.5 I've been unable to find a way to search more than one location at a time. Am I missing something, or has Apple removed the ability to search like this? This would be a serious roadblock for me as it would mean each search I do would have to be done 2-5 times, depending on what I'm looking for and where it could be found. I've even tried created a "search" folder which contains alias folders to all the places I'd normally search, but this didn't work.
    If anyone has any advice on how I could possible do this, it would be greatly appreciated!
    Regards,
    Kristin.

    Yea, I understand how to search in 10.5 (either using the magnify glass in top right, or command-F) but what I'm trying to figure out is how to search "This Mac" AND a folder on a server at the same time. In 10.4 you could just click on the places you wanted to search, but in 10.5 this option is gone. When you search "This Mac" (no matter how you customize your search), it only searches the Mac your on and mounted drives via USB and FireWire. It doesn't search other networked computers and servers and you have no option to search a specific folder on a networked computer or server unless you actually navigate to that folder and run the search (at which point you're only searching that folder and no longer also searching the "This Mac").
    You can customize a lot of things, but what feature that's lacking in the 10.5 searching is the ability to search specific/various locations across a network.
    In the studio it would be specific the computer I'm working on (a Mac Pro [not Macbook Pro]) and it's connected to 20 other Macs (G5 towers, Intel iMacs and Mac Pros) and two servers (Xserves). I only need to search specific locations on these systems, which you can't seem to do in 10.5. In fact, I haven't even found a way to search all the computers on the network, let alone specific locations on these computers on the network, all at once.
    I've been trying to figure this out all weekend (at home) via the following setup:
    - Intel iMac
    - External FireWire drive mounted on Intel iMac
    - G4 Server "connected" via Intel iMac
    In each of these locations I've placed the following folders:
    #1 - FIND THIS FILE - IMAC DESKTOP (on iMac desktop)
    #2 - FIND THIS FILE - FW HD (on external FW drive mounted to iMac)
    #3 - FIND THIS FILE - G4 DESKTOP (on G4 Server desktop connected to iMac)
    When I run the search, if I select "This Mac" it finds both folders #1 & #2, but NOT #3.
    The only way I can get the search to find #3 is to navigate via Finder to the G4 and run a search. But, now it's only searching the G4 Server and thus only find #3 and NOT #1 or #2.
    I can either search "This Mac" (and mounted drives) OR the G4 Server, but not both.
    At this point I have tried everything I can to get this to work, but nothing. I believe there is NO WAY to search various locations (especially various specific locations) across the network and that Apple has removed this ability in 10.5. I would LOVE if someone could prove me wrong!?
    Regards,
    Kristin.

  • Not able to load pages more than 3 times continuosly

    Hi
    JDeveloper 11.1.1.6, BPM/SOA 11.1.1.6, WLS 10.3.6, Database : MS SQL Server 2008 R2
    I am not very sure if it is related to BPM or ADF, but it looks more like an ADF error..
    We have a BPM process with some human tasks. The human tasks pages are ADF pages.
    The pages / user tasks are opened properly for a few times, but does not load after that, until we close all the browser windows.
    I am getting these errors intermittently whenever I try to open a human task page in the BPM Workspace.
    (Common observation is that for the first few times the pages open properly. After more than 3+ times of opening the same task repeatedly, I a getting these 2 errors).
    The page stops rendering after the last text '<div' tag.
    Following are the 2 exceptions we see in the logs of the server.
    We are using MS Sql Server 2008 R2 for database.
    I tried with both Type 4 XA and Non XA versions of the JDBC Connections, but still getting the same error messages.
    Can anyone please let us know if we might be missing anything.
    Thanks for any help.
    Sameer
    Exceptions
    ####<Nov 1, 2013 12:32:34 PM EDT> <Info> <JDBC> <localhost> <BPM_MY_server_2> <[ACTIVE] ExecuteThread: '12' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <6e6476ca04c34712:23175e39:14213d8a6b8:-8000-0000000000025615> <1383323554494> <BEA-001128> <Connection for pool "MYDS" has been closed.>
    ####<Nov 1, 2013 12:32:34 PM EDT> <Info> <JDBC> <localhost> <BPM_MY_server_2> <[ACTIVE] ExecuteThread: '12' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <6e6476ca04c34712:23175e39:14213d8a6b8:-8000-0000000000025615> <1383323554497> <BEA-001128> <Connection for pool "MYDS" has been closed.>
    ####<Nov 1, 2013 12:38:37 PM EDT> <Info> <ServletContext-/workflow/MYProcessesUI> <localhost> <BPM_MY_server_2> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <E5OI> <> <6e6476ca04c34712:23175e39:14213d8a6b8:-8000-0000000000025eec> <1383323917256> <BEA-000000> <JspServlet error: Servlet unable to dispatch to the following requested page: The following exception occurred:oracle.jbo.common.ampool.ApplicationPoolException: JBO-30003: Application pool com.dso.publicModel.applicationModule.CostReportInstanceAMLocal fails to check out an application module due to the following exception:>
    ####<Nov 1, 2013 12:38:37 PM EDT> <Error> <HTTP> <localhost> <BPM_MY_server_2> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <6e6476ca04c34712:23175e39:14213d8a6b8:-8000-0000000000025eec> <1383323917268> <BEA-101017> <[ServletContext@1068542008[app:MY module:/workflow/MYProcessesUI path:/workflow/MYProcessesUI spec-version:2.5]] Root cause of ServletException.
    java.lang.IllegalStateException: Attempt to validate an already invalid RegionSite:
                    at oracle.adf.view.rich.component.fragment.UIXRegion$RegionSiteImpl.validate(UIXRegion.java:993)
                    at oracle.adf.view.rich.component.fragment.UIXRegion$RegionContextChange.doChangeImpl(UIXRegion.java:1198)
                    at oracle.adf.view.rich.context.DoableContextChange.doChange(DoableContextChange.java:91)
                    at oracle.adf.view.rich.component.fragment.UIXRegion._beginInterruptibleRegion(UIXRegion.java:693)
                    at oracle.adf.view.rich.component.fragment.UIXRegion.encodeBegin(UIXRegion.java:283)
                    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:929)
                    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:406)
                    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2633)
                    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:421)
                    at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer.renderChildrenAfterHelpAndInfo(PanelHeaderRenderer.java:542)
                    at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer._renderContentCell(PanelHeaderRenderer.java:1067)
                    at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer.renderContentRow(PanelHeaderRenderer.java:490)
                    at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer.encodeAll(PanelHeaderRenderer.java:231)
                    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1396)
                    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
                    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
                    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:938)
    And
    [2013-11-01T12:17:08.807-04:00] [BPM_MY_server_2] [NOTIFICATION] [J2EE JSP-00008] [oracle.j2ee.jsp] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: sdarbha] [ecid: 6e6476ca04c34712:23175e39:14213d8a6b8:-8000-0000000000023fb4,0] [APP: MY] unable to dispatch JSP page: The following exception occurred:.[[
    JBO-30003: Application pool com.dso.publicModel.applicationModule.CostReportInstanceAMLocal fails to check out an application module due to the following exception:
    java.lang.ClassCastException: weblogic.jdbc.wrapper.PoolConnection_weblogic_jdbc_sqlserverbase_ddah
                    at oracle.jbo.server.OracleSQLBuilderImpl.setSessionTimeZone(OracleSQLBuilderImpl.java:5533)
                    at oracle.jbo.server.DBTransactionImpl.refreshConnectionMetadata(DBTransactionImpl.java:5311)

    Hi,
    depends on whether you control the BPM task flow or not. If you do, have a look at this thread for how to debug the problem
    How to debug "Attempt to validate an already invalid RegionSite"?
    Otherwise, post it to the SOA forum if this is initiated by their generated code. The most common reason though is that the task flow lacks a default activity. So if the default activity is somewhat calculated dynamically in your application then this may be a reason
    Frank

  • Can't get pan to use more than 4 connections/server

    My ISP has a news service that I users can access with a max of 20 connections per user.
    I've been trying to use pan to download some file from this server, but I can't get it to use more than 4 connections.
    On the pan web site it says to go to the NNTP menu,but I just can't find it.
    What's up? Am I blind?

    Have you overriden the doPost() method in ViewFormData? If not I think that you get this error message as a default
    doGet() and doPost() should do the same thing so have one call the other

Maybe you are looking for

  • "undefined" error when attempting to update Creative Cloud desktop app

    I'm trying to update apps for a user on a Windows 7 64-bit machine. If i run the app under my admin account, the "apps" tab shows that all products are up to date, however, when I run the CC desktop app as the user, I am getting an "undefined" error

  • "You've been signed out" CC Message

    My CC Desktop Application manager became signed out last night, and responded with the 'You've been signed out' message every time I tried to log back on.  So I had a Google and found the 'Delete opm.db' tip.  I tried to be caucious and just add a .b

  • MacBook Pro randomly restarting since upgrading to Mavericks. Help!

    Ever since I downloaded Mavericks, my 2010 MacBook Pro is randomly restarting due to a GPU panic. I tried all the trouble shooting suggested by apple support via telephone (updating software, reinstalling mavericks, repairing disks). It is still rest

  • Can i delete the Subtotal column in Cross Table?

    i create a crosstab named: hr_count, used for counting different kind of employees. and in 'crosstab expert', the 'column' area, i have 2 items: level_1 and level_2; the 'row' area has 1 item: department. my problem is, there's always a 'subtotal' co

  • Robohelp WebHelp or XML files in a Content Management System

    My company is creating a developers portal that will provide tools and documentation for developers using our SDK. We are using the Orchard CMS and are in the process of deciding whether to import the RoboHelp-generated files (either HTML or XML) int