BAPI_PR_CREATE Extension Issue

Hi
I am using BAPI_PR_CREATE to upload Purchase Requisition Create data for ME51n Transaction. Here there is screen Enhancement has been added to ME51n.
When Iam uploading data through BAPI_PR_CREATE the below error message is been shown in RETURN structure:
No instance of object type PurchaseRequisition has been created. External reference:
Error transferring ExtensionIn data for enhancement CI_EBANDB.
In enhancement implemented code is as below for ME51n :
data: gt_items TYPE mmpur_requisition_items.
data:wa_header TYPE mereq_header.
  CALL METHOD im_header->get_data
    RECEIVING
      re_data = wa_header.
*****Get Item Detail
  CALL METHOD im_header->get_items
EXPORTING
   im_auth_check = MMPUR_NO
   im_release_op = MMPUR_NO
    RECEIVING
      re_items      = gt_items.
When I checked this enhancement iam not able to find BAPI Extension data.

Probably:
Ls_acctx-SERIAL_NO = gc_x.
should be
Ls_acctx-SERIAL_NO = '01'.
And uncomment PREQ_ITEM.
Regards,
Jarek

Similar Messages

  • Install sharepoint 2013 on Windows server 2012, Microsoft Identity Extensions issue !!!!!!!!!

    Sharepoint 2013 comes with prerequisitesinstaller.exe to install the software required for the actual Sharepoint installation.
    I 've installed Windows server 2012 in the R2 edition as well as Standard edition, but installing the prerequisites ends with an issue for the Microsoft Identity Extensions (MIE) on both versions (screenshot).
    The 2012 R2 server has been updated with all latest files by executing Windows update.
    In case of the Server 2012 R2,  MIE is already installed , but somehow the Sharepoint installation is missing something.
    I al;so tried removing default install to let prerequisiteinstaller.exe to install it's own version, but that did not help.
    When I skip the prerequisites remaining items, the Sharepoint installation stops directly , requesting the missing items.
    I've tried several Sharepoint server installation files, including the 180 days free version.
    Screenshots will be uploaded after my account has been checked......

    Hi Jay,
    Installing SharePoint Server 2013 on a computer that is running Windows Server 2012 R2 could lead to unexpected behavior, therefore, Microsoft does not support SharePoint Server 2013 in Windows Server 2012 R2.
    SharePoint Server 2013 with Service Pack 1 and SharePoint Foundation 2013 with Service Pack 1 will offer support for Windows Server 2012 R2.
    Refer to:
    SharePoint 2013 Support for Windows Server 2012 R2
    In addition, as Dave suggested, for the sharepoint server issue, please post in the dedicated forum for a better response.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • REUSE_ALV_GRID_DISPLAY - Save as Excel - Default Extension Issue

    Hi Team,
    Greetings for the Day !!
    I have an issue with saving ALV Grid Output file as XLS. As I click the "Save Local File" Icon and select the Radio button for "Spreadsheet", in the next pop up for file path and file name, the extension ".txt" comes as default in the file name field. Here the expectation is that the default file extension should be ".xls" rather than ".txt". Your inputs are awaited..
    Thank you so much..
    Best Regards,
    Naga Chaitanya

    Hello Chaitanya,
    Try to download excel with OLE below is for reference
    TYPES: ty_line(5000) TYPE c.
      DATA: date TYPE sy-datum.
    ***************&OLE objects for Excel Output&* handles for OLE objects
      DATA: h_excel TYPE ole2_object,        " Excel object
            h_mapl  TYPE ole2_object,        " list of workbooks
            h_map   TYPE ole2_object,        " workbook
            h_f     TYPE ole2_object,        " font
            column  TYPE ole2_object,        " Column
            sheet   TYPE ole2_object,
            row     TYPE ole2_object    .",
      CONSTANTS wl_c09(2) TYPE n VALUE 09.
      FIELD-SYMBOLS : <f1>,
                      <f2>.
      DATA :w_rc           TYPE i,
            w_hex          TYPE x,
            column2        TYPE ole2_object,
            column3        TYPE ole2_object,
            column4        TYPE ole2_object,
            w_deli(1)  TYPE c,
            var1 TYPE fieldname, "Delimiter
            lv_qty1(30)    TYPE c,
            lv_qty2(30)    TYPE c,
            lv_qty3(30)    TYPE c.
      DATA: it_tab1 TYPE TABLE OF ty_line, " Contains records for first sheet
            wa_tab TYPE ty_line.
    * start Excel
      CREATE OBJECT h_excel 'EXCEL.APPLICATION'.
      PERFORM err_hdl.
      SET PROPERTY OF h_excel  'Visible' = 1.
      PERFORM err_hdl.
      CALL METHOD OF h_excel 'Workbooks' = h_mapl.
      PERFORM err_hdl.
    * add a new workbook
      CALL METHOD OF h_mapl 'Add' = h_map.
      PERFORM err_hdl.
      CALL METHOD OF h_excel 'Worksheets' = sheet
        EXPORTING #1 = 1.
      CALL METHOD OF sheet 'Activate'.       "Activate the sheet.
      SET PROPERTY OF sheet 'Name' = 'Sheet1'.
      PERFORM err_hdl.
      ASSIGN w_deli TO <f1> TYPE 'X'.
      w_hex = wl_c09.
      <f1> = w_hex.
    **************************&For Column Header&*************************
      CLEAR wa_tab.
    *  CLEAR:   wa_field .
      LOOP AT it_fieldcatalog INTO  wa_fieldcatalog.
        IF sy-tabix = 1.
          wa_tab = wa_fieldcatalog-coltext.
        ELSE.
          CONCATENATE  wa_tab wa_fieldcatalog-coltext INTO wa_tab SEPARATED BY w_deli.
        ENDIF.
      ENDLOOP.
      APPEND wa_tab TO it_tab1.
      CLEAR: wa_tab.
       LOOP AT it_output INTO  GS_output.   "Loop through the Output Data.
    *  Move Quantity fields to lv variable for Concatenate.
        CLEAR: lv_qty1, lv_qty2, lv_qty3.
        CLEAR: wa_field.
        LOOP AT it_fieldcatalog INTO wa_fieldcatalog.
          CONCATENATE 'gs_output-' wa_fieldcatalog-fieldname INTO var1.
          ASSIGN (var1) TO <f2>.
    *      IF wa_field-fieldname = 'POSID' OR
          IF wa_fieldcatalog-fieldname = 'ANLN1' OR   " posid
            wa_fieldcatalog-fieldname  = 'TXT50' OR
            wa_fieldcatalog-fieldname  = 'ANBTR' OR
            wa_fieldcatalog-fieldname  = 'ANBTR1' OR
            wa_fieldcatalog-fieldname  = 'ANBTR2' OR
            wa_fieldcatalog-fieldname  = 'LOG'    OR
            wa_fieldcatalog-fieldname  = 'STATUS'.
            WRITE: <f2> TO lv_qty1.
            IF sy-tabix = 1.
              wa_tab = lv_qty1.
            ELSE.
              CONCATENATE wa_tab lv_qty1 INTO wa_tab SEPARATED BY w_deli.
            ENDIF.
          ELSE.
            IF sy-tabix = 1.
              wa_tab = <f2>.
            ELSE.
              CONCATENATE wa_tab <f2> INTO wa_tab SEPARATED BY w_deli.
            ENDIF.
          ENDIF.
        ENDLOOP.
        APPEND wa_tab TO it_tab1.
        CLEAR: wa_tab.
      ENDLOOP.
      CALL METHOD OF h_excel 'Columns' = column2     "Formatting for quantity
       EXPORTING
       #1 = 8.
      SET PROPERTY OF column2 'HorizontalAlignment' = '4'.
      CALL METHOD OF h_excel 'Columns' = column3    "Formatting for quantity
         EXPORTING
         #1 = 8.
      SET PROPERTY OF column3 'HorizontalAlignment' = '4'.
      CALL METHOD OF h_excel 'Columns' = column4      "Formatting for quantity
       EXPORTING
       #1 = 8.
      SET PROPERTY OF column4 'HorizontalAlignment' = '4'.
       CALL METHOD cl_gui_frontend_services=>clipboard_export
        IMPORTING
          data                 = it_tab1[]
        CHANGING
          rc                   = w_rc
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
    * Paste the contents in the clipboard to the worksheet
      CALL METHOD OF sheet 'Paste'.
      CALL METHOD OF sheet 'Activate'.
    * Autofit the columns according to the contents
      CALL METHOD OF h_excel 'Columns' = column.
      CALL METHOD OF column 'AutoFit'.
      GET PROPERTY OF column 'FONT'    = h_f .
    *   GET PROPERTY OF column 'FONT'    = h_f .
      SET PROPERTY OF h_f    'Name'    = 'Calibri'.    "'Courier New'."Calibrig
      SET PROPERTY OF h_f    'Size'    = 11.
    *   SET PROPERTY OF h_f   'Alignment'  = '2'.
    * disconnect from Excel
      FREE OBJECT : h_excel, column, sheet.
    endform.                    " DISPLAY_EXCEL
    *&      Form  ERR_HDL
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form ERR_HDL .
    *  *  *  FORM err_hdl .
      IF sy-subrc <> 0.
        WRITE: / 'Error using OLE Automation:', sy-subrc.
        STOP.
      ENDIF.
    endform.                    " ERR_HDL
    Thanks
    Sam

  • Multiple record update extension issue (felixone

    I just purchased the Multiple Records at Once Extension by
    Felixone. I have put it to good use but have noticed an issue with
    it. PHP MySQL.
    I am using Dreamweaver 8 with the Repeat Region behaviour,
    and the Recordset Navigation Bar, along with the extension to
    update multiple values at once from a recordset.
    If there are more records than can be displayed on the first
    page of navigation. E.g. Showing records 1-10 of 15, when doing a
    multiple table update (in this case changing a single value from 0
    to 1 and vice versa) a MYSQL error comes up. The operation is still
    completed but it doesn't go to the page specified after the update
    in the extension, but stays on the current page with the following
    error at the top:
    You have an error in your SQL syntax. Check the manual that
    corresponds to your MySQL server version for the right syntax to
    use near '' at line 1
    In the mean time, to overcome the issue, I am able to display
    all records on a single page, however once the records build up it
    won't be acceptable to have a potentialy very long list of records
    when I would like to display only 15 at a time.
    Has anyone had any experience of this, and if so would you be
    willing to help me. I have emailed felixone but I need this sorting
    out ASAP.
    Notice I have changed the show results to 5000, as going into
    the repeat region behaviour and saying 'show all' would not do
    anything. It always put it back to ten.

    Thank you Anurag,
    I have already the db created ,
    My question is how best to get the users local time
    availability into the
    database, what is the best method to use, should I use list
    menus, etc, has
    any one had to do this in a project before.
    and then when some one comes to my site i want them to be
    able to compare
    the time stored with the time of the site users country
    locally using an if
    else statement. i am using asp vb and sql server
    regards
    kenny
    "Anurag" <[email protected]> wrote in message
    news:e58mta$kbg$[email protected]..
    > Well basically first you have to collect:
    > a, the users phone number
    > b, the "display times"
    >
    > and store those values in a database - don't even think
    about NOT using
    > one
    >
    > Then you simply check when the page is called whether
    the current time
    > is within the display time...
    >
    > Oh, btw you probably have to think about which time you
    are talking about:
    >
    > the mobile phone owner's local time, the viewer's local
    time, your
    > server time...
    >
    > That should do the trick...
    >
    > Anurag
    >
    >
    >
    > twocans wrote:
    >> hello,
    >> I am looking to give my user a "show my phone
    number" option to show his
    >> mobile phone number online and at selected times by
    that user, I need to
    >> create a page that will allow my user to apply this
    as best and as easy
    >> as
    >> possible, my users are unaversial based. how best
    can I do this, is thre
    >> a
    >> snippet out there that anyone knows that may help. I
    am willing to pay if
    >> any one knows of such suitable code.
    >>
    >> regards
    >>
    >> kenny
    >>
    >>

  • After latest updates keep getting extension issues

    After updating with the newest updates today, we have been having to repair permissions to mount a firewire disk. It seems we keep getting messages that certain extensions are not loaded or installed properly. Ths is firewire to HP print drivers  to plugins/Mach.kext was installed improperly. Anyone else having this issue. I have already repaired permissions twice and this is still happening-yes I restarted using command R and repaired permissions that way.

    Sorry, as I said before, everything was running just fine no errors - nothing until I updated thru APPLE the latest updates, which included HP printer updates for the remote printers, security update, and a couple others, but thru APPLE. The system itself is only a few months old as the hard drive had been totally wiped clean and the new system installed at that time.
    SO if Apple is incapable of updating properly as suggested what should a person do. Now as to the backups, since this computer is strictly a shooting computer the only thing that ever needs backing up are the raw files that are shot. That is done by using the two other internal drives.
    MacKeeper is not on this computer, in fact only MacScan is on this computer and it is up to date. Now I do have MacKeeper on two other computers and I do not have this problem like you are saying I should be.
    Also as I said, I restarted the computer using the command -R and going into the repair permissions then into repair disk, more then once, actually three timesback and forth until nothing at all came up in permissions as being wrong and the disk repair went quickly. After all of that, there were no more errors.
    So if repairing permissions does nothing as you indicate and DU only repairs the directory, I should have accomplished nothing, but it did and after 4 days I can say those errors are no longer popping up causing application issues loading. I would assume since nothing is automatically started these applications are system oriented.
    I have been diagosing and repairing my own Mac's since 1988, but until these new systems with the everything known to mankind intergrated, I never had these problem whichis why I came to this forum to see if anyone has been having the same problem, obviously not.
    Now while it might be really nice to back up your hard drive every week or so ifnot every other day, the size and magnitude of such a job is more then most people should deal with. Apple had a great little app a few years ago that you could tell exactly what you wanted backed up, now you need to backup the entire hard drive. Now to be honest, I do not keep all my eggs in one basket nor do we have just one computer doing everything. Each older computer gets a job, different hard drives have their own jobe to do. I do not trust hard drives so everything of importance goes on CD - DVD or now BluRay. Since the first days of CD's I have had only one failure to be able to read, that was because somehow the DVD became scratched. Since I keep two computers on OS9, I still can read my first CD's. I can not say the same for the few SCSI drives I still have around.
    What I have seen is that most people have too many conflicting applications on their computers, that generally causes the problems you have talked about. Running permissions every week or two is one of the smartest ideas ever from Apple.
    But back to my original problem that I no longer have, these errors directly a result from upgrading thru Apple should not be happening to anyone.

  • Route Pattern / Extension Issue

    Hello! I'm currently having an issue with a new block of extensions in Call Manager 7.1.5.
    We recently ordered a new block of DIDs. The telco sends us the last 4 digits. The last 4 are 9XXX. When dialing these extensions internally, there is an 8-10 second pause of dead air and then it eventually rings through to the phone.
    All of my Route Patterns for each site start with a " 9. "
    My guess is that when dialing the extension, Call Manager tries to match it to a Route Pattern since it starts with a "9" followed by 3 digits. After it cycles through the Route Patterns and doesn't match it, it eventually routes it to the phone. Is this what's happening? And if so, any thoughts to how I alleviate this issue?
    Any recommendations are appreciated.
    Thanks!

    Hi James,
    It appears to be correct. Due to overlapping pattern, the call manager would wait for an inter-digit timeout to expire and route the calls to the correct pattern.
    As a workaround, you can try to lower the T302 Timer(inter-digit timeout) in call manager to 4-5 seconds (Service Parameters -> Cisco Call Manager -> T302 Timer).
    As this issue is experienced with overlapping pattern, the best way to resolve it to design your dial plan efficient so that there is no overlapping.
    HTH,
    Jagpreet Singh Barmi

  • Extension Issues 10.10.2

    Anyone having issues with extensions popping up saying they cannot be loaded.  Keeps happening since update to 10.10.2.

    Post the name of the extension or grab an image of the dialog.
    cmd+shift+4, drag the crosshairs over the dialog, Attach it to the post via the camera icon on these pages.
    Rebooting should cause the dialog to appear if it is a system extension, it may be a third party developer that has not signed the extension, or it could be a damaged Apple extension.

  • Warrenty Extension Issue

    I want to extend my laptop's warranty but have few queries.
    I want to purchase HP care pack sku UN013E* which cost 8000INR for 3 years. but there is another HP care pack SKU UN026E which is ADP + 3 day onsite Notebook service (1 year)for just 826inr. So it is possible to buy HP care pack SKU UN026E right now and then again repeat the same procedure to get warrenty extension for 3 continuous years. So for total 3 years it will be 2478INR.
    This question was solved.
    View Solution.

    Contact   Contact HP Suppport  directly for your issue.
    The Global English HP Consumer support forum is not a business unit of HP.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Adobe LiveCycle Reader Extensions issue

    Hi all,
    I have an issue about ARES. When I create a PDF file and use password to secure the document and “Changes Allowed” is set as “Commenting, filling in form fields, and signing existing signature fields”, the commenting doesn’t work and display the error as below:
    Warning: JavaScript Window-
    This document is not enabled for review in Adobe Reader. You must use Adobe Acrobat to review this document.
    Other documents which is not set password security can be commented normally. Please give me some advices.
    Any idea will be appreciated!
    Regards,
    Ryan

    Hi Steve,
    Thanks for your reply! I have something unclearly. What is the “Apply Usage Rights” step do you mean? If it looks like the attachment shows, I think I can comment on the PDF file. However, after doing this, the PDF doc settings cannot be modified by Acrobat again.
    If not, could you please tell me what is “Apply Usage Rights” step?
    Actually, the issue occurred when I use Adobe LiveCycle Reader Extensions and EMC Documentum PDF Annotation Services together. Everything works fine exception password security settings. If I don’t use password settings, all commenting functionalities are work fine.
    Regards,
    Ryan

  • Gnome shell extensions issues since 3.2 release...

    I may be a little early in the game here but I figured I would just mention that I'm having issues with pretty much all the cool extensions I had installed prior to 3.2.  I was wondering if anyone else was having similar issues.  I changed 3.0 to 3.2 in the metadata.js file to no avail, they are still unusable.  Was there any other changes that needed to be made?
    The ones I cared the most about are:
    system monitor (the cool one in the aur, not the one in repo)
    weather
    a11y (i know there is a hack, but I'd prefer a extension... or just an option to be able to remove the dang universal access icon period)
    frippery (which are a bunch of different ones such as the apps button, quick launch, and such)
    Also all my themes are a bit messed up... so what was the biggest changes in 3.2 besides the transparency finally working in the terminal?
    I still like gnome 3 and know sometimes you have to take steps back to go forward...

    wonder wrote:who cares about extensions. they are unsupported by upstream
    Well i care about extensions, since i can not login into gnome after updating to 3.2.
    Maybe i didnt spend hours on fixing the problems, but is this  the sence it is supposed to be?
    The extensions were disabled by default, after the error message came, and it didnt do anything.
    Then i moved the extensions out of  /usr/share/gnome-shell, to make it work temporarily.
    What happened? Only one extension left that made problems: gnome-shell-theme-selector.
    Does anybody how to switch this off? Or something, that can login again?
    Edit:
    i found the info again, that this theme-selector is in ~/.local/share/gnome-shell/extensions
    I moved the extension one directory higher. And now in this error message window it is said that i should re-login,
    but there is nothing said about any extension any more.
    Last edited by Archoid Billy (2011-10-02 15:58:31)

  • VO extension issue

    Hi ,
    I have requirement to add a new column in my requisition table in landing page of i-procurement. table contains 4 columns from existing VO as Req Id , Description,Total(Currency)(Not present in query,it is transient variable ) and Status (Not present in query,it is transient variable ) , other columns in table are change and receive..
    I'm able to add another column by VO extension ..but facing following issues :
    a) after VO extension , Total column value is not coming and status column is also coming blank .
    I checked these are transient column in attribute mapping of VO , not present as part of query .
    b) When we add another column by VO extension , any CO code modification is needed ?
    Any pointers ???
    Regards,
    Ashish

    Thanks Meher.
    I have added new column to last of select statement only .Following link gives to add attribute already present in table (EO) but in my case this new column is not related the VO
    My requirement is to show those supplier who are having ERS (Electronic Receipt Settlement) so at end of Select I have added a function which retrives supplier ERS is Y/N
    my query looks like
    SELECT prh.requisition_header_id,
    prh.segment1 requisition_number,
    prh.preparer_id,
    hre.full_name preparer_name,
    prh.description,
    prh.authorization_status auth_status,
    prh.cancel_flag,
    NVL(prh.closed_code, 'OPEN') closed_code,
    null card_number,
    prh.creation_date,
    prh.transferred_to_oe_flag placed_on_so_flag,
    prh.emergency_po_num,
    NVL(prh.change_pending_flag, 'N') change_pending_flag,
    prh.contractor_status,
    prh.contractor_requisition_flag,
    prh.supplier_notified_flag,
    NVL(prh.active_shopping_cart_flag, 'N') active_shopping_cart_flag,
    'POR_VIEW_MY_REQS' view_mode,
    prh.wf_item_type,
    prh.wf_item_key ,*(select Decode (count(*),0,'N','Y') ers_status*
    from po_vendor_sites_aLL pvs , po_requisition_lines_all prla
    WHERE pvs.VENDOR_ID = prla.VENDOR_ID   AND pvs.ORG_ID = prla.ORG_ID
    and pvs.Vendor_site_id = prla.Vendor_site_id
    and pay_on_code = 'RECEIPT' and pay_on_receipt_summary_code is not null
    and match_option = 'R' and prla.REQUISITION_HEADER_ID=prh.requisition_header_id ) ers_status
    FROM po_requisition_headers_all prh, per_all_people_f hre
    WHERE prh.authorization_status <> 'SYSTEM_SAVED'
    AND prh.preparer_id = hre.person_id
    AND TRUNC(sysdate) BETWEEN hre.effective_start_date AND
    hre.effective_end_date
    AND prh.preparer_id = 150480
    ORDER BY prh.creation_date DESC
    Bold one is added .......
    but columns like Total , Status are transient variables ....but i'm not sure that if I have extended all thing excpet bold should remain intact.
    Pls suggest.
    Regards,
    Ashish
    Edited by: aprak on Apr 25, 2011 9:51 PM

  • ADF Mobile bundle extension issue

    Hi
    I've just installed adf_mobile_bundle extension in Jdeveloper (as described here https://blogs.oracle.com/brunoborges/entry/first_steps_with_oracle_adf).
    It seems ok,but jdeveloper ,once, restarted doesn't reflect the changing expected : no ADF mobile application , no evidence in the >tools>preferences form.
    do i have done something wrong?
    Regards
    Max

    thank for your prompt response but it doesn't work.
    I'm newbie so it might be possible that i have doing something wrong. For istance it sound strange me see that jdeveloper, once specified the folder and the file adf-mobile_bundle.zip doesn't execute any setup step. It just shows me some information about the licence and after having clicked OK it suddenly asks to restart..I mean , I should have expect at least a run of unzip step, install process..stuff like this or jdeveloper waits the restart for doing this?
    Regards
    Max

  • HRMD_ABA05 extension issue. Extension segment not present in idoc.

    hi all,
    i have built the extension of the  HRMD_ABA message type following the istruction of note 105148.  My goal is to export the infotype 41 .  Soi have done:
    1) creation of segment Z1P0041 from E1P0041 ( WE31 )
    2) creation of extension ZHRMD_ABA05 from HRMD_ABA05 basic type
    3) updated the T777D table for 0041 infotype
    4) updated the partner profile for the receiver ( WE20 ) 
    5) updated the idoc tpye assignment ( WE82 )
    6 ) updated the receving system idoc input set up ( WE57 )
    7) updated the distribution model ( BD64 )
    Debugging the outbound process from PFAL  i can watch the Z1P0041 segment as output of RH_MASTER_IDOC_DISTRIBUTE_HRMD  but  i can't view the segment into the idoc.
    Can you help me?
    Thanks and regards. Luigi.
    Edited by: luigi la motta on Feb 8, 2011 9:48 AM

    I have solved my problem explained into the previous post.
    I have coded into the following enhancements of the sender system:
    a) badi HRALE00OUTBOUND_IDOC
    b) user exit EXIT_SAPLRHA0_004
    c) user exit EXIT_SAPLRHA0_001.
    Regards luigi.

  • Https anywhere extension issue: Google calendar https widget won't load netvibes

    Hi...suddenly on my Vista laptop, the iCal widget that I use to display Google calendar in my Netvibes portal
    no longer works. I get:
    "This Connection is Untrusted
    You have asked Firefox to connect securely to 2195877879.nvmodules.netvibes.com, but we can't confirm that your connection...."
    (I can't see any more of the error message in the box; it's cut off)
    Now, I use this same widget on my desk top with the 15.01 version of FF--no problem. I run https anywhere extension on both too.
    I also was using this just fine on my laptop until yesterday. One change I made--I downloaded the history cleaner FF extension. I can't see why that would affect it and I do sync browsers across platforms and it has no effect on my desktop.
    Any suggestions? TIA

    No one with any ideas?

  • *.indd file extension issue - InDesignCC 2014 - Windows 7

    I cannot get any file with the *.indd file extension to associate with InDesignCC 2014 in windows 7. When I try to use the "Open With" option, InDesignCC 2014 will not show up in the programs list, even if I manually select it. Should I uninstall / reinstall or is there another workaround?

    Search here for help with all things Microsoft and Windows
    http://search.microsoft.com/search.aspx?mkt=en-US&setlang=en-US

Maybe you are looking for