Unable Import "WSDL URL" in Dasboard Business Object 4.1

Dear Expert,
I do Dashboard via Web service as a Query, version: 4.1 SP3,  but I import WSDL URL, error : " Microsoft Visual C++ Runtime Library" as image . Please, help you solve!

Hi Ngunyen,
Please see Note 1676695 - Assertion Failed Exception for shared_ptr.hpp when installing .NET runtimes for Business Objects
This can happen if you do not have the VS 2005 C++ Runtimes installed.(If already installed then uninstall it)
Download the VS 2005 C++ runtimes (http://www.microsoft.com/download/en/details.aspx?id=3387) and install, then run the .NET runtimes installer again.
Login with administrator in the system and perform the below activity.
Re Install the Microsoft Visual Studio
Re Install the Dashboards.
Please let me know.
Thanks,
Arvind Shukla

Similar Messages

  • Create URL to specific Business Object for a CRM using Portal integration

    Hello CRM Community,
    we're using the CRM Portal integration. To update our business users with tasks we use the standard functionality to send Alerts using the function module SALRT_CREATE_API. It allows to specify a URL that is added to the E-Mail created in the alert using the Table parameter IT_ACTIVITIES. This URL should be filled with a direct link to the business object that must be changed. For the stand-alone CRM there is the static Method CREATE_URL of the class CL_CRM_WEB_UTILITY to build such an URL. But I was not able to find a similar class/method/function module when the CRM is used integrated in the portal. Has anyone a simmilar requirement and was able to solve it?
    Best regards
    Gregor

    Hell0
      Gregor Wolf 
    Yes   i have also same doubt regarding   class this integration , Please share this stuff  with me !!   Nice Question !!
    Thanks  & regards
    Asish

  • Unable to Save more than 1 Business-object-provider for the Connector.

    I m using MEP 1.0 Platform.
    My Ecbo Connector "BankDb" had initially "Account" Object Provider which i was able to save successfully via the MEP console.Later on i added the "Statement" Object Provider to the same connector. But i get this Exception
    java.lang.IllegalArgumentException: Object:
    {[[email protected]f,
    [email protected]55,
    [email protected]f,
    [email protected]c,
    [email protected]2,
    [email protected]d,
    [email protected]9]} is not a known entity type.
    I shut down my Server & then restarted it.i removed the AccountObject Provider & Added StatementObject Provider instead & clicked save & it saved my Connector Successfully But when i tried to add the AccountProvider too i get the same exception.In short i am unable to save both providers at the same time in the console.
    I googled later on & found something Similar on java.net
    https://glassfish.dev.java.net/issues/show_bug.cgi?id=3235
    I am not sure about all of this as i am just a beginner.
    Please Help
    Thx in Advance
    Alex.

    Hello, thanks for your interest in the GlassFish Mobility Platform. The ECBO architecture supports exactly one business-object-provider per connector. You could combine your account and statement data into a single composite business object. You could also upgrade to MEP 1.1 and use the dynamic data feature (JerseyME) on the client to retrieve dynamic data such as the statement report and use the business-object-provider for the synchronized data, ie. the account activity. For more information see the [Sun GlassFish Mobility Platform 1.1 Developer's Guide for Enterprise Connectors|http://docs.sun.com/app/docs/doc/820-7207] .
    regards,
    Hans

  • Unable to locate Live Office in Business Objects Enterprise XI3.1 download

    We recently downloaded Business Objects Enterprise XI 3.1 and plan to upgrade soon. I have been unable to locate the Live Office files. I looked in the collaterals folder. Any response would be appreciated.
    Thanks,
    Mike

    Hello Michael,
    I recommend to post this query to the [Integration Kits - Other|BusinessObjects Integration Kits; forum.
    This forum is dedicated to topics related to other BusinessObjects Integration Kits, including Siebel, Baan, PeopleSoft, and JD Edwards. 
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all Integration Kit queries remain in one place and thus can be easily searched in one place.
    Thanks a lot,
    Falk

  • Unable to open a Business Object iView

    Hi all,
    We have created a URL Iview with "http://" url we have a problem that when we access the link from a load balancer portal with "https://"  the url of the Business Object automatically changes into "https://" and hence it is not working
    Can you please help ? Is this a configuration Issue in the backend.

    Hi
    Usually SAP do not allow switch from secured to unsecured environment.Try putting a web dispatcher as a reverse proxy with https and keep both portal and BO in http,or configure https for BO server.
    There are wikis for BO integration with portal which you can follow.
    [http://wiki.sdn.sap.com/wiki/display/BOBJ/NetWeaver+Integration]
    Regards

  • "Unable to log URL" error when importing WSDL into Web Service connection

    Hello Experts
    I'm using Xcelsius Engage and I'd like to use Web Service connection.
    I've developed my own Web service (that is using 2 other web service inside it).
    and now I'm trying to import it into the Xcelsius (connection --> Web service connection).
    And I get the follwoing error:
    "Unable to log URL"
    When I browse to my wsdl file in IE the file is loaded with no problem.
    When trying to import other URLs it also works fine (for example: http://www.xignite.com/xFinancials.asmx?wsdl)
    Any idea?
    Thanks,
    Miki

    Hi Matt
    Thanks a lot!!!
    Indeed the solution was in the follwoing thread:
    VB.net code to create XML
    Parsing the query result fixed the problem.
    For others who might have the same problem:
    Here's a working web service (C# code, for vb code follow the link to the thread above):
    public Service () {
        public struct QueryResult
          public string SlpName;
          public string Commission;
        [WebMethod]
      public QueryResult[] RunQuery()
          // Open Connection - Query Data from DB table - Close connection
          SqlConnection connection = new SqlConnection("Data Source=(local);Integrated Security=SSPI;Initial Catalog=SBODemoUS");
          SqlDataAdapter adapter = new SqlDataAdapter(
            "SELECT SlpName, Commission FROM OSLP", connection);
          DataTable DT_QryResult = new DataTable();
          adapter.Fill(DT_QryResult);
          connection.Close();
          // Parse data to be forward to Xcelsius
          QueryResult[] QryRes = null;
          QryRes = new QueryResult[DT_QryResult.Rows.Count];
          int i=0;
          foreach (DataRow row in DT_QryResult.Rows)
            QryRes<i>.SlpName = row["SlpName"].ToString();
            QryRes<i>.Commission = row["commission"].ToString();
            i++;
          return QryRes;
    Best regards,
    Miki

  • "Unable to load URL" error when importing VS2008 created WSDL

    One of my developers created a simple web service in Visual Studio 2008 that queries a database on our SQL Server 2005. I can view the web service results in a web browser with no problems. I can also pull up the WSDL in the web browser with no problems (http://<ip address>/Service.asmx?WSDL). However, when I try to load WSDL into a Web Service Connection in Xcelsius 2008, I get the "Unable to load URL" error.
    I've also tried to use the web service as a data source in Crystal Reports 2008, but I get another error:
    Logon failed.
    Details: Schema file is invalid
    error: src-resolve: element 'schema@http://www.w3.org/2001/XMLSchema' not found
    I've seen a post in which it looked like Crystal acknowledged this as a bug in the XML driver used by Crystal products, but it should be fixed in a service pack update. I've got the latest service packs and fix packs installed for both Xcelsius 2008 and Crystal Reports 2008.
    I scanned the information being sent/returned to Xcelsius using Fiddler and it looks like the request is getting through and the actual WSDL file is being returned to Xcelsius, so it shouldn't be an authentication issue. It seems like Xcelsius doesn't like the WSDL file for some reason. However, it is automatically generated by Visual Studio 2008.
    Any ideas as to how I can get Xcelsius to use this test web service?

    Having the same issues here also.
    I can see the wsdl file being accessed successfully in the web access log, but Xcelsius v5.3 return "unable to load URL"
    Only thing I can guess is that the schema is "untyped"
    So, nobody in SAP has a solution?

  • Unable to import Business Object in DQE

    I've some prob with "importing business Objects" in SAP Enterprise Portal
    I've EP6.0 SP16 installed.
    While importing the Business Object from "BW" System
    I expand the BW Node but alas! dont get any BO in it..
    It shows a message "Loading...." and hangs..
    I've read some of the discussion Forum on SDN...
    I've given the DQE Admin UserID and Password correctly.
    Also I've done the User Mapping for BW System and gave the same UserID and Password as given in DQE in the "Personalize" section
    I've tested the "BW" Connection using the option "Connection Test".
    It gives "DQE Connection Succeeded'.
    Please let me know where i'm wrong..
    Thanks..

    First thing dear Actually you are using the wrong term it is not exactly import it is EXPORT the existing BC4J component in Jdev.
    Just run the export command it will automatically create the package in the Home directory.
    Create a new JWS and Project and add related PG or Region there.[[Which you have exported]]
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Error after import external webservice(RFC) wsdl url to Process Composer

    Hi all,
    I try to use RFC webservice in my BPM as below:
    1. Expose RFC as webservice using CAF (import external service RFC and then create application service use this external service)
    2. Define Destination in NWA.
    3. Create a Process Composer project, and import the external webservice(RFC) wsdl file as service interface in the project.
    After importing, i get error : the port type specified for the ...binding is undefined. Check port type name and ensure it is defined.
    If i import another external service, not RFC (such as business object), there is no error.
    My system is NWCE 7.11
    Thanks in advance,
    Sinh.
    Edited by: Sinh Nguyen Van on Jul 20, 2009 8:29 AM

    Hi Bharath,
    Below is content of wsdl url and error message, thanks
    Error message:
    The 'zfm_rfc_caf_as' port type specified for the 'zfm_rfc_caf_asBinding' binding is undefined. Check the 'zfm_rfc_caf_as' port type name and ensure it is defined.
    wsdl url :
    - <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://www.sap.com/caf/demo.sap.com/s00_caf_rfc/modeled/zfm_rfc_caf_as" xmlns:b0="http://www.sap.com/caf/demo.sap.com/s00_caf_rfc/modeled/zfm_rfc_caf_as">
      <import namespace="http://www.sap.com/caf/demo.sap.com/s00_caf_rfc/modeled/zfm_rfc_caf_as" location="http://sinhnv-lap:50000/zfm_rfc_caf_as/zfm_rfc_caf_asBeanImpl?wsdl=binding&mode=ws_policy" />
    - <service name="zfm_rfc_caf_as">
    - <port name="zfm_rfc_caf_asBindingPort" binding="b0:zfm_rfc_caf_asBinding">
      <address xmlns="http://schemas.xmlsoap.org/wsdl/soap/" location="http://sinhnv-lap:50000/zfm_rfc_caf_as/zfm_rfc_caf_asBeanImpl" />
      </port>
      </service>
      </definitions>
    Edited by: Sinh Nguyen Van on Jul 22, 2009 4:18 AM

  • QAAWS : Import URL failed : Unable to load URL

    Hi everybody,
    I have a problem with QAAWS . I created a QAAWS and copied URL  ( I clicked "To Clipboard" but nothing happened so I clicked the URL, and a web browser appeared, then I copied this URL) .
    my URL : http://boxi31:8080/dswsbobje/qaawsservices/biws?def=1&cuid=AXP8AcnBLFVClPYIcK5jUGE
    Next, I opened Xcelsius \ Clicked Manage Connections \ Add QAAWS \ named this connection \ pasted the URL copied above to the blank of " WSDL URL" . After that, I clicked "Import" but an Error dispalyed : Unable to load URL.
    I don't know why it happened like that . Maybe I made mistakes somewhere???
    Pls, Help me to solve this problem.

    Hi All,
    I was having the same problem in BI4.0 SP2 Patch 16. Even external WSDLs gave the error so the issue wasn't with the BOBJ Server or the QaaWS URL syntax.
    I'm on a machine that also had Client tools, CRE, CR 2008 and CR 2011 installed. I forget the install order. I uninstalled the Xcelsius patch, then the base SP2, and re-installed them both.
    This fixed the issue.
    So maybe one of the other installs messed with Xcelsius. If you're having this error, and the URL is displaying fine in a browser, then maybe try from another install of Xcelsius.

  • SRM 7.0 business object / individual procurement document direct URL access

    Hello,
    While our Basis team is configuring the Portal integration with our newly upgraded SRM 7.0 system, I am wondering if it's possible to take a sneak peak at the business object on the WebDynpro screen, for example, via SICF webdynpro service, such as
    /default_host/sap/bc/webdynpro/sapsrm/wdcc_v_rfq_puchaser
    After activating all relevant services (as far as I understand), I tried to access the following URL directly on the browser:
    https://<server;domain>:<port>/sap/bc/webdynpro/sapsrm/wdcc_v_rfq_purchaser?sap-client=010&sap-language=EN?
    I encountered the "Access via 'NULL' object reference not possible" exception on the web page. I think it's due to the missing object type and object id reference on the HTTP parameters. But what are the parameter name(s) that are required on the URL? Does anybody have the experience in accessing an individual document through direct URL?
    Thanks,

    This question has been answered by the following blog:
    /people/ulli.hoffmann2/blog/2009/10/07/srm-70-running-it-without-the-portal

  • Importing business objects in SAP

    Hi,
    I am working in Newgen Software Technologies LTD., a New Delhi Based company. We have our products in Document Management, Business Workflow  and imaging. we are also technology partners of SAP. Currently we are trying to integrate SAP with our Document Management System, OmniDocs. Actually we want to archive the documents generated in SAP to our DMS. The problem is we have miniSAP at our side, but we do`nt have business objects to work with. We have downloaded the business objects from the site
    www.it-minds.com/goto/abapobjects
    The problem is we are following the instructions in the readme.txt in order to import the business objects in SAP through 'tp' command but it is giving the error message as  
    Warning: unknown parameter SAPSID in parameter file (line 1).
    Warning: unknown parameter SAPSYSTEM in parameter file (line 2).
    Warning: unknown parameter SAPSID in parameter file (line 1).
    Warning: unknown parameter SAPSYSTEM in parameter file (line 2).
    tp finished with return code: 208
    Please help!!
    If there is any other method to import business objects in miniSAP please suggest..
    Vibhor Jain
    Sr. Software Engineer
    Newgen Software Technologies LTD.
    New Delhi

    hi
    Do u have any relavant SAP system running in your company? if so, you will definitely have a SYS-ID and a SYSTEM-NAME in your system. i guess this error shouldn't pop after that.
    Regards
    Arun.
    PS: Kindly reward useful answers.

  • 'Unable to find operation: null'   Error When I invoke Composite Wsdl Url

    Hi ,
    I have created one composite application which consists one BPEL process.That BPEL process takes input from other application.
    But When I invoke that Wsdl Url to push the data from my application to that Wsdl Url,It is giving below error(System fault):
    'Unable to find operation: null' .
    I am getting below message in enterprise manager console (http://ipaddress:port/em):
    'Composite instances are not generated for rejected messages. Click the error message for details'.
    Note: When u click on 'unable to find operation: null' link it is showing the soap request that we submitted to composite URL.
    Instance ID is also not created.
    Can anybody help me regarding this issue?

    As you are able to test the Composite in the EM console and the correct operation, everything looks fine from SOA side.
    Now whatever application from which you are trying to push the data, make sure while configuring the WSDL of the Composite, please check whether you can select the operation of the SOA Composite over there. I think you are leaving the default option which is null or not selecting the required operation over there.
    Hope this helps
    N

  • Error:Invalid WSDL URL While Importing Internet WSDL In Webdynpro

    Hi Everyone,
    I Am Facing Error While Importing Webservices in Webdynpro.
    https://usint.skire.com/ws/services/mainservice?wsdl
    The above WSDL I tried in Both Webservice Model and Adaptice Webservice Model.
    I Am Geeting Invalid WSDL URL.
    is any configuration required for https [SSL Webservices]Under Visual Admin Level.
    I Am Able To Consume the http Webservices in Internet www.webservicex.net
    In that site i took three webservices and i am able to cosnume all these tings in Webdynpro.
    The above https services i am facing the problem.
    Thanks
    SubbaRao

    Hi,Thanks For Reply,
    I Am getting the Invalid WSDL URL After Importing into Webdynpro.
    When I CHecked Under Wsnavigator Of Portal.
    i am getting below error
    Cannot download WSDL from https://usint.skire.com/ws/services/mainservice?wsdl: ERROR : Trying to resolve qualified base : DataHandler, but the uri resolver is not able to resolve the relevant namespace.
    Thanks
    SubbaRao

  • Unable to login to cmc after installing business objects xi 3.0

    Hi Friends,
    I'm new to Business Objects, i've installed bussiness objects XI 3.0 and i did not specify the user name and password during installation (since there was a checkbox option to configure it later after installation). Now i've troble logging in. I tried to login using Administrator as username and no password, its neither logging in nor giving me an error message but asking me to provide login details, whereas i could login with the same administrator as username into  Business View Manager and Diagnostic Tools. Please help.
    thanks.

    Change your URL to the IP address of the server or FQDN.
    Also try to disable windows enhanced security if using 2003.
    Most common causes of this are DNS issues or session problems with the browser (bothh may be resolved with the steps above).
    Regards,
    Tim

Maybe you are looking for