I am getting the Error as "Returned Content XMl is Empty" in SAP Jco Config

Hi,
I am facing the problem in SAP Jco Config in SAP_JCo_Interface Action,
while searching the BAPI (I am Using search Pattern as BAPI*) I am getting the error like following
"Returned Content XMl is Empty".
this URL refer the same problem ... Re: Reg : JCOProxy error:null
But I am able to connect the SAP R/3 system successfully .. because  from the Existing Transaction the BAPI is called successfully.
Regards,
Dhanabal T
Edited by: Dhanabal Thangavel on Jan 15, 2009 8:30 AM
Edited by: Dhanabal Thangavel on Jan 15, 2009 8:37 AM

Hi,
Are you deploying Office 365 with the latest Office Deployment Tool? Try to download the latest version of ODT from below link, then try again:
http://www.microsoft.com/en-us/download/details.aspx?id=36778
A similar issue was resolved here, you might want to have a look:
http://social.technet.microsoft.com/Forums/en-US/eeb7b577-7868-487a-851d-a6d8c1c6bbda/office-c2r-installation-error-17002?forum=officeitpro
BTW, Microsoft Office 365 Community > Forums > Deploy Office 365
is a better source for this kind of problem and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
Thanks,
Ethan Hua CHN
TechNet Community Support
It's recommended to download and install
Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
programs.

Similar Messages

  • Why do I keep getting the error message "insufficient content for edit"?

    I'm following a tutorial to create crawling text but when I come to superimpose it onto my video, I get the error message "insufficient content for edit"?
    The crawling text lasts for 10 seconds.
    I'm confused

    I usually get that error when I'm trying to cut in a shot that FCP decides is lacking in content. It might be a perfectly good shot on its own, but it doesn't really add to the story. When I step back and think about it, the program is usually right. I also sometimes get "Edit operation had no effect" which is a little harsh. I like to think my edits have some effect.

  • GNU fortran90 doesn't work now.  I get the error message:gfortran: warning: couldn't understand kern.osversion '14.0.0 ld: library not found for -lcrt1.o collect2: error: ld returned 1 exit status

    GNU fortran 90 no longer works.
    I get the error message:
    gfortran: warning: couldn’t understand kern.osversion ‘14.0.0
    ld: library not found for -lcrt1.o
    collect2: error: ld returned 1 exit status

    GNU fortran 90 no longer works.
    I get the error message:
    gfortran: warning: couldn’t understand kern.osversion ‘14.0.0
    ld: library not found for -lcrt1.o
    collect2: error: ld returned 1 exit status

  • I dont have any Add-ons with my FireFox. After upgrade to the latest version 26.0 I'm keep getting Script error "chrome://global/content/binding/popup.xml:580"

    Quite frequently I'm keep getting the error like "Script is not responding....I dont have any Add-ons with my FireFox. After upgrade to the latest version 26.0 I'm keep getting Script error "chrome://global/content/binding/popup.xml:580" Stop or Continue Script.
    Currently I don't have any Add-Ons installed in my FireFox, so I can suspect any Add-ons.
    I'm facing this issue only after the upgrade to 26.0 recently.

    Ifound this article:
    https://support.mozilla.org/pt-BR/questions/746499
    in this article the problem is similar not the same, but sdmitch16 had a intersting idea disable the chrome options
    and i search more in the internet i also found this:
    https://support.mozilla.org/pt-BR/questions/760704

  • TS3297 I keep getting the error 306 cannot connect to the iTunes Network when downloading songs on iTunes. I've tried all the troubleshooting steps from the forums and my technical issues are still unresolved. I have Windows 7. Please help!!

    I keep getting the error 306 cannot connect to the iTunes Network when downloading songs on iTunes. I've tried all the troubleshooting steps from the forums and my technical issues are still unresolved. I have Windows 7. Please help!!

    iTunes Store loads partially or returns "Error 306" or "Error 10054"
    Proxies, parental control settings and software, security or filtering software, or a bad iTunes Store cache can cause this.
    To address proxies, Remove Internet Options proxy settings  ( http://support.apple.com/kb/TS1490 ) and connect to the Internet without a proxy.
    To reset iTunes Store cache:
    In iTunes, choose iTunes > Preferences (Mac) or Edit > Preferences (PC).
    Click the Advanced tab.
    Click the "Reset cache" button.
    Click OK and see if the issue is resolved.
    Adjust Parental Controls in iTunes:
    Open iTunes.
    Access iTunes preferences:
    On a Mac: From the iTunes menu, choose Preferences.
    On a Windows PC: From the Edit menu, choose Preferences.
    Click the Parental Controls tab.
    Remove restrictions on Parental Controls.
    For more information on parental controls or content filtering software, see iTunes 10.5 for Windows: May see performance issues and blank iTunes Store.
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • Getting the error while calling the report from oaf page

    Dear all
    when i am calling the report from oaf page
    if (pageContext.getParameter("PrintPDF") != null)
    DataObject sessionDictionary =
    (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response =
    (HttpServletResponse)sessionDictionary.selectValue("HttpServletResponse");
    try
    ServletOutputStream os = response.getOutputStream();
    // Set the Output Report File Name and Content Type
    String contentDisposition = "attachment;filename=EmpReport.pdf";
    response.setHeader("Content-Disposition", contentDisposition);
    response.setContentType("application/pdf");
    // Get the Data XML File as the XMLNode
    XMLNode xmlNode = (XMLNode)am.invokeMethod("getEmpDataXML");
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    xmlNode.print(outputStream);
    ByteArrayInputStream inputStream =
    new ByteArrayInputStream(outputStream.toByteArray());
    ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();
    //Generate the PDF Report.
    TemplateHelper.processTemplate(((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
    "XXCRM", "XXCRM_EMP",
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
    inputStream,
    TemplateHelper.OUTPUT_TYPE_PDF, null,
    pdfFile);
    // Write the PDF Report to the HttpServletResponse object and flush.
    byte[] b = pdfFile.toByteArray();
    response.setContentLength(b.length);
    os.write(b, 0, b.length);
    os.flush();
    os.close();
    } catch (Exception e)
    response.setContentType("text/html");
    throw new OAException(e.getMessage(), OAException.ERROR);
    pageContext.setDocumentRendered(false);
    i am getting the error java.classcastexception at this line
    DataObject sessionDictionary =
    (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    regards
    Sreekanth

    check if you have import oracle.cabo.ui.data.DataObject; in your import statement.
    --Prasanna                                                                                                                                                                                               

  • TS4504 Getting the error "The error occurred while processing a command of type 'createODSignedIdentity' in plug-in 'servermgr_certs'".

    I have been receiving the alerts about an expiring (now expired) code signing ertificate. I have been unable to resolve the issue with the 'Replace' button on the alert page. When the button is pressed, nothing happens. I get the error when I go to Profile Manager. I have had no success with [/Applications/Server.app/Contents/ServerRoot/usr/sbin/certadmin --recreate-CA-signed-certificate] either. When I try this as root, I get the error "
    2013-09-30 22:29:06.697 certadmin[22718:a07] -[CertsRequestHandler createODSignedIdentityWithRequest:]: SecIdentityCopyPreferred error: No OD CA found
    /Applications/Server.app/Contents/ServerRoot/usr/sbin/certadmin Unable to create CA signed identity(error = -25300) zioneq.private Code Signing Certificate"
    I'm stuck; no idea what to do. Runing Server version 2.2.2 (169.3) on Mountain Lion OS X 10.8.5 (12F37).

    Bump.  Exact same problem here as well.  OS X 10.8.5 with Server 2.2.2
    Any ideas?

  • Is it safe to update my iPhone to IOS 5? I have backed it up, synced it, and transferred my purchases but I still get the error message...

    So, yes. Backed up, synced, and I have all my purchases transferred... The thing is, I just got a MacBook Pro for my birthday, and I get the error message saying "Updating to iOS 5.1.1 will delete all of the apps and media, including iTunes Store purchases, on your iPhone. To preserve your content, apply this update on the computer where you sync apps, music, videos, and photos.. "
    The computer I had been previously using simply would not recognise that iOS5 was available (it was a Windows PC; this is my first apple computer.)
    So... Is it safe to update it?
    What would I have to do to qualify this laptop as the "computer where I normally sync"?

    If everything is on your computer, as it should be, then you are safe.
    Not sure what you want.
    Your iphone simply mirros the selected content of your computer.  If all of your content is on your computer, then it will be on your iphone.

  • I keep getting the error message "apple application support is required to run itunes. Please uninstall itunes and then install it again." I've done this twice and still keep getting the same message...I'm at wits end Please HELP!!!

    I keep getting the error message "apple application support is required to run itunes. Please uninstall itunes and then install it again." I've done this twice and still keep getting the same message...I'm at wits end Please HELP!!!

    Let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, does iTunes launch properly now?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • Have a new itouch. I'm having trouble downloading iTunes. I keep getting the error message: Apple Application software was not found. Apple application support is required to run iTunesHelper. Please uninstall iTunes, then install iTues again. Error 2.

    I have a new iTouch. I'm having trouble downloading iTunes. I keep getting the error message: "Apple Application Software was not found. Apple application support is required to run iTunesHelper. Please uninstall iTunes, then install iTunes again. Error 2." I have uninstalled and tried installing again and get the same error message. What do i need to do?
    Lg

    Install 7-Zip (free), or a free trial of WinRAR, and use one of them to extract the contents of the iTunesSetup.exe or iTunesSetup64.exe installer file, then try installing AppleApplicationSupport.msi as a standalone component. Even if it won't install you may get a more useful error message as to why not.
    tt2

  • Hi, I updated my version of iTunes and now get the error "The program can't start because MSVCR80.dll is missing from your computer".

    Hi, I hope some one can help as I updated my version of iTunes and now get the error "The program can't start because MSVCR80.dll is missing from your computer". I understand that I need to delete and reinstall iTunes but all of my music has been uploaded from CD's and I'd like to know if these are safe if I delete iTunes of if they too will be deleted. I have over 1300 songs so this is a big question for me.  Many thanks.

    Under normal circumstances, an uninstall/reinstall doesn't touch your content. (That being said, it's still always a good idea to maintain a current backup at all times in case of disasters of any sort.)
    First try updating to iTunes 11.1.5.5, using an installer downloaded from the Apple website:
    http://www.apple.com/itunes/download/
    If you still get the errors after that, try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • When I try to open iPhoto I get the error message "The library "iPhoto Library" cannot be opened.

    When I try to open iPhoto I get the error message "The library "iPhoto Library" cannot be opened. To open it, you must upgrade to the latest version of IPhoto." But the app store says that the latest version is installed.
    I just migrated from 2011 macbook to new 2014 macbook with Yosemite on it.
    Here is the main error - Dyld Error Message:   Library not loaded: /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis   Referenced from: /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow   Reason: image not found
    MacBook Pro 2.8 GHz Intel Core i7 16 GB 1600 MHz DDR3
    OSX 10.10.1
    IPhoto 9.6
    Any help much appreciated.

    There is a framework missing in your System library. You need to reinstall MacOS X to restore the dynamic library:
    See:
    Dyld Error Message:
      Library not loaded: /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
      Referenced from:
    Have you run any cleaner applications that could have removed files, or installed third party software lately?
    To reinstall the system, boot into Recovery:
    See this page:  OS X: About OS X Recovery
    -- Léonie
    Added:
    How are you launching iPhoto? From your Dock? The Dock icon may still be linked to an older iPhoto version. Just to be sure, you are opening really iPhoto 9.6, launch iPhoto by double-clicking the iPhoto icon in your applications folder. Your crash log  with the the "Library not found" error message should show the version number of iPhoto. Which version is it showing?

  • Getting the Error when creating the WSD(Web Service Defination)

    Hello,
    When I tried to create the WSD(Web Service Defination) through the Wizard or function module I am getting the error "Error during activation" and again it is giving the error "internal error ACTIVATE in WEBSERVICE Wizard;".
    What will be the probable cause of this error.
    Is I have to change some configuration
    Please Suggest.
    Thanks
    Vineet

    I have the same problem - error returned is
    Error during activation
    Message no. WS_TOOL085
    but no further information is provided
    But the Virtual Interface in the package does activate with no problem - so this is WSD specific!
    Some help would be appreciated...

  • Getting the error while using bapi 'BAPI_PROJECTDEF_UPDATE'.

    Hi,
    All
    To fulfill a requirement of project definition update in PS module, I have been trying with bapi 'BAPI_PROJECTDEF_UPDATE' , but I am getting the error like 'The external key is not compatible with the internal key'.
    Following are the details of my source code:
    CALL FUNCTION 'BAPI_PS_INITIALIZATION'
       data: ls_def_strucure LIKE BAPI_PROJECT_DEFINITION,
           ls_def_update LIKE BAPI_PROJECT_DEFINITION_UP,
           ls_error like bapireturn1.
    ls_def_strucure-PROJECT_DEFINITION = '11011'.
    ls_def_strucure-DESCRIPTION = 'Indian Metro Updated by BAPI'.
    ls_def_update-DESCRIPTION = 'X'.
    CALL FUNCTION 'BAPI_PROJECTDEF_UPDATE'
       EXPORTING
         currentexternalproje          = '11011'       " Project Definition
         currentinternalproje          = '11011'
         project_definition_stru       = ls_def_strucure
         project_definition_up         = ls_def_update
      IMPORTING
        RETURN                        = ls_error
    * TABLES
    *   E_MESSAGE_TABLE               =
    CALL FUNCTION 'BAPI_PS_PRECOMMIT'.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    I have tried with 'BAPI_PROJECT_MAINTAIN' ,but there I am not getting any idea to usage of this bapi.
    please help me if you have any solution for this problem.
    Thanks in advanced.

    Thanks for your quick reply
    Actually i have a requirement to update the Project definition and other Project elements like WBS, Network , Activities and Milestone. I referred several documents and came to know that 'BAPI_PROJECT_MAINTAIN' can perform these all update tasks. But tried with that bapi but got the error. First help me please if you have any idea about this BAPI .
    Coming to BAPI_PROJECTDEF_UPDATE I got the error like Internal and exrternal keys  are not type compatible with each other.
    So , do you have any idea what would be the exact value of these two parameters.

  • Getting the error at reverasal quantity in the MIRO

    HI,
    My scenario is PO created at the time PO received Quantity :50
    MIGO->Quality-->MIRO
    I want to cancel the quantity 20.
    Reversal the Quantity is 20 getting the error:
    The Material Still Pending at Quality
    Message no. 00398
    Diagnosis
    Placeholder for batch input error text, this message is not output.
    The Material Still Pending at Quality
    how to solve this error

    Hi
    are u doing MIGO reversal or MIRO reversal?
    If MIGO reversal, it has to be for full quantity only. The stock has to be in quality only.
    For doing partial return, you need to do return delivery with movement type 122.
    Thanks
    Sachin

Maybe you are looking for