Program RFEBKA00 - BI Session not kept/retained in TCode SM35

Hi u2013 We are experience difficulties with Program RFEBKA00. On executing we create a Batch Input Session. When moving to TCode SM35 we are able to process that BI Session ok, however the BI Session is not kept/retained in the TCode SM35 Overview.
We have reviewed SAP Note 495571 and these corrections are already applied in our SAP System.
We are aware that table/field FEBKO-XKEP1 requires an entry X in order that the BI Session is kept/retained u2013 but how is this possible? There is no selection available for this in the selection screen of Program RFEBKA00.
Thanks

Probably because all of your logic is in the event AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
Try it this way:
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
PERFORM getfile. "UPLOAD THE FLATFILE AND SAVE IT IN THE INTERNAL TABLE
START-OF-SELECTION.
  PERFORM getdata. "PROCESS BDC
  PERFORM bdcmethod. "TO CALL EITHER SESSION OR CALLTRANSACTION
Rob

Similar Messages

  • ViClose session not called after Read operation Timeout in an IVI COM driver

    Hi everybody
    I have a small VI sample that is initializaing an IVI COM driver for an OPM instrument, set some parameters into the instrument then is doing a single Read power measurement. My Read operation receives a single parameter called MaxTimeout that user could change depending on his own interest. Inside the Read function I change temporarily the VISA query timeout to user timeout but at the end of Read operation the original VISA session timeout is reverted to its original value before Read operation was called. If the Read operation timeout is long enough for the Read operation to complete ( 100 ms or more) the VI is doing its job and when finished the viClose is called twice for DefaultHandler and for OpenHandler.
    If the Read operation timeout value decrease ( 50 ms) then Read operation could not be completed and a Read Operation Timeout error is thrown from inside this method. This error is then propagated trough Error path until the VI end in a Simple Error Handler. Now on my VI I close all open references to my driver interfaces but I don't know why VISA itself is not calling viClose on the DefaultHandler and OpenHandler as in the case when was no VI error. I could see all these diferences in my NI Spy window and I could post this if that could be of any help. Bear with me cause I am more a C, C++, VB programmer and much less of a LabVIEW programmer. BTW the Error Handling from LabVIEW looks a a little weird and the only sure thing is that I wired in Error In and Error Out path in all my VI calls. What kind of error handling should I perform on the Read method in order for VISA to close properly both OpenHandlers even if there is an error in my VI?
    Thansk
    sorinvalea

    So viClose is not called by VISA after an error takes place in a VI that is calling some operations on an IVI COM driver.
    I discovered that all VI sessions opened trough VI that encountered a timeout error in Read operation and that were not properly closed after VI completed are in fact viClose by the LabView itself when I am closing LabVIEW application.
    So these left over open vi sessions are kept aside by LabVIEW until it closes itself and then clean them one by one by calling viClose on them....

  • Program  RFEBKA00(T-Code-   ff.5 ) for upload data problems

    Hi Gurus,
    Program RFEBKA00(T-Code-   ff.5  ) for upload the bank statement data and passing the with parameters.
    When execute then :
    Getting warning message     u201CWRONG PARAMETER: FILE_NAMEu201D
       Getting error message       u201CFile in disk drive can not be openu201D.
    My text file data for upload:--
    0000 01INGBNL2AXXXX00001
    0000 01INGBNL2AXXXX00001
    940 00
    :20:INGEB
    :25:0656905271                        
    :28C:132 
    :60F:C100708EUR25470,35
    :61:100709C2885,40N078
    :86:AT673200000003743077 RLNWATWW F . W Kopieranstaltbetriebs- GmbH
    :86: RG: 1001853                                                  
    :61:100709C1296,41N078
    :86:0666065284 Drukkerij Wilco BV Postbus 1477 3800 BL AMERSFOORT F
    :86:ACT.NRS 1001851                                               
    :62F:C100709EUR29652,16
    :64:C100709EUR29652,16
    :65:C100710EUR29652,16
    :65:C100711EUR29652,16
    :65:C100712EUR29652,16
    :65:C100713EUR34204,84
    :65:C100714EUR34204,84
    :65:C100715EUR34204,84
    :86:D000000C000002D0,00C4181,81
    :86:CF (Netherlands) Holding Limited BV
    -XXX
    If you have any Idea for upload data in ff.5 TCode please help.
    Subasha Sahoo

    Hi Sunita,
    If your data is in a text file , simply save the file as tab delimited.
    Then use FM 'GUI_UPOAD' to upload the file data into internal table.
    Hope this helps.
    Regards,
    Abhijeet Kapgate

  • Problem with selection-screen of program RFEBKA00

    Hi,
    When i execute the program RFEBKA00, some the text appear weir, or better, some texts does not appear... Like it misses some translation or something, but i check the data elements of the fields and everything is fine...
    Does anybody have any idea of what is happening?
    Best Regards,
    Luís Silva

    Hi Luis Silva,
    I've the same problem.
    How do you do to resolve the problem?
    Thanks in advance.
    Luigi Massa

  • BDC_INSERT, session not opened Error

    Hi,
    I have a BDC program to Add, Update and Delete a customer. If I do either Add, Update or Delete it is working fine. But if I have ADD and Update And Delete or any two of those it is giving me BDC_INSERT session not opened error. I have BDC_OPEN_GROUP, BDC_CLOSE_GROUP and BDC_INSERT.
    Can someone please help me to resolve this error.
    Thanks,
    veni.
        when 'UPDATE'.
          DESCRIBE TABLE itab_output LINES lv_cnt.
          DO lv_cnt TIMES.
            lv_index = sy-index + 3.
            READ LINE lv_index FIELD VALUE chk.
            IF chk = 'X'.
              READ TABLE itab_output INTO wa_index INDEX sy-index.
              IF sy-subrc EQ 0.
                wa_index-index = sy-index.
                APPEND wa_index TO itab_output2.
                CLEAR wa_index.
              ENDIF.
            ENDIF.
            CLEAR chk.
          ENDDO.
          set pf-status 'NORM1'.
          LOOP at itab_output2.
            IF itab_output2-transpzone = 'ADDITION'.
              MOVE itab_output2-name        TO wa1-name.
              MOVE itab_output2-name_2      TO wa1-name_2.
              MOVE itab_output2-name_3      TO wa1-name_3.
              MOVE itab_output2-name_4      TO wa1-name_4.
              MOVE itab_output2-city        TO wa1-city .
              MOVE itab_output2-city_no     TO wa1-city_no.
              MOVE itab_output2-postl_cod1  TO wa1-postl_cod1.
              MOVE itab_output2-transpzone  TO wa1-transpzone.
              MOVE itab_output2-street      TO wa1-street.
              MOVE itab_output2-str_suppl1  TO wa1-str_suppl1.
              MOVE itab_output2-country     TO wa1-country.
              MOVE itab_output2-extens_1    TO wa1-extens_1.
              PERFORM FORMAT_STORENO.
              APPEND wa1 TO itab_output3.
              CLEAR: wa1.
            ELSEIF itab_output2-transpzone = 'CHANGE'.
              MOVE itab_output2-name        TO wa1-name.
              MOVE itab_output2-name_2      TO wa1-name_2.
              MOVE itab_output2-name_3      TO wa1-name_3.
              MOVE itab_output2-name_4      TO wa1-name_4.
              MOVE itab_output2-city        TO wa1-city .
              MOVE itab_output2-city_no     TO wa1-city_no.
              MOVE itab_output2-postl_cod1  TO wa1-postl_cod1.
              MOVE itab_output2-transpzone  TO wa1-transpzone.
              MOVE itab_output2-street      TO wa1-street.
              MOVE itab_output2-str_suppl1  TO wa1-str_suppl1.
              MOVE itab_output2-country     TO wa1-country.
              MOVE itab_output2-extens_1    TO wa1-extens_1.
              PERFORM FORMAT_STORENO.
              APPEND wa1 TO itab_output4.
              CLEAR: wa1.
            ELSEIF itab_output2-transpzone = 'DELETE'.
              MOVE itab_output2-name        TO wa1-name.
              MOVE itab_output2-name_2      TO wa1-name_2.
              MOVE itab_output2-name_3      TO wa1-name_3.
              MOVE itab_output2-name_4      TO wa1-name_4.
              MOVE itab_output2-city        TO wa1-city .
              MOVE itab_output2-city_no     TO wa1-city_no.
              MOVE itab_output2-postl_cod1  TO wa1-postl_cod1.
              MOVE itab_output2-transpzone  TO wa1-transpzone.
              MOVE itab_output2-street      TO wa1-street.
              MOVE itab_output2-str_suppl1  TO wa1-str_suppl1.
              MOVE itab_output2-country     TO wa1-country.
              MOVE itab_output2-extens_1    TO wa1-extens_1.
              PERFORM FORMAT_STORENO.
              APPEND wa1 TO itab_output5.
              CLEAR: wa1.
            endif.
          endloop.
          clear chk.
          refresh itab_output2.
          DESCRIBE TABLE itab_output3 LINES lv_cnt.
          if lv_cnt <> 0.
            perform add_shipto.
          endif.
          clear lv_cnt.
          DESCRIBE TABLE itab_output4 LINES lv_cnt.
          if lv_cnt <> 0.
            perform change_shipto.
          endif.
          clear lv_cnt.
          DESCRIBE TABLE itab_output5 LINES lv_cnt.
          if lv_cnt <> 0.
            perform delete_shipto.
          endif.
          clear lv_cnt.
      endcase.
    FORM FORMAT_STORENO.
      IF itab_output2-storeno >= 1 AND itab_output2-storeno <= 9.
        CONCATENATE '1012'
                    '00000'
                    itab_output2-storeno
                    INTO wa1-storeno.
      ELSEIF itab_output2-storeno > 9 AND itab_output2-storeno < 100.
        CONCATENATE '1012'
                    '0000'
                    itab_output2-storeno
                    INTO wa1-storeno.
      ELSEIF itab_output2-storeno > 99 AND itab_output2-storeno < 1000.
        CONCATENATE '1012'
                    '000'
                    itab_output2-storeno
                    INTO wa1-storeno.
      ELSEIF itab_output2-storeno > 999 AND itab_output2-storeno < 10000.
        CONCATENATE '1012'
                    '00'
                    itab_output2-storeno
                    INTO wa1-storeno.
      ENDIF.
    ENDFORM.                    " FORMAT_STORENO
    FORM add_shipto.
      loop at itab_output3.
        MOVE '1012'                TO WA_EDPAR-KUNNR.
        MOVE 'WE'                  TO WA_EDPAR-PARVW.
        MOVE itab_output3-name_4   TO WA_EDPAR-EXPNR.
        MOVE itab_output3-storeno  TO WA_EDPAR-INPNR.
        INSERT INTO EDPAR VALUES WA_EDPAR.
        CLEAR WA_EDPAR.
      endloop.
      IF gd_open <> gc_true.
        m_grpid = 'ADD_SHIPTO'.
        PERFORM open_bdc_session.
      ENDIF.
      LOOP AT itab_output3 INTO wa1.
        lv_lzone = wa1-postl_cod1(3).
        perform bdc_dynpro      using 'SAPMF02D' '0107'.
        perform bdc_field       using 'BDC_CURSOR' 'RF02D-KTOKD'.
       // BDC to add customer
        PERFORM bdc_transaction USING gc_tcode2.
        m_count = m_count + 1.
      ENDLOOP.
      IF sy-subrc = 0.
        WRITE: /01 'Batch job created successfully',
               /01 'Number of new records added', m_count.
      ENDIF.
      clear m_count.
      IF gd_open = gc_true.
        PERFORM close_bdc_session.
      ENDIF.
    ENDFORM.                    " add_shipto
    FORM change_shipto.
      loop at itab_output4.
        UPDATE EDPAR SET   expnr = itab_output4-name_4
                     WHERE kunnr = '0000001012'   AND
                           inpnr = itab_output4-storeno.
      endloop.
      IF gd_open <> gc_true.
        m_grpid = 'CHANGE_SHIPTO'.
        PERFORM open_bdc_session.
      ENDIF.
      LOOP AT itab_output4 INTO wa1.
        lv_lzone = wa1-postl_cod1(3).
        perform bdc_dynpro      using 'SAPMF02D' '0108'.
        perform bdc_field       using 'BDC_CURSOR' 'RF02D-D0125'.
       // BDC to change customer
        PERFORM bdc_transaction USING gc_tcode1.
        m_count = m_count + 1.
      ENDLOOP.
      IF sy-subrc = 0.
        WRITE: /01 'Batch job created successfully',
               /01 'Number of records changed', m_count.
      ENDIF.
      clear m_count.
      IF gd_open = gc_true.
        PERFORM close_bdc_session.
      ENDIF.
    ENDFORM.                    " change_shipto
    FORM delete_shipto.
      loop at itab_output5.
        DELETE FROM EDPAR
                     WHERE kunnr = '0000001012'   AND
                           expnr = itab_output5-name_4 AND
                           inpnr = itab_output5-storeno.
      endloop.
      IF gd_open <> gc_true.
        m_grpid = 'DELETE_SHIPTO'.
        PERFORM open_bdc_session.
      ENDIF.
      LOOP AT itab_output5 INTO wa1.
        perform bdc_dynpro      using 'SAPMF02D' '0507'.
        perform bdc_field       using 'BDC_CURSOR' 'RF02D-SPART'.
        perform bdc_field       using 'BDC_OKCODE' '/00'.
        perform bdc_field       using 'RF02D-KUNNR' wa1-storeno.
        perform bdc_field       using 'RF02D-VKORG' '300'.
        perform bdc_field       using 'RF02D-VTWEG' '20'.
        perform bdc_field       using 'RF02D-SPART' '01'.
        perform bdc_dynpro      using 'SAPMF02D' '0520'.
        perform bdc_field       using 'BDC_CURSOR' 'KNA1-LOEVM'.
        perform bdc_field       using 'BDC_OKCODE' '=UPDA'.
        perform bdc_field       using 'KNA1-LOEVM' 'X'.
        PERFORM bdc_transaction USING gc_tcode3.
        m_count = m_count + 1.
      ENDLOOP.
      IF sy-subrc = 0.
        WRITE: /01 'Batch job created successfully',
               /01 'Number of records deleted', m_count.
      ENDIF.
      clear m_count.
      IF gd_open = gc_true.
        PERFORM close_bdc_session.
      ENDIF.
    ENDFORM.                    " delete_shipto
    FORM open_bdc_session.
      CALL FUNCTION 'BDC_OPEN_GROUP'
           EXPORTING
                client = sy-mandt
                group  = m_grpid
                keep   = 'X'
                user   = sy-uname.
      IF sy-subrc <> 0.
        MESSAGE e208(00) WITH 'Session open error'.
      ELSE.
        gd_open = gc_true.
      ENDIF.
    ENDFORM.                    " open_bdc_session
    FORM close_bdc_session.
      IF gd_open = gc_true.
        CALL FUNCTION 'BDC_CLOSE_GROUP'
             EXPORTING
                  client = sy-mandt
                  group  = m_grpid
                  keep   = 'X'
                  user   = sy-uname.
      ENDIF.
    ENDFORM.                    " close_bdc_session
    FORM bdc_dynpro USING    p_program
                             p_screen.
      CLEAR: itab_bdcdata.
      itab_bdcdata-program  = p_program.
      itab_bdcdata-dynpro   = p_screen.
      itab_bdcdata-dynbegin = gc_true.
      APPEND itab_bdcdata.
    ENDFORM.                    " bdc_dynpro
    FORM bdc_field USING    p_fieldname
                            p_value.
      CLEAR itab_bdcdata.
      itab_bdcdata-fnam = p_fieldname.
      itab_bdcdata-fval = p_value.
      APPEND itab_bdcdata.
    ENDFORM.                    " BDC_FIELD
    FORM bdc_transaction USING    p_tcode.
      CALL FUNCTION 'BDC_INSERT'
           EXPORTING
                tcode     = p_tcode
           TABLES
                dynprotab = itab_bdcdata.
      REFRESH itab_bdcdata.
      CLEAR: itab_bdcdata.
    ENDFORM.                    " bdc_transaction

    Thank you Rob.
    I just added this in BDC_CLOSE_GROUP, and it worked.
      IF sy-subrc = 0.
        gd_open = ' '.
      ENDIF.
    In BDC_OPEN_GROUP if gd_open = ' ', then only it opens a new session.
    Thanks,
    Veni.
    Edited by: veni reddy on Feb 8, 2008 8:52 PM

  • Session not destroyed after restart

    Hi all,
    On my Application server 8.1_02 EE as well as 8.2 PE i have an application.
    The session is destroyed on log out... but after a successful restart of the application server, the session is kept active..
    Is this a normal behavior, or is there something that i must be aware of?
    Thanks,
    Scotty

    Hi Ronald,
      I once encountered a similar problem when calling a BSP application in a GUI HTML control. I used a copy of session_single_frame in my BSP application and it worked fine when I called the BSP application from SE80 or by entering the URL in the browser directly but I couldn' t get it to work in the HTML control.
    The solution then was to use an additional URL Parameter called sap-syscmd=NOCOOKIE. This tells the request handler on the Web AS to retrieve the session ID from the URL and not to use a cookie.
    Hope this helps,
    Andy

  • How to check program is running or not

    Hi,
    Is it possible to check whether a program is running or not?
    I know when you try to compile a package which is running, oracle does not allow you compile it, it hangs. That is, somehow, Oracle knows the program is running. How can we check this information?
    Suppose procedure below. If i ran it in one session, how can check that procedure p is running in other session?
    I searched the forum. There is one( checking if a package procedure is already running ) thread but noone has replied.
    Thanks....
    SQL> DROP TABLE T;
    Table dropped
    SQL> CREATE TABLE T AS SELECT DUMMY D FROM DUAL;
    Table created
    SQL> CREATE OR REPLACE PROCEDURE p IS
      2    s VARCHAR2(12);
      3  BEGIN
      4    SELECT d INTO s FROM t;
      5    LOOP
      6      EXIT WHEN s = 'Y';
      7      SELECT d INTO s FROM t;
      8    END LOOP;
      9  END p;
    10  /
    Procedure created
    SQL> exec p;

    I found the answer from another thread.( Package Compilation Hangs )
    Answer is : http://www.ixora.com.au/scripts/sql/executing_packages.sql

  • Creating archiving session note

    Hi All,
    I have a requirement in which I am writing a program which executes another program in background for 5 times.
    Once a background job has been submitted i want an archiving session note to be created for that particular session.
    I have gone thru some documents on how to create the archive file and different FM's like ARCHIVE_OPEN_FOR_WRITE, ARCHIVE_NEW_OBJECT, ARCHIVE_CLOSE_FILE, but i am not very sure how to use them, can anyone please help me and guide on this.
    Thanks in advance.
    Sunanda.

    Dear Bhanu,
    the error message means that the spool list of specified archiving run is not available.
    In standard the message is raised either from include MAADMF05 or from MAADMF06 when the form show_spool_list is called and the value in field SPOOLID from table ADMI_RUN is empty for the here used archiving run.
    (BA 150, BA150)
    Best regards,
    Janos

  • Trying to login to software program known as hamspher (vip simulated ham radio,  it downloaded the program but it will not allow me to login with call sign and pin.  it has to be opened with what they call a jar file.  how do i do this?

    trying to login to software program known as hamspher (vip simulated ham radio,  it downloaded the program but it will not allow me to login with call sign and pin.  it has to be opened with what they call a jar file.  how do i do this?

    This is compatible with Mac? Especially Snow Leopard (if that is what you'e running)?
    Have you considered posting your question in their forums?
    Here is some information re. the jar file:
    http://ostermiller.org/opening_jar_files.html

  • Object Size and Position values not being retained

    Hi,
           I'm trying to set the size and position of a picture object in a report. This logo, should appear on the top right corner of the report.
    The margins of the report are Left - .79 in, Right - 0.79 in, Top - 0.79 in and Bottom - 0.39 in.
    The size of the picture object should be 1.574 x 0.79 inches.
    I have ensured that File -> Page Setup -> dimensions are in INCHES.
    I right click the logo and select 'Size and Position'.
    I set 'Y' (distance between top of object and top margin) = 0. This is to perfectly align the object with the top margin.
    Now, i set the height of the object = 0.79 inches. Ok the dialog and close.
    The strange thing happening is, when i re-open the size and position dialog, i see that the values i set are not being retained.
    0.79 becomes 0.810
    and
    0 become -0.010.
    What am i doing wrong here? How can i make sure the values i specify in the size and position dialog are  retained.
    Thanks.

    Ensure File | Options | Layout tab has the following UNMARKED!!!!
    Design View
      Guidelines
      Grid
    Preview
      Guidelines
      Grid
    Ensure that "Snap to Grid" is turned off.
    Make your grid size larger (.5 inches for example)
    What is occurring (I suspect) is that your objects are snapping to the grid - thus changing the position and possibly size due to the Snap to Grid being turned on.

  • Automatic Payment program -line item cleared not displaying in table

    automatic Payment program -line item cleared not displaying in table
    i have re run the APP program DUSR1 same earlier it has run twice but table dose not show double payment to vendors how to resolve the issue.
    Can some one please guide me on this.

    Hi Priyanka,
    First, which table are you referring to.  If your fist APP run clears the line item, it will no longer be available in the open item. 
    Please be more specific on the problem so that we can try to help you.  If possible, please provide screenshots.
    Regards,
    Ganesh

  • Fire fox opens with tabs from preveous session not home page in tools under options and tab general I have start up with home page but all tabs from previous session open instead

    fire fox opens with tabs from preveous session not home page in tools under options and tab general I have start up with home page but all tabs from previous session open instead

    It is possible that there is a problem with the files [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • Telnet session not working in OEL -5

    Telnet session not working in OEL -5
    ==============================
    1. Installed xinetd and telnet-server packages on the box.
    2. Enabled the xinetd service.
    # service xinetd start
    # chkconfig xinetd on
    Telnet still not working. Please help.
    Lily.

    Re-ran the /etc/init.d/xinetd restart command. Telnet cannot connect and this is what I get:
    Unencrypted connection refused. Goodbye.
    Below is the telnet.cfg
    ==================
    # default: on
    # description: The telnet server serves telnet sessions; it uses \
    #     unencrypted username/password pairs for authentication.
    service telnet
         flags          = REUSE
         socket_type     = stream
         wait          = no
         user          = root
         server          = /usr/sbin/in.telnetd
         log_on_failure     += USERID
         disable          = no
    ===================

  • Need to Check whether the program is Active or not

    Is there any statement where i can check  whether the report program is Active or not.
    Using below statement i am  copying the entire Code in internal table it_source.Before copying in the source code in the  internal table  it_source.I need to check that program is Active or not if it is not active and i need to give a pop message and forceliy i need to Active it.
    read report wa_trdir-name into it_source.

    Hi Srini,
    i just checked the table REPOSRC for a program which was not activated, i got two entries for the program one as active and one as inactive ,as soon as i activated the program there was a single entry.
    so is it that we should check if we have any inactive entry in the table for the program?.
    Regards,
    gunjan

  • Firefox is very slow to respond when opening and nearly always stops responding altogether even refusing to react to Task Manager "End Program@ command. The "not responding@ error message also comes up during navigation on line.

    Firefox is very slow to respond when opening and nearly always stops responding altogether, even refusing to react to the Task Manager "End Program" command. The "not responding" error message also comes up during navigation on line. Several attempt have to be made to get on line. A loss of stability seems to be endemic at the moment.

    Try following the instructions here: [[Firefox hangs]]

Maybe you are looking for

  • How to remove all CIM in SLD

    Hi all i would like to remove all software component from current SLD. i am not telling reimport new released CIM and Contents Version. how to remove all related component to make empty SLD BOX? Regards and Thanks in advance Tony

  • How to differentiate purhcase order on hold from that of saved one

    Hi all, Due to customer req i designed an IDOC that send PO from R/3 to SCM. My report will be scheduled background everyday b4 midnight so that all the PO's created for that day are trasnferred to SCM. Now if they create a PO and put it on HOLD to g

  • I am unable to setup my gmail account.

    I am unable to set up my Gmail account. I keep getting a message that the user name and password for Gmail is incorrect although these are the same name and password I use on my laptop. Today when I purchased the phone, the sales guy in the Apple sto

  • ValueChangeListener fires in JSF lifecycle on a typical actionListener?

    Why does a valueChangeListener on a selectOneChoice fire in the JSF Lifecycle when I click on a separate non-related commandButton that runs an actionListener? How do I prevent a valueChangeListener to not fire when I click on a commandButton that ru

  • Mac Book Pro Intel Core Duo 2 overheating and turning off

    I've been having this nasty problem with my Mac Book Pro Intel Core Duo 2 (2.8 Ghz, 4 MB 1067 MHz DDR3 RAM, bought in August 2009) for quite a while, but recently it's intensifying. It starts to overheat badly, and then randomly turns itself off if n