BDC for ME22N not working in background but working fine in foreground

Hi guys,
I have done a BDC recording for ME22N.
Its working fine in foreground but failing in background.
Can anyone sugesst a solution.
Thanks!

There is a note on this subject, BDC with control may (and of course will) not perform correctly in background, they need the Sapgui) [Note 381630 - Batch input for Enjoy transaction in MM not possible|https://service.sap.com/sap/support/notes/381630]
You may need to use the old ME22 transaction or BAPI like BAPI_PO_CHANGE [Note 217437 - ME21N/ME51N: Batch input and CATT not possible|https://service.sap.com/sap/support/notes/217437]
Regards
Regards

Similar Messages

  • BDC for ME22n vendor confirmation

    i am facing problem while doing BDC for ME22N . i am going for itemwise vendor confirmation.
    for first line item it is happening. but for 2nd line item it is not going.
    any help?
    this is my code. i guess some loop i have to add but where? can any body give idea?
    REPORT  ZMM_VC_UPLOAD.
    TABLES :  t100.
           Internal table declaration                                    *
    DATA : BEGIN OF it_upload OCCURS 0,
                  index(4),      "Index
                  EBELN(10),     "PO number
                 EBELP(5),      "line item PO
                  LIST(1),       "item number
                  BSTAE(4),      "Confirmation control key
                  EBTYP(2),      "Confirmation Category
                 BSTAE(4),      "Confirmation control key
                  LPEIN(1),      "Category of delivery date
                  EEIND(10),     "delivery date
                  MENGE(13),     "QTY Quantity as per vendor confirmation
                  XBLNR(20),     "ext doc
                  ERDAT(10),     "doc date
                  er_message(100),
           END OF it_upload.
    DATA: BDCDATA LIKE BDCDATA OCCURS 0 WITH HEADER LINE,
          MSGDATA LIKE BDCMSGCOLL  OCCURS 0 WITH HEADER LINE.
    *Selection Screen
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETER: P_FILE LIKE IBIPPARMS-PATH OBLIGATORY.  "to select a file.
    SELECTION-SCREEN END OF BLOCK B1.
    *Initialization
    INITIALIZATION.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE .
      PERFORM GET_FILENAME.
    start-of-selection
    START-OF-SELECTION.
      PERFORM MAKE_FILE_NAME .
      PERFORM UPLOAD_FILE.
        PERFORM BDC_PROCESS.
    perform read_messages.
    *&      Form  UPLOAD_FILE
    FORM UPLOAD_FILE .
      CALL FUNCTION 'WS_UPLOAD'
        EXPORTING
          FILENAME                = P_FILE
          FILETYPE                = 'DAT'
        TABLES
          DATA_TAB                = IT_UPLOAD .
            IF SY-SUBRC <> 0.
      ENDIF.
    ENDFORM.                    " UPLOAD_FILE
    *&      Form  bdc_process
    FORM BDC_PROCESS .
    loop at it_upload.
    LOOP AT IT_header.
    refresh bdcdata.
      perform bdc_dynpro      using 'SAPLMEGUI' '0014'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=MECHOB'.
    perform bdc_field       using 'MEPO_TOPLINE-BSART'
                                  'NB'.
    perform bdc_field       using 'DYN_6000-LIST'
                                  it_upload-list.    "'   1'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MEPO1319-MATKL'.
    perform bdc_field       using 'MEPO1319-SPINF'
                                  'X'.
    perform bdc_dynpro      using 'SAPLMEGUI' '0002'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=MEOK'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MEPO_SELECT-EBELN'.
    perform bdc_field       using 'MEPO_SELECT-EBELN'
                                  it_upload-EBELN.              "'4500195517'.
    perform bdc_field       using 'MEPO_SELECT-BSTYP_F'
                                  'X'.
    perform bdc_dynpro      using 'SAPLMEGUI' '0014'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=TABIDT14'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MEPO_TOPLINE-BSART'.
    perform bdc_field       using 'MEPO_TOPLINE-BSART'
                                  'NB'.
    perform bdc_field       using 'DYN_6000-LIST'
                                  it_upload-list.    "'   1'.
    perform bdc_field       using 'MEPO1319-SPINF'
                                  'X'.
    perform bdc_dynpro      using 'SAPLMEGUI' '0014'.
    perform bdc_field       using 'BDC_OKCODE'             "first time
                                  '/00'.
    perform bdc_field       using 'MEPO_TOPLINE-BSART'
                                  'NB'.
    perform bdc_field       using 'DYN_6000-LIST'
                                 it_upload-list.    " '   1'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MEPO1334-BSTAE'.
    perform bdc_field       using 'MEPO1334-BSTAE'
                                  it_upload-BSTAE  .                "'0005'.
    perform bdc_dynpro      using 'SAPLMEGUI' '0014'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'MEPO_TOPLINE-BSART'
                                  'NB'.
    *loop at it_item where ebeln = it_upload-ebeln.
    perform bdc_field       using 'BDC_CURSOR'
                                  'DYN_6000-LIST'.
    perform bdc_field       using 'DYN_6000-LIST'
                                  it_upload-list.    "'   1'.
    perform bdc_field       using 'MEPO1334-BSTAE'
                                  it_upload-BSTAE.                 "'0005'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'EKES-ERDAT(01)'.
    perform bdc_field       using 'EKES-EBTYP(01)'
                                  it_upload-EBTYP.                 "'vc'.
    perform bdc_field       using 'RM06E-LPEIN(01)'
                                  it_upload-LPEIN.                 "'D'.
    perform bdc_field       using 'RM06E-EEIND(01)'
                                  it_upload-EEIND.                 "'15.02.2009'.
    perform bdc_field       using 'EKES-MENGE(01)'
                                  it_upload-MENGE.                 "'10'.
    perform bdc_field       using 'EKES-XBLNR(01)'
                                  it_upload-XBLNR.                 "'inv 9'.
    perform bdc_field       using 'EKES-ERDAT(01)'
                                  it_upload-ERDAT.                 "'15.02.2009'.
    perform bdc_dynpro      using 'SAPLMEGUI' '0014'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=MESAVE'.
    CALL TRANSACTION 'ME22N' USING BDCDATA MODE 'A' UPDATE 'A' MESSAGES INTO MSGDATA. 
        CLEAR: BDCDATA,BDCDATA[].
        refresh BDCDATA.
      ENDLOOP.
    ENDFORM.                    " bdc_process
           Start new screen                                              *
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
      CLEAR BDCDATA.
      BDCDATA-PROGRAM  = PROGRAM.
      BDCDATA-DYNPRO   = DYNPRO.
      BDCDATA-DYNBEGIN = 'X'.
      APPEND BDCDATA.
    ENDFORM.                    "BDC_DYNPRO
           Insert field                                                  *
    FORM BDC_FIELD USING FNAM FVAL.
      IF FVAL <> ''.
        CLEAR BDCDATA.
        BDCDATA-FNAM = FNAM.
        BDCDATA-FVAL = FVAL.
        APPEND BDCDATA.
      ENDIF.
    ENDFORM.                    "BDC_FIELD
    *To get file name                                                      *
    FORM GET_FILENAME .
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          PROGRAM_NAME  = SYST-CPROG
          DYNPRO_NUMBER = SYST-DYNNR
        IMPORTING
          FILE_NAME     = P_FILE.
      IF SY-SUBRC NE 0  .
        WRITE : / 'Enter File Name'.
      ENDIF.
    ENDFORM.                    "GET_FILENAME

    Hi Dude,
      When ur looping the item information , in your code ur
    loop at it_item where ebeln = it_upload-ebeln.
    perform bdc_field using 'BDC_CURSOR'
    'DYN_6000-LIST'.
    perform bdc_field using 'DYN_6000-LIST'
    it_upload-list. "' 1'.
    perform bdc_field using 'MEPO1334-BSTAE'
    it_upload-BSTAE. "'0005'.
    perform bdc_field using 'BDC_CURSOR'
    'EKES-ERDAT(01)'.
    perform bdc_field using 'EKES-EBTYP(01)'
    it_upload-EBTYP. "'vc'.
    perform bdc_field using 'RM06E-LPEIN(01)'
    it_upload-LPEIN. "'D'.
    perform bdc_field using 'RM06E-EEIND(01)'
    it_upload-EEIND. "'15.02.2009'.
    perform bdc_field using 'EKES-MENGE(01)'
    it_upload-MENGE. "'10'.
    perform bdc_field using 'EKES-XBLNR(01)'
    it_upload-XBLNR. "'inv 9'.
    perform bdc_field using 'EKES-ERDAT(01)'
    it_upload-ERDAT. "'15.02.2009'.
    perform bdc_dynpro using 'SAPLMEGUI' '0014'.
    perform bdc_field using 'BDC_OKCODE'
    '=MESAVE'.
    ->(01) you have to replace to variable , and every loop pass increment the varialbe value with 1.
    ex : -
    V1 = 1.
    loop at item.
    perform bdc_data using 'xyz(V1)' 
                                   it_upload-variable.
    V1 = V1 + 1.
    endloop.
    This is called as index , the table control fields are differ the field name by index only...

  • I have a Mac running 10.9.2. My wireless mouse with not scroll in mail but works fine in other applications? Any suggestions?

    I have a Mac running 10.9.2. My apple wireless mouse will not scroll in Mail but works fine in other applications.
    Any suggestions?

    First, see this discussion. If the solution suggested there doesn't work for you, continue.
    If you've installed a Mail plugin called "Mail Unread Menu" and you know how to remove it, please do that, then quit and relaunch Mail. Test. Otherwise, see below.
    Back up all data.
    1. Triple-click anywhere in the line below on this page to select it:  
    ~/Library/Mail/Bundles
    Right-click or control-click the highlighted line and select 
    Services ▹ Open
    from the contextual menu.* A folder may open, or you may get an error message that the item can't be found. Either result is normal. If the folder does open and has contents, move the contents to the Desktop. Relaunch Mail and test. If there's no change, put the contents of the folder back and quit Mail again.
    2. Repeat with this line:
    /Library/Mail/Bundles
    This time you may be prompted for your login password when you remove the items. Make sure they're removed from the folder and not just copied to the Desktop. If necessary, copy them first and then move the originals to the Trash.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • My keyboard is not working in "Pages" but works with all other applications.  Please provide resolution advice.

    My keyboard is not working in "Pages" but works with all other applications.  Please provide resolution advice.

    What version of Pages?
    There are one or two of us here who are not intimately acquainted with your particular set-up.
    Peter

  • The "new" hotmail no longer works with safari, but works with firefox. Hmm.

    The "new" hotmail no longer works with safari, but works with firefox. Hmm. i find this very convenient being a microsoft product. anybody else wonder why this new version happens to not be safari compatible? does anybody know if it works on the PC version of safari? if not, i find this to be a blatant move on microsofts part to bias the safari browser (especially since its basicly new on the window platform). forcing safari/hotmail users to "have" to use another browser to access their hotmail accounts.

    I have been successfully using Hotmail and Gmail with Safari for a long time. For roughly the past month, that relationship is rocky at best. At times, one of the following actions suddenly opens Hotmail, but it is a short-lived solution:
    (a) Hotmail directly
    (b) Hotmail Home>Hotmail
    (c) Sign up to Windows Hotmail
    (d) Deletion of prescribed cookies, resetting, etc. - made no difference
    Both Firefox and Opera work fine with Hotmail - especially Opera is very fast.
    In addition, Safari and Gmail does not work with Attachments, but otherwise Gmail is OK.
    I suspect I have to wait for a Safari fix because in my case I do not wish to abandon Hotmail, and Safari is a given. I would think that Safari would want to stay competitive with the two biggies, Hotmail and Gmail, which must have large numbers of users.
    I certainly would appreciate any other suggested fixes.

  • Scrolling not working in BDC for ME22N

    Dear All,
    i record BDC using Tcode "SHDB" for ME22N ( only for Type stock transfer ).
    in recording i select tab "delivery schedule" and it showing 4 rows as default rows and
    after that i scroll one by  one to put requisition Closed Flag.
    after successfull completion of recording when run "Process" to test (without change any coding),
    it's not working for scrolling even if i tried for page down the result is same.
    can you please suggest for :
    1- what could be the problem, though BDC recorded with scrolling but process not working.
    2- is there any option to increase no. of fixed rows in tab "schedule delivery"
    Pls help.
    Thanks a lot,
    Radhashyam

    see my code below it might help you, i have also used a flag and i have populated the data manually from where i need scrolling, i guess in recording you cannot catch sscorlling you have to do it manually.
    loop at t_final_data into fs_final_data.
        if fs_final_data-acopc = 'Y'.
          lw_flag = 'X'.
        elseif fs_final_data-acopc = 'N'.
          lw_flag = ' '.
        endif.                            
    refresh t_bdcdata.
    perform bdc_dynpro      using 'SAPMP50A' '1000'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=INS'.
    perform bdc_field       using 'RP50G-PERNR'
                                  fs_final_data-pernr.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RP50G-ENDDA'.
    perform bdc_field       using 'RP50G-BEGDA'
                                  fs_final_data-begda.
    perform bdc_field       using 'RP50G-ENDDA'
                                  fs_final_data-endda.
    perform bdc_field       using 'RP50G-CHOIC'
                                  lw_info.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_dynpro      using 'SAPMP50A' '1000'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=INS'.
    perform bdc_dynpro      using 'MP058500' '2000'.
    clear w_curr.
    w_curr =  fs_final_data-pcntr1.
    perform bdc_field       using 'Q0585-PCNTR(01)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr1.
    perform bdc_field       using 'Q0585-ACNTR(01)'
                                 w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr2.
    perform bdc_field       using 'Q0585-PCNTR(02)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr2.
    perform bdc_field       using 'Q0585-ACNTR(02)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr3.
    perform bdc_field       using 'Q0585-PCNTR(03)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr3.
    perform bdc_field       using 'Q0585-ACNTR(03)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr4.
    perform bdc_field       using 'Q0585-PCNTR(04)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr4.
    perform bdc_field       using 'Q0585-ACNTR(04)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr5.
    perform bdc_field       using 'Q0585-PCNTR(05)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr5.
    perform bdc_field       using 'Q0585-ACNTR(05)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr6.
    perform bdc_field       using 'Q0585-PCNTR(06)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr6.
    perform bdc_field       using 'Q0585-ACNTR(06)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr7.
    perform bdc_field       using 'Q0585-PCNTR(07)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr6.
    perform bdc_field       using 'Q0585-ACNTR(07)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr8.
    perform bdc_field       using 'Q0585-PCNTR(08)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr8.
    perform bdc_field       using 'Q0585-ACNTR(08)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr9.
    perform bdc_field       using 'Q0585-PCNTR(09)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr9.
    perform bdc_field       using 'Q0585-ACNTR(09)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr10.
    perform bdc_field       using 'Q0585-PCNTR(10)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr10.
    perform bdc_field       using 'Q0585-ACNTR(10)'
                                   w_curr.
    *" from here i have done it manually
    perform bdc_field       using 'BDC_OKCODE'
                                  'P+' .
    perform bdc_dynpro      using 'MP058500' '2000'.
    clear w_curr.
    w_curr =  fs_final_data-pcntr11.
    perform bdc_field       using 'Q0585-PCNTR(01)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr11.
    perform bdc_field       using 'Q0585-ACNTR(01)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr12.
    perform bdc_field       using 'Q0585-PCNTR(02)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr12.
    perform bdc_field       using 'Q0585-ACNTR(02)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr13.
    perform bdc_field       using 'Q0585-PCNTR(03)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr13.
    perform bdc_field       using 'Q0585-ACNTR(03)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr14.
    perform bdc_field       using 'Q0585-PCNTR(04)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr14.
    perform bdc_field       using 'Q0585-ACNTR(04)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr15.
    perform bdc_field       using 'Q0585-PCNTR(05)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr15.
    perform bdc_field       using 'Q0585-ACNTR(05)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr16.
    perform bdc_field       using 'Q0585-PCNTR(06)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr16.
    perform bdc_field       using 'Q0585-ACNTR(06)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-pcntr17.
    perform bdc_field       using 'Q0585-PCNTR(07)'
                                   w_curr.
    clear w_curr.
    w_curr =  fs_final_data-acntr17.
    perform bdc_field       using 'Q0585-ACNTR(07)'
                                   w_curr.
    *" i have used a flag here
    perform bdc_field       using 'Q0585-ACOPC'
                                   lw_flag.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=UPD'.
    perform bdc_dynpro      using 'MP058500' '2000'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/EBCK'.
    perform bdc_dynpro      using 'SAPMP50A' '1000'.
      call transaction 'PA30' using t_bdcdata
                               mode 'A'
                           messages into t_messtab.

  • BAPI_GOODSMVT_CREATE or BDC for MB1A not creating Accounting Doc

    It is a strange scenario.  We can manually process a Goods Issue (without reference to a PO# - WBS Element used instead) via MB1A and have an Accounting Doc generated without a problem - movememt 415Q.  But for some reason, we can only create the Material Doc for Goods Issue when using BAPI_GOODSMVT_CREATE or BDC for MB1A (foreground or background).
    Does anyone have any idea why in the world this would be happening?  Especially if we're using the exact same data used to manually create the Goods Issue via MB1A?

    Thanks for the response.  Yes, I did try BAPI_TRANSACTION_COMMIT in all of my tests.  The Accounting Document simply will not get generated.
    Again, what makes it strange is that we created a BDC for MB1A - based on data that worked & that produced an Accounting document.  However, when processing that BDC, either in the foreground or background - the Accounting document likewise does not get created.

  • User Exit and BDC for ME22N

    Hello All,
    A code has been written in the User exit for Tcode ME22N, Which sets the indicator on PO line item. This has been done by modifying the standard itab POT by using field symbols, because the fields to be modified are shown in display mode in the tcode ME22N and cannot be done in BDC. See the below code in user exit ZXM06U43.
    DATA char(50) VALUE '(SAPLMEPO)POT[]'.
    CLEAR wa_ind.
        FIELD-SYMBOLS <f1> TYPE ANY.
    Move memory of internal table POT to field symbol f1.
        ASSIGN (char) TO <f1>.
    Move content of f1 to internal table i_ind
        i_ind[] = <f1> .
        LOOP AT i_ind INTO wa_ind.
          IF wa_ind-pstyp = '9'.            " Service PO - item category
    IF PO Line item has History per Purchasing Document as 'D'
    Set indicators on, for the line item.
            CLEAR v_cnt.
            SELECT COUNT( * ) INTO v_cnt FROM ent5100
                                         WHERE ebeln = wa_ind-ebeln
                                           AND ebelp = wa_ind-ebelp
                                           AND bewtp = 'D'.
            IF sy-subrc = 0.
              wa_ind-wepos = 'X'.            " Set Goods Receipt Indicator
              wa_ind-webre = 'X'.            " Set GR-based IV Indicator
              wa_ind-lebre = 'X'.            " Set Srv-based IV Indicator
            ELSE.
    *End of addition SAP-20070910104025 - SL36 - D01K963369
              wa_ind-wepos = ' '.            " Clear Goods Receipt Indicator
              wa_ind-webre = ' '.            " Clear GR-based IV Indicator
              wa_ind-lebre = ' '.            " Clear Srv-based IV Indicator
              wa_ind-xersy = ' '.            " Clear ERS Indicator
            ENDIF.                                           
            MODIFY i_ind FROM wa_ind INDEX sy-tabix.
          ENDIF.
        ENDLOOP.
        <f1> = i_ind[].
      ENDIF.          
    ENDIF.
    This code is in production and has been working fine.
    The requirnment is now to make this indicator work for all the Purchase order before this code has been written in the Exit. For this my functional suggests that to write a separate program using BDC for PO change and jus add a period/dot  in the short text and save it. The code has been written, the user exit and the above code is getting triggrred values are updated in internal table correctly.
    However the flags was not set or cleared when seen in the tcode ME22N . This works fine if the tcode me22n is run directly and not working in BDC.
    I have tried with ME22 without enjoy transaction in BDC changing the POT Program to SAPMM06E. It does not work.
    Please help me as why it is not uodating in the table when using BDC.
    Thanks in Advance.
    Senthil Kumar

    Hi All,
    Any luck on this??
    Thanks

  • Wireless not working in linux, but works fine in windows vista

    Hello!
    I have installed Unbreakable Enterprise Linux 4 in a dual boot config. with Window Vista on a Compaq Presario laptop. After install completed I found that my on board Broadcom Wireless Adapter (Dell 1390 Mini PC card) was not recognized. I have tried installing NDISwrapper versions 1.48 and later 1.47 (after uninstalling 1.48) because everytime I got to the "modprobe ndiswrapper" received a fatal error about an unknown symbol or parameter, and on install I also encountered a "CONFIG_4KSTACKS" error as well. The good part is the light on my laptop for the wireless adapter finally came on and the driver (bcmwl5.inf) appears to be installed and the wireless adapter identified as being present, but it still doesn't show up in the network manager gui interface. So I am out of ideas if any one can give me a suggestion for a solution I would appreciate it.

    Hi there,,,,,
    I have Oracle Enterprise Linux 5 installed and Intel wifi 5100 card installed on my laptop. Wireless card does not work in Linux it works fine with Vista, I have dual boot. I have downloaded and installed the microcode for the wireless card for Linux,,,it is now active but it does not take ip address from dhcp and nor does it connect when i supply manual ip. it does not even scan for any wireless network. I have WEP enabled on my wireless network. It just says disconnected.....
    Please help me.....i have been trying to get this thing work for 3 weeks.
    thanks.

  • Flash player not loading on http but works on https

    I have an issue where flash player shows "movie not loading" on http pages but works fine on https.
    I am using windows 7 64 bit, ie9 64 bit, i have tried it with the latest firefox and chrome and i still get the same issue.
    This started with flash player 10.3, the 10.2 version did not have this problem and all subsequent versions have the same issue. i am currently using the 11.2 version of flash.
    Example: Any flash video on youtube with the address beginning with HTTP, the video screen is black and when you right click you get movie not loading and the correct version of the flash player. If you change the header over to HTTPS the video works fine. this wouldnt be much of a problem except when going to any other website that has flash as its main element but does not have an HTTPS version, you cannot use the page or its features.
    I have uninstalled and reinstalled several times, done a clean install, deleted all files and updated every area of my computer but this issue remains. I have read the forums here and done any suggestions listed to no avail and noticed many people have this type of problem. This issue has now been going on for almost 6 months. Can anyone help?
    I may have posted this in the wrong forum and I appologize. If so can you please move it to the correct location?

    I don't claim to know the solution to your problem, but in your situation I would try either or both administrator install methods: 1) Right-click the downloaded install file, choose "Run as Administrator" and install the software as usual. 2) Try using a different Windows account that you are positively certain has full administrator rights or the actual Administrator login name, install with that account.
    Also, make sure you empty the browser cache before retrying the http pages. What about other browser settings, like security or privacy settings? Any add-ons or antivirus browser helper objects?
    Do you only use Internet Explorer, or is this issue the same in Firefox, Opera, Chrome and Safari?
    Good luck, hope you get the error fixed.

  • Top Nav buttons not working after publish, but works in app. WHY?

    I have tried to find out why these buttons will not work after publishing. They work fine while in the iWeb app, but not when publishing. I do not have any objects near the top nav buttons. The first site went off without a hitch
    <www.serenitycustompools.net> the second site began the problem with the last page, the nav buttons would not work. Now this 3rd site, none of the nav buttons at top will work after publish, but will work in app. Anyone else having the same probs? None of my pages have the same names or any punctuation marks, and they are simple one word named pages.
    mini intel   Mac OS X (10.4.9)  

    They all work for me, try clearing your browser cache or using another browser.

  • @font-face not working in FF, but working elsewhere.

    Hey, I've been trying to get @font-face working in Firefox, but it just won't work. I'm hosting the font externally and the way I'm doing it works on other browsers. This is my code:
    <body bgcolor="CA2E28" style="margin-left: 0px; margin-right: 0px;">
    <style type="text/css" media="screen, print">
    @font-face {
    font-family: "Blackout";
    src: url(woff link is here, don't want to put it here though.);
    body { font-family: "Blackout" }
    </style>
    <center>THIS SHOULD BE BLACKOUT.</center>
    </body>

    ''jscher2000 [[#answer-709096|said]]''
    <blockquote>
    Can you check to see whether Firefox is downloading the file? To do that, first open the Web Console in the lower part of the tab below your page using either:
    * Ctrl+Shift+k
    * "3-bar" menu button > Developer > Web Console
    * (menu bar) Tools > Web Developer > Web Console
    Click the "Network" button/tab along the top of the console and reload the page. Here you can see whether Firefox is requesting the file and, if so, whether it is retrieved.
    If that checks out, then click the Console tab and reload the page and watch for any error messages that might relate to the font. Anything strange?
    If the font is downloading and there are no error messages, use the Inspector tab to look at the body element and see whether the style is there and is being given effect (i.e., no line-through).
    If all that is good, you might double-check your personal settings to make sure you aren't overriding website fonts. Either:
    * "3-bar" menu button (or Edit menu) > Preferences > Content
    Click the Advanced button and make sure you have a checkmark for "Allow pages to choose their own fonts".
    If all of that is good, then... it's a mystery. Have you checked Firefox on other machines or other operating systems?
    ''For reference:'' https://developer.mozilla.org/docs/Web/CSS/@font-face
    </blockquote>
    This message came upon refreshing:
    Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at <my font like here>. This can be fixed by moving the resource to the same domain or enabling CORS. Blackout_Midnight-webfont.woff
    And this one soon after:
    downloadable font: download failed (font-family: "Blackout" style:normal weight:normal stretch:normal src index:0): bad URI or cross-site access not allowed
    source: <my font link here>

  • Select query not working in Dev but working in QA and PRD

    Hi All,
    I have a select query with inner join which is not working in the DEV but working in QA and PRD. Anyone has any idea why is it happening, I think it to be a basis issue. Just want to confirm if anyone has any other idea.
    Thanks in advance,
    Barjinder Singh.

    Hi Barjinder Singh,
    In development you can't find the records for the table.
    In testing system only you can test even the program(report).
    If it is the DEV system you can't get the data.
    Go and see into the table wether it has records or not(in DEV system).
    It doesn't has the records in DEV system.
    Regards,
    Balakrishna.N

  • Airport Extreme and USB HD not detected in Vista but work in OSX

    I have a hard drive and a printer connected to a USB hub that's hooked up to my Airport Extreme. USB hub is a good one, powered. Everything works like it should on the two Macs I have. Airport Utility detects everything fine, all works well. Great.
    On my Vista PC, which is my main computer, being by far the most powerful, I have Airport Utility installed so that I can have access to my network hard drive. Weird thing is that it gets detected sometimes, and sometimes it doesn't. When I re-install Airport Utility, everything works for that session. After a reboot it may or may not work. Usually it stops working all together after 2 or 3 reboots.
    Internet access works all the time, mind you, as well as printing to my printer that's connected to the extreme. Just no base station detected in Airport Utility and no hard drive access, because the base station isn't available.
    Thing to note, my computer goes through a gigabit switch, D-Link DGS-2205 to get to the airport extreme. I have an iMac that also goes through that switch, but doesn't have these problems.
    Any ideas what to do? I'm sick of re-installing Airport Utility every couple days.

    Nobody had a similar problem? Re-running Airport Utility installer again and Repairing the current installation fixes it for a short period of time, but the same problem comes back after about 3 reboots. Any ideas?

  • @Yahoo emails: not arriving to Mail (but work on IPad & iPhone)

    It doesn't seem to make much sense; but I have problems with my my @yahoo emails coming into Mail - but only on my MacBook Pro (OSX10.10.2), other devices do work.  So in brief:
    1) Email can send out via Mail (Password used for Outbound authentication) - but the same password entered, and emails don't arrive in to my account.
    2) Emails will both arrive and send from my iPhone and IPad (IoS) devices.
    Efforts to re-set:
    - I have logged out and then in multiple times on the webmail.
    - I have changed the password on Webmail access, and then copy and pasted across to Mail.  (outgoing mail still works, but inbound does not)
    - I have changed it via Mail / Accounts and also Mail / Preferences / Accounts
    This has happened before about 4 weeks ago, but then came to life after three days.
    I suspect a Yahoo server issue, albeit that i can't work out why emails can come to IOS, but not to OS X - but then again i'm no expert so there may be a reason?!

    Troubleshooting Apple Mail
    What does Mail/Window/Connection Doctor Show? If the server is red, select it and look at the Show Details box.
    Troubleshooting sending and receiving email messages

Maybe you are looking for