FileNotFoundException System.Data.Services.Client

Hi Sirs,
I have a problem on integrating Bing search in my windows phone app. There is no compiler error but every time I'm using the Bing class that is using the System.Data.Services.Client, it always state this error
An exception of type 'System.IO.FileNotFoundException' occurred in BingApp.exe but was not handled in user code
Additional information: Could not load file or assembly 'System.Data.Services.Client, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified.

Nope dude.
We have Server versions only.
List below:
  EXE CLEANSESERV_0-10008119.EXE DS CLEANSING PACKAGE XI 3.2 SP1 (12.2.1.0) (SERVER)  0 Info  881046 30.10.2009
  EXE CLEANSESERV_0-10008119.EXE DS CLEANSING PACKAGE XI 3.2 SP2 (12.2.2.0) (SERVER)  0 Info  1296485 24.03.2010
  EXE DATASERV_0-10008119.EXE DATA SERVICES XI 3.2 SP1 (12.2.1.0) (SERVER)  0 Info  853955 30.10.2009
  EXE DATASERV_0-10008119.EXE DATA SERVICES XI 3.2 SP2 (12.2.2.0) (SERVER)  0 Info  855038 24.03.2010
  EXE DATASERV_1-10008119.EXE DATA SERVICES XI 3.2 (12.2.0.1) (SERVER)  1 Info  851852 16.10.2009
  EXE DATASERV_1-10008119.EXE DATA SERVICES XI 3.2 (12.2.1.1) (SERVER)  1 Info  854081 24.11.2009
  EXE DATASERV_1-10008119.EXE DATA SERVICES XI 3.2 (12.2.2.1) (SERVER)  1 Info  855916 11.06.2010
  EXE DATASERV_2-10008119.EXE DATA SERVICES XI 3.2 (12.2.1.2) (SERVER)  2 Info  854081 14.12.2009
  EXE DATASERV_2-10008119.EXE DATA SERVICES XI 3.2 (12.2.2.2) (SERVER)  2 Info  851386 05.08.2010
  EXE DATASERV_3-10008119.EXE DATA SERVICES XI 3.2 (12.2.1.3) (SERVER)  3 Info  855972 05.02.2010
  EXE DATASERV_3-10008119.EXE DATA SERVICES XI 3.2 (12.2.2.3) (SERVER)  3 Info  851443 15.10.2010
Gracias...!!
Let's play with Aurora (BO XI 4.0)

Similar Messages

  • To add new record into the table Data Service client

    When I am trying to add new record into the table Employeedetails using Data Service client it is giving a sql exception: "java.sql.SQLException: Violation of PRIMARY KEY constraint 'PK__EmployeeDetails__6383C8BA'. Cannot insert duplicate key in object 'EmployeeDetails'. Severity 14, State 1, Procedure 'PC-P41403 null', Line 1."
    Code:
    DataService ds=DataServiceFactory.newDataService(getInitialContext(),"EmplDetApp","ld:EmplDetAppDataServices/EmployeeDetails");
    EmployeeDetailsDocument edoc=EmployeeDetailsDocument.Factory.newInstance();
    edoc.addNewEmployeeDetails();
    //here I set the primary key value empid
    edet.setEmpid("1212");
    edet.setEmpname("manu");
    ds.submit(edoc);
    Error
    EmpName 5 java.sql.SQLException: Violation of PRIMARY KEY constraint 'PK__EmployeeDetails__6383C8BA'. Cannot insert duplicate key in object 'EmployeeDetails'. Severity 14, State 1, Procedure 'PC-P41403 null', Line 1
    com.bea.ld.dsmediator.DataServiceException: java.sql.SQLException: Violation of PRIMARY KEY constraint 'PK__EmployeeDetails__6383C8BA'. Cannot insert duplicate key in object 'EmployeeDetails'. Severity 14, State 1, Procedure 'PC-P41403 null', Line 1
         at com.bea.ld.dsmediator.update.JDBCAdaptor.save(JDBCAdaptor.java:247)
         at com.bea.ld.dsmediator.update.DataServiceMediator.submit(DataServiceMediator.java:528)
         at com.bea.ld.dsmediator.update.DataServiceMediator.submit(DataServiceMediator.java:245)
         at com.bea.ld.ServerBean.submit(ServerBean.java:529)
         at com.bea.ld.Server_ydm4ie_EOImpl.submit(Server_ydm4ie_EOImpl.java:910)
         at com.bea.ld.Server_ydm4ie_EOImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:492)
         at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:435)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:430)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:35)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
         at java.lang.Thread.startThreadFromVM(Unknown Source)
    Caused by: java.sql.SQLException: Violation of PRIMARY KEY constraint 'PK__EmployeeDetails__6383C8BA'. Cannot insert duplicate key in object 'EmployeeDetails'. Severity 14, State 1, Procedure 'PC-P41403 null', Line 1
         at weblogic.jdbc.mssqlserver4.TdsStatement.processWarning(TdsStatement.java:1178)
         at weblogic.jdbc.mssqlserver4.TdsStatement.parseMsWarning(TdsStatement.java:1089)
         at weblogic.jdbc.mssqlserver4.TdsStatement.getMoreResults(TdsStatement.java:756)
         at weblogic.jdbc.mssqlserver4.TdsStatement.execute(TdsStatement.java:210)
         at weblogic.jdbc.mssqlserver4.TdsStatement.executeUpdate(TdsStatement.java:97)
         at weblogic.jdbc.mssqlserver4.TdsStatement.executeUpdate(TdsStatement.java:1455)
         at weblogic.jdbc.wrapper.PreparedStatement.executeUpdate(PreparedStatement.java:147)
         at com.bea.ld.dsmediator.update.JDBCAdaptor.save(JDBCAdaptor.java:151)
         ... 15 more
    But I am not sure why it is giving an exception as Violation of PRIMARY KEY.
    The update method works fine for the same client.
    The exception only happens when I am trying to insert a new record.
    Please help me to figure out this problem.

    If you are absolutely sure that you do not have such a row already in your table, open a case with customer support and reference CR321312. I believe the work-around is to put ld-server-core.jar in your client classpath.
    Correction: put ld-server-app.jar in the client classpath
    Edited by mreiche at 09/17/2007 3:28 PM

  • Data Services and Data Quality Recommnded Install process

    Hi Experts,
    I have a few questions. We have some groups that have requested Data Quality be implemented along with another request for Data Services to be implemented. I've seen the requested for Data Services to be installed on the desktop, but from what I've read, it appears to be best to install this on the server side to allow for more of a central benefit to all.
    My questions are:
    1. Can Data Services (Server) install X.1 3.2 be installed on the same server as X.I 3.1 SP3 Enterprise?
    2. Is the Data Services (CLIENT) Version dependent on if the Data Services (Server) install is completed? Basically can the u201CData Services Designeru201D be used without the Server install?
    3. Do we require a new License key for this or can I use the Enterprise Server license key?
    4. At this time we are not using this to move data in and out of SAP, just using this to read data that is coming from SAP.
    From what I read, DATA Services comes with the SAP BusinessObjects Data Integrator or SAP BusinessObjects Data Quality Management solutions. Right now it's seems we dont have a need for the SAP Connection supplement, but definetly something we would implement in the near future. What would be the recommended architecture? A new Server with tomcat and cmc (seperate from our current BOBJ Enterprise servers)? or can DataServices be installed on the same?
    Thank you,
    Teresa

    Hi Teresa.
    Hope you are referring to BOE 3.1 (Business Objects Enterprise) and BODS (Business Objects Data Services) installation on the same server machine.
    Am not an expert on BODS installation.
    But this is my observation :
    We had recently tested on a test machine BOE BOXI 3.1 SP3 (full build) installation before upgrade of our BOE system.
    We also have BODS in our environment.
    Which we also wanted to check whether we could keep on the same server.
    So on this test machine, which already has BOXI 3.1 SP3 build, when i installed BODS server installation,
    what we observed was that,
    all the menus of BOE went away
    and only menus of BODS were seen.
    May be BODS installation overwrites/ or uninstalls BOE, if it already exists ?
    I dont know.  Though i could not fine any documentation, saying that we cannot have BODS and BOE on the same server machine. But this is what we observed.
    So we have kept BODS and BOE on 2 different machines running independently and we do not see any problem.
    Cheers
    indu

  • Wcf Data Service fails when more than 8properties  in the 'select=' portion

    Hi:
    I am using WCF Data Service and Oracle
    EF Provider is ODAC11.2 Release 4
    Wcf Data Service fails when more than 8 properties are specified in the 'select=' portion of the URI
    here is my code
    var q = from c in this.ctx.SALESORDER_ITEM
    select new
    c.SORDERDETAILID,
    c.IID,c.DMFLAG,c.OWNERID,c.SKUID,c.SKU_ID,c.TRADENO,c.SOURCEID,c.SORDERID
    excetion:
    InvalidOperationException: An error occurred for this query during batch execution. See the inner exception for details
    The inner exception is null, but the DataServiceClientException states: Value cannot be null Parameter name: value
    the exception is thrown in base.OnStartProcessingRequest(args) method (overridden).
    Here is the call stack as well:
    at System.Data.Services.WebUtil.CheckArgumentNull[T](T value, String parameterName)
    at System.Data.Services.Internal.ProjectedWrapper.set_PropertyNameList(String value)
    at lambda_method(Closure , Shaper )
    at System.Data.Common.Internal.Materialization.Coordinator`1.ReadNextElement(Shaper shaper)
    at System.Data.Common.Internal.Materialization.Shaper`1.SimpleEnumerator.MoveNext()
    at System.Data.Services.Internal.ProjectedWrapper.EnumeratorWrapper.MoveNext()
    at System.Data.Services.DataService`1.SerializeResponseBody(RequestDescription description, IDataService dataService)
    at System.Data.Services.DataService`1.HandleNonBatchRequest(RequestDescription description)
    at System.Data.Services.DataService`1.HandleRequest()
    Is there a max number of properties in $select statement
    I think may be it is oracle provider's problem ,but i don't konw how to debug it Can anyone help me
    Any help is greatly appreciated

    I believe the null/empty string issue is unrelated to the 8 column issue, at least for ODP.NET. For example, let's take the original query in the OBE:
    http://.../yoursvcfile.svc/EMPLOYEES?$select=EMPLOYEE_ID,FIRST_NAME,LAST_NAME,SALARY,DEPARTMENT_ID,DEPARTMENT,EMAIL,PHONE_NUMBER,MANAGER_ID
    Let's make all the columns selected not nullable. You can do this with the Oracle Dev Tools. Specifically, PHONE_NUMBER and FIRST_NAME are the only nullable fields. I make them non-nullable and re-run the query and the same error occurs. Thus, these values should never be made null. Moreover, in all 107 rows, none of these row values consist of empty strings anyway.
    Looking into the problem further, WCF DS is calling methods in the System.Data.Services.Internal namespace.
    http://msdn.microsoft.com/en-us/library/system.data.services.internal.aspx
    Specifically, we see your issue when the ProjectedWrapperMany method is called. You will notice that there is ProjectedWrapper0, ProjectedWrapper1...ProjectedWrapper8 methods also present in the same namespace. As soon as the number of columns exceeds 8, ProjectedWrapperMany is called and we see the error. We're going to ask MS to help analyze the issue since this is an .NET-internal method being called.

  • Can't log into Data Services

    Hello Gurus,
    I get this error message "Cannot initialize application. (BODI-1270039)" when I try to log into Data Services.
    I've tried reinstalling the Data Services (Client) but still the same problem.
    What's causing this issue?

    Hi l.v,
    In Windows, in the run option and put in the 'regredit' command and look under Hkey local and Hkey current user and make sure that you do not have BusinessObjects entry if you do then please delete them.
    It is assumed that you are only installing DS on this PC if this is not the case then you need to be extra careful and only remove the entries that belong to DS.
    Cheers
    Hai.

  • Data Service System In Visual Composer

    Hello,Experts:
    Recently ,i am focusing on the mirgration function of SAP NetWeaver,and visual composer is among them .
    In netweaver 2004s enterpise portal ,i have done the system connection between Enterpise Portal and ECC and BW ,and the system alias can be accessed in visual composer .Both the bapi and infocube can be got by the system alias .The Visual Composer Application based on the backend data service is ok .
    However ,i  have registry the ecc system  in CE Portal and its version is  SAP Composte Environment SP5 .I can check out the system registry is ok . However ,when i open the Visual Composer on the CE Portal ,i couldnt find the system alias that i have registried .It is blank .Plus,we havent install SLD on the CE Java Server ,and solution manager is put forward to take the place of sld .
    Can anybody help me out ? The problem has any relationship with the Enterpise Service Repository ?
    Thanks for your help in advance .
    Eleanor

    Hi,Govindu
    I have read that message already .Thanks for ur help .
    However ,i find that there's no VC-Role in CE SP5,and the permission add-in didnt work .Besides ,when i deploy VC component on the EP 6.0 ,i can find these iviews or models at the directory of content administrator->visual composer ,while in the new version ,i havent find the configuration path on the Visual Composer Client,and when i deploy the VC Applications ,it is deployed in the path of webdynpro content management .
    and my question is still up in the air .

  • Oracle 9i Client and System.Data.OracleClient Problems

    I have an application server that has an ASP.NET webpage that queries an Oracle database on another machine through ODP.NET.
    The app server's machine's OS is Microsoft Windows XP SP2 with IIS and .NET 2.0 Framework installed and configured correctly.
    The following Oracle software is installed (from OUI inventory listing)
    Oracle Services For Microsoft Transaction Server 9.2.0.7.0
    Oracle ODBC Driver 9.2.0.7.0
    Oracle Provider for OLE DB 9.2.0.7.0
    Oracle Objects for OLE 9.2.0.7.0
    Oracle Data Provider for .NET 9.2.0.7.0
    Oracle 9i Client 9.2.0.1.0
    Sun JDK 1.3.1.0.1a
    When the ASP.NET page attempts to connect to the Oracle instance on the remote machine via the Data provider I get the following message...
    System.Data.OracleClient requires Oracle client software version 8.1.7 or greater.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Exception: System.Data.OracleClient requires Oracle client software version 8.1.7 or greater.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    <<snipped>>
    I know the connectivity between the client on the app server (SQL*Plus: Release 9.2.0.1.0)
    and the remote database (Oracle Database 10g Enterprise Edition Release 10.2.0.3.0)
    is working since sqlplus sessions connect and the NET Manager tests through Local Service Naming succceed.
    I've tried the "ORACLE_HOME permission changes" solution for Autenticated users as articulated here ....
    http://jasondotnet.spaces.live.com/blog/cns!BD40DBF53845E64F!122.entry
    but the error persists.
    In the list of oracle installed products above, I installed the first 5 (ODP.NET) before the last 2 (Oracle 9i client). Would this matter ? At first I thought perhaps the ODP.NET component didn't "know" about the client since it was installed before there was one on that app server.
    Feeback much appreciated.

    Well I figured it out. I guess...
    1) Uninstalled all Oracle Software Products
    2) Rebooted the machine.
    3) Manually removed C:\oracle\ora92\.
    4) Installed and configured the following
    * Oracle 9i Client 9.2.0.1.0
    5) Installed and configured the following
    * Oracle Services for Microsoft Transaction Server 9.2.0.7.0
    * Oracle ODBC Driver 9.2.0.7.0
    * Oracle Provider for OLE DB 9.2.0.7.0
    * Oracle Objects for OLE 9.2.0.7.0
    * Oracle Data Provider for .NET 9.2.0.7.0
    6) Gave the following accounts Full Control over the ORACLE_HOME directory
    * ASP.NET Machine Account
    * Internet Guest Account
    * Launch IIAS Process Account
    6) iisreset
    Conclusion....
    The order in which Oracle components are installed does matter.

  • Data Service System In Visual Composer  7.1

    Hello,Experts:
    Recently ,i am focusing on the mirgration function of SAP NetWeaver,and visual composer is among them .
    In netweaver 2004s enterpise portal ,i have done the system connection between Enterpise Portal and ECC and BW ,and the system alias can be accessed in visual composer .Both the bapi and infocube can be got by the system alias .The Visual Composer Application based on the backend data service is ok .
    However ,i have registry the ecc system in CE Portal and its version is SAP Composte Environment SP5 .I can check out the system registry is ok . However ,when i open the Visual Composer on the CE Portal ,i couldnt find the system alias that i have registried .It is blank .Plus,we havent install SLD on the CE Java Server ,and solution manager is put forward to take the place of sld .
    Can anybody help me out ? The problem has any relationship with the Enterpise Service Repository ?
    Thanks for your help in advance .
    Eleanor

    Hi Eleanor,
    first of all if you want to use SAP BW in Visual Composer for CE then you have to install Enhancement Package 1. SAP BW resp. queries, planning functions and so on is only supported with VC 7.11 (EhP1 for CE). I also recommend you to set up the SLD in your CE system resp. that it works as a "slave SLD" when you have an existing SLD in your landscape. There are wizards available in the NetWeaver Administrator.
    Go to http://<host>:<port>/nwa to login into NetWeaver Administrator.
    Navigate to Configuraton --> Scenario --> Configuration Wizard and choose the Initial setup of functional unit SLD.
    If you want to have access to BAPIs there are two ways to access the system. You can define a portal system object to access the ECC or you can define in NWA a RFC connection to access ECC.
    [Maintaining RFC Destinations|http://help.sap.com/saphelp_nwce10/helpdata/en/5a/97a066223e440b8ead3da027b17d9e/frameset.htm]
    [Wiki to setup RFC connection|https://www.sdn.sap.com/irj/scn/wiki?path=/display/vc71/rfc+destination]
    Hope that helps,
    Best Regards,
    Marcel

  • What are the System pre-requisite for the BODS installation(SAP Data services)

    I am trying to install SAP Data services, please help me to get system pre-requisite. checked in PAM but i couldnot get it.

    Hi Siddhu,
    Please refer to the below SCN Link which will give you all the details and pre-requisites before instalalling DS 4.x
    Tutorial: How to install SAP Data Services 4.2 - Part 1
    Regards
    Arun Sasi

  • I need help to hide system data in service desk message

    We want to our service desk message has so view:
    Description AS2_SMS 09.06.2010 10:40:09
    test sen
    test sen
    But it include very many technical info and view so:
    Description AS2_SMS 09.06.2010 10:40:09
    test sen
    test sen
    System Data ... 09.06.2010 10:40:10
    SY-DBSYS................ ORACLE ...
    SY-HOST................. ...
    SY-OPSYS................ SunOS ..
    SY-SYSID................ ...
    SY-MANDT................ 200
    SY-UNAME................ ...
    SY-DATUM................ 20100609
    SY-UZEIT................ 123949
    SY-ZONLO................ CET
    SY-CALLD................
    SY-CPROG................ SAPLSMTR_NAVIGATION
    SY-DYNNR................ 0100
    SY-REPID................ SAPLSMTR_NAVIGATION
    SY-TCODE................
    SY-MSG.................. 000
    SLIC_SYSID.............. ...
    SAP version............. 701
    operating system........ SunOS
    machine type............ i86pc
    node name............... ...
    SAP system id........... ...
    database system......... ...
    database name........... ...
    database host........... ...
    database owner.......... SAPSR3
    rsyn....................
    IP address.............. ...
    kernel release.......... 701
    database library........ OCI_102 (10.2.0.2.0)
    kernel compiled......... ...
    kernel patch level...... ...
    supported SAP vers...... 700, 701
    supported database...... ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.
    valid OP system......... SunOS ...
    OP system release....... 5.10
    ABAP load version....... 1565
    CUA load version........ 32
    kernel kind............. opt
    relinfo................. valid
    hot package level....... 5
    Компонент ПО/верс./подд. EA-APPL 600 0016
    Компонент ПО/верс./подд. EA-DFPS 600 0016
    Компонент ПО/верс./подд. EA-FINSERV 604 0004
    Компонент ПО/верс./подд. EA-GLTRADE 600 0016
    Компонент ПО/верс./подд. EA-HR 600 0045
    How to hide System Data part? We use auth CRM_TXT_ID and set TEXTID = SU01 (without SUSD) but system data are included in message.
    Edited by: Andrey Garshin on Jun 9, 2010 11:19 PM
    Edited by: Andrey Garshin on Jun 9, 2010 11:54 PM

    what is term - "scheme"? I don't meet that.
    COMV_TEXT_PD is clear for all select.
    but:
    COMV_TEXT_AS - CRM_ORDERH :
    01 Business Partner Text
    02 Final Note
    03 Header Memo for Predecessor
    ASH_PCKI Packing Instructions - Header
    IPM00001 IPM BP Text Supplier
    ISA_AG01 ISA: Customer Request
    OPSM0001 StandardText Sales Methodology
    SUSH0001 Header Text and Response Text
    not SUSD.
    may be another COMV_TEXT*-? Where is it customize?
    I find Text Determination Procedure (se73) - CRM_ORDERH-SUSD. But it for print header only, imho..

  • No service for system ..PI, client. in Integration Directory -IDOC

    Hi,
    I am getting following error when try to post IDoc frm SAP to SAP XI:
    No service for system ..PI, client. in Integration Directory -IDOC
    I have verified the following transactions:
    port,RFC destinations are correct in SAP and XI systems(verfied in SM59,IDX1,BD64 and in SLD)
    Please help me here

    This error was resoved now.
    What is the cause?
    In ID, Adapter spefic Identifiers for SAP Business System does not have R/3 System ID and Client and It has only Logical System name. Its bcoz of cache prob between XI and SLD.
    Resolution:
    There is an option to refresh, so that Adapter specific identifiers was refreshed from SLD and values got populated for R/3 System ID and Client name.
    Generally when Business System is imported from SLD to XI, these 3 parameters(Logical System name,R/3 System ID and Client) will populate automatically.
    Thanks for Inputs:)

  • Web service client needs to share data with a SOAP Message Handler

    I have a web service client that is built using WebLogic 10 clientgen. I also have a Soap Message Handler configured that will create the required Soap Headers for the web service call.
    Creating these Soap Headers works great as long as the header data is static but the problem comes up when I need to place some dynamic data in these headers. The web service client has this data and somehow needs to pass it to the Soap Message Handler. It looks like I need to somehow have the client place this data in the MessageContext before the call so the data can be accessed by the Soap Message Handler.
    How do I get access to the MessageContext from the client or is there a better way to do this?
    Thanks in advance for any help you can give.

    You may want to check the response to this previous post to see if it yields any ideas for you:
    Not able to Pass header info to Microsoft MapPoint WebService using WLS10

  • System Alias is not coming in dropdown of System under Find Data Services

    I am having role in VC.
    In Visual Composer studio. I Clicked on Find Data option at right pane of the window to get
    Find Data Services window.
    In this window, I am not able to see the system alias from the dropdown list of the System field.
    Appreciate your help.

    Hi
    Inside Visual Composer , Goto Tools >Options> Compiler .
    Remove the Checkbox for Mask Unsupported Features.
    Click Ok.
    Now try the Find Data
    It worked for me.
    Regards
    Rajendra

  • SAP Business Objects Data Services 3.2 - Homogenous System Copy

    Hi All,
    We have a SAP Business Objects Data Services 3.2.
    I wanted to know if it is possible do a homogenous system copy or any alternate procedure. I just need to perform this on a Development system and move all its content to a new Sandbox installation.
    Any info on this will be much useful.
    Thanks
    Jaianandh V

    Hi,
    you could extract an ATL File from DEV and import it to Sandbox.
    This can be done via the DS DEsigner. Please Check the DS Designer User Guide for more information.
    Regards
    -Seb.

  • Data Services Designer as Client Tool

    Hi All,
    Is it possible to use the Data Services XI 3.0 Designer from my client machine, having repositories and servers installed remotely? How do I set this up?
    Thanks and Kind Regards,
    Ingo

    i think yes you can do it,
    find the installation guide from the SAP products guide site
    http://help.sap.com/businessobject/product_guides/
    it will help you
    good luck

Maybe you are looking for

  • Export sequence to after effects

    I'm editing a feature film at this moment, the problem is I have finished all cutting and trimming in to a sequence, then I would like to do color correction with after effects. Is there anyway I can import all clips in the sequence into after effect

  • Commit and Forms 6i (Urgent)

    I am having problems with the commit function on forms 6i, it keeps crashing my forms. I have a forms set up in which when the user enters the information and then presses the OK button. The code in this button is a simple insert statement followed b

  • Agentry - Filter by Current User Name in SQL Step

    I'm currently developing an Agentry application that connects to an Oracle back end.  I would like to filter by the current user's name in a SQL step that connects to the Oracle database.  What's the best way to do this? Tags edited by: Michael Apple

  • TS1702 Waiting symbol on Ipad how to remove this?

    Hi I am tryibg to download several apps on my Ipad but the waiting to install symbol is on each of the aps and has been for a long time overnight how do I delete them and try again? When pressing the delete they do not have the X option to do so?

  • BPEL not able to find SelectionFailure Fault variable

    Hi, Can any one share how to handle Selection Failure Faults. Its type is BPWS. For BPELX I imported RuntimeFault for WSDL. Is there any similar WSDL's for this? Thanks Karthick