Possible to integrate Serena VM (PVCS) web client with LV project?

My company is using a web based client Serena VM (PVCS) for SCC. Is there any way to integrate this with LV (2009 developer suite) or does PVCS have to reside locally on my PC? Obviously nothing shows up whenI try to cofigure SCC in LV.
George

LabVIEW's source control integration works via the Microsoft SCC Interface. Typically, SCC providers ship suport for third-party IDE's (such as Visual Studio) as a plugin or as part of the normal installation. This support typically allows LabVIEW to interface with the SCC provider. I would check to see if this support is available. I wouldn't think it would be part of PCVS's web client, so you'd have to contact Serena to see where you can get this. I know in the past this support existed since LabVIEW was tested against PVCS (http://digital.ni.com/public.nsf/allkb/41FBD516D8BC1DED862576AF007061B2).
George M
National Instruments

Similar Messages

  • Is it possible to transport requests to 2 QA clients with ChaRM?

    Hi
    If there are 2 QA clients and requests need to be tranported to both clients at the same time,
    can SolMan ChaRM handle this?
    Transport route is as follows.  
    DEV_______QA_______PRD
    200___->__300___->_100
    ______--->__500
    Anybody has experience?  
    My version is SolMan 7.0 SP16
    Thank you

    hello,
    I have the same behaviour in my landscape. Only the systems in the main path is available in SDHF task list
    I would say this is normal.
    Why is this normal ?
    Because the ur.gent correction is to be considered like an emergency process that doesn't superseed the normal maintenance but that complement it to have a faster change in place.
    That means the ur.gent transport will follow the normal maintance process anyway
    If you miss the ur.gent transport in the other QA client you may schedule the following task in your project tasklist
    /TMWFLOW/SCMA_BTCH_SYNC_TEST or online
    /TMWFLOW/SCMA_TRIMP_SYNC_TEST
    This is not obvious how this is working and I am currently evaluating this solution in another thread
    [Is it possible to transport requests to 2 QA clients with ChaRM?|Is it possible to transport requests to 2 QA clients with ChaRM?]
    on your side you may also want to evaluate this tasks ?
    br
    Xavier

  • Is it possible to integrate fingerprint to a car park with LV

    Sorry, i am new to LV. I would like to know Is it possible to integrate fingerprint device to lv car park?

    sorry for not being clear.
    Excually i want to develop a car park elevator using labview. And if the person wants to park the car, he would need to use his fingerprint to access the elevator and also remove the car, which would be done using LED. So, is it possible to use fingerprint device for it and is it possible to store the fingerprint in labview?
    Thanks alot guys.

  • Integrate VC models within Web Dynpro?

    Hi
    It easily is possible to integrate Web Dynpro Components within Visual Composer models. Does it work the other way around too - is it possible to integrate VC models within Web Dynpro, and if yes, how?
    Regards

    Hi Jan,
    Unfortunately not. Currently there's no way of doing this (other than having them as UI for human tasks in BPM, but this is not what you want I guess). The generated Web Dynpro application (from the Visual Composer model cannot be consumed as a project in the IDE, but it you can try to call it from the WD application (I just don't remeber the exact API for this) like it was any other WD application (after it's eployed, of course).
    Regards,
    Netanel

  • Calling Reporting Services Web Service with jQuery possible?

    Hi,
    is it possible to call the Reporting Services Web Service with jQuery? If yes, can someone post me a small example?
    Background:
    My plan is to create a html with a form which is also uploaded then into the reportserver. I open this html later by clicking a link in a report (with gotoURL open.window). The report opens the html inclusive the overtaken of some additional parameters
    (reportname, reportdescription). These parameters I will use in the html-form as defaultvalues for the corresponding input-text-fields. Now the user can make some changes (i.e. the decription). With a click on a button I will send the new description to
    the Reporting Services Web Service by using the SetProperties method, closing the html-window and reload the report. Important is that I want to upload the html also into the reportserver itself.
    I have already found how to consume a web service via jQuery but with the Reporting Services Web Service I did not get it running in my tests.
    I have referenced to the following jQuery.js: http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
    Here you can see my tests I made with the results:
    $.ajax({
    type: 'POST',
    url: 'http://<..>/ReportServer/ReportService2010.asmx/ListChildren',
    data: {'ItemPath':'/','Recursive':false},
    complete: function(xData, status) {
    $('p').html($(xData.responseXML).text()); // result
    $("#divStatus").text( status ); // status }
    I got a NULL response with Status success. But where are the items?
    Another test which should response only one value was that:
    $.ajax({
    type: "POST",
    contentType: "text/xml; charset=utf-8",
    url: "http://<..>/ReportServer/ReportService2010.asmx/GetItemType",
    data: {"Item":"/Development"}, // Development is a Folder in my Reportserver-Root
    dataType: "xml",
    success: function (msg) {
    $("#divResult").html(msg.responseXML);
    error: function (data, status, error) {
    $("#divResult").html("WebSerivce unreachable<br> <br>" + data.responseXML + "<br> <br>(" + error + ")");
    Here I got an [object Error]
    And here my last test:
    var soapMessage = '<?xml version="1.0" encoding="utf-8"?>\
    <soap:Envelope \
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" \
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" \
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">\
    <soap:Body>\
    <GetItemType xmlns="http://www.microsoft.com/sql/ReportingServer">\
    <ItemPath>/Development</ItemPath>\
    </GetItemType>\
    </soap:Body>\
    </soap:Envelope>';
    $.ajax({
    type: "POST",
    contentType: "text/xml; charset=utf-8",
    url: http://<..>/ReportServer/ReportService2010.asmx?wsdl,
    data: soapMessage,
    dataType: "xml",
    success: processSuccess,
    error: processError
    function processSuccess(data, status, req) {
    if (status == "success")
    $("#response").text($(req.responseXML).find("Type").text());
    function processError(data, status, req) {
    alert(req.responseText + " " + status);
    Here I got an "Undefined error"
    Can anyone help me?
    Thanks
    René Illner

    Hi Rene,
    I have one vbscript class to call web services. May be if you need you can use it.
         dim ws
         set ws = new webservice
         ws.url = "http://servername/ReportServer/ReportService2010.asmx"
         ws.method = "MethodName"
         ws.parameters.Add "Parameter1", "Param1 Desc.."
         ws.parameters.Add "Parameter2","[email protected].."
         ws.execute
         set ws = nothing
    '------web service calling class
    class WebService
      public Url
      public Method
      public Response
      public Parameters
      public function execute()
        dim xmlhttp
        Set xmlhttp = CreateObject("Microsoft.XMLHTTP")
        xmlhttp.open "POST", Url & "/" & Method, false
        xmlhttp.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
        xmlhttp.send Parameters.toString
        response = xmlhttp.responseText
        set xmlhttp = nothing
      end function
      Private Sub Class_Initialize()
        Set Parameters = new wsParameters
      End Sub
      Private Sub Class_Terminate()
        Set Parameters = Nothing
      End Sub
    End class
    class wsParameters
      public mCol
      public function toString()
        dim nItem
        dim buffer
        buffer = ""
        for nItem = 1 to Count
          buffer = buffer & Item(nItem).toString & "&"
        next
        if right(buffer,1)="&" then
          buffer = left(buffer,len(buffer)-1)
        end if
        toString = buffer
      end function
      public sub Clear
        set mcol = nothing
        Set mCol = CreateObject("Scripting.Dictionary")
      end sub
      public sub Add(pKey,pValue)
        dim newParameter
        set newParameter = new wsParameter
        newParameter.Key = pKey
        newParameter.Value = pValue
        mCol.Add mCol.count+1, newParameter
        set newParameter = nothing
      end sub
      public function Item(nKey)
        set Item=mCol.Item(nKey)
      end function
      public function ExistsXKey(pKey)
        dim nItem
        for nItem = 1 to mcol.count
          if mCol.Item(nItem).key = pKey then
            ExistsXKeyword = true
            exit for
          end if
        next
      end function
      public sub Remove(nKey)
        mCol.Remove(nKey)
      end sub
      public function Count()
        Count=mCol.count
      end function
      Private Sub Class_Initialize()
        Set mCol = CreateObject("Scripting.Dictionary")
      End Sub
      Private Sub Class_Terminate()
        Set mCol = Nothing
      End Sub
    end class
    class wsParameter
       public Key
       public Value
       public function toString()
         toString = Key & "=" & Value
       end function
    end class
    Regards, RSingh

  • Call List Mangement - IC Web Client

    Hi Gurus,
    We are using SAP CRM 2007. I am calling transaction : CRMD_TM_CLDIST using transaction launcher in IC Web Client with  team lead business role so that I can Split the Call List, Assign the Call List to CSRs and Activate the Call List. When I select the Call List and right click on to view the list of the commands (as of SAP GUI screen) to work the Call List Management - does not shows me any options (such as split or assign or activate). Does any body know, how to get this work?? please help me out....
    Cheers,
    Peter J.

    Hi John,
    Thank you very much for your quick reply and guidance. I know the company which used PCUI - Call List screen, unofficially I came to know that SAP responded this company back saying that, SAP does not have plans to remove this PCUI screen/code from the future upgrades...
    Once again thank you very much for your quick responses and the guidance. I will close this link...
    Cheers,
    Peter J.
    Hi John,
    2 corrections:
    1. We are using IE 8.0
    2. Transaction Code CRMD_CLMANAGMENT is not working in CRM 2007, we did the following:
    a) Add URL to the URL Repository (SM30 table = crmv_ic_ltx_url) as BSP Application. Application = CRM_BSP_FRAME and Page = Entrypoint.do
    b) Create Transaction Launcher entry  (CRMC_UI_ACTIONWZ)
    c) Crete Logical Link in (CRMC_UI_NBLINKS)
    d) Call/Add the logical link to NavBar Profile
    e) Add NavBar Profile to Business Role
    f) Activate the logical link in Business Role (if necessary)
    Cheers,
    Peter J.
    Edited by: Peter Jacks on Mar 25, 2010 9:30 AM

  • Converter Web Client: get compiler error when run URL

    When I try to run the Converter's web client with the the URL:
    http://localhost:8000/converter
    I got a compiler error on the lines:
    import Converter;
    import ConverterHome;
    The J2EE server wants to have a "." after the Converter and ConverterHome.
    Any one has any idea?
    The error messages are:
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: -1 in the jsp file: null
    Generated servlet error:
    [javac] Compiling 1 source file
    C:\app\j2sdkee1.4\web\repository\Standard-Engine\localhost\converter\index_jsp.java:7: '.' expected
    import Converter;
    ^
    C:\app\j2sdkee1.4\web\repository\Standard-Engine\localhost\converter\index_jsp.java:8: '.' expected
    import ConverterHome;
    ^
    C:\app\j2sdkee1.4\web\repository\Standard-Engine\localhost\converter\index_jsp.java:20: cannot resolve symbol
    symbol : class Converter
    location: class org.apache.jsp.index_jsp
    private Converter converter = null;
    ^
    C:\app\j2sdkee1.4\web\repository\Standard-Engine\localhost\converter\index_jsp.java:26: cannot resolve symbol
    symbol : class ConverterHome
    location: class org.apache.jsp.index_jsp
    ConverterHome home = (ConverterHome)PortableRemoteObject.narrow(objRef, ConverterHome.class);
    ^
    C:\app\j2sdkee1.4\web\repository\Standard-Engine\localhost\converter\index_jsp.java:26: cannot resolve symbol
    symbol : class ConverterHome
    location: class org.apache.jsp.index_jsp
    ConverterHome home = (ConverterHome)PortableRemoteObject.narrow(objRef, ConverterHome.class);
    ^
    C:\app\j2sdkee1.4\web\repository\Standard-Engine\localhost\converter\index_jsp.java:26: cannot resolve symbol
    symbol : class ConverterHome
    location: class org.apache.jsp.index_jsp
    ConverterHome home = (ConverterHome)PortableRemoteObject.narrow(objRef, ConverterHome.class);
    ^
    6 errors
         at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:125)
         at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:293)
         at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:387)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:410)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:570)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.util.SecurityUtil$1.run(SecurityUtil.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:499)
         at org.apache.catalina.util.SecurityUtil.execute(SecurityUtil.java:210)
         at org.apache.catalina.util.SecurityUtil.doAsPrivilege(SecurityUtil.java:147)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:274)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:99)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:177)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:271)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2505)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at com.sun.enterprise.webservice.EjbWebServiceValve.invoke(EjbWebServiceValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.authenticator.SingleSignOn.invoke(SingleSignOn.java:383)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:469)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:405)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:380)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:508)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:533)
         at java.lang.Thread.run(Thread.java:536)
    Apache Tomcat/5.0

    I have exactly the same error.
    Me too, I'm running on Win XP. And I have had lots of trouble to deploy the converter.
    I cannot install J2EE 1.3 as I am supposed to write a report on how Web Services may help my company. By the moment I can only say it takes me much more time than expected to run the J2EE 1.3 tutorial. As SUN didn't deliver a tutorial one can use.
    So by the moment if anyone can HELP me to finish this converter tutorial I will be thankful.
    Bye
    Manuel Acevedo

  • SAP BPC 10.0 Web Client Blank Screen after login

    Hi ALL,
    We are using SAP BPC 10.0 Web Client with Adobe Flash Player 13.0.0.214 with IE 9.0 on Windows 7.0.
    We face strange error where on only on certain PC, the BPC web client working.. On other getting Blank/Blank Screen after login (with "movie not loaded" on the adobe flash player).. Both PCs are having the same setting.
    Even one of PC which previously working, starting this week suddenly getting the same error.. I have created OSS message and got feedback with also share this problem on this forum.
    I have done several actions as mentioned on several SAP notes )1624267, 1664889, 1681147, 1694871, 1752971, 1798336, 1804221, 1806371, 1811218, 1820505, 1918631, 1968584), but still no luck..
    If you have the same issue, kindly share..
    Thanks and regards,
    Hery

    Yes .. Compatibility View also checked.. in several PCs, it is working well. both failed and working PCs have the same setting.
    Just found another weird: in one working PC, 2 different windows local-admin users login to the same PC for BPC-web and getting different result (1 Ok ; 1 failed) ..seems it is related with the user profile and login-domain servers (we have multiple login-domain servers with load balancing mechanism).
    Thanks and regards,
    Hery

  • How To Stop Lookout Web Client Crashing IE Web Browser

    Hi,
    I am using Web Client with Lookout. My problem is I can only load a panel within Internet Explorer once. If I reload the URL within the same session then Internet Explorer crashes.
    Can anyone offer me advice to fix this problem please?
    Software is as follows:
    - Lookout V 6.0 (build 5)
    - Browser: Internet Explorer 6.0.28
    - Web Server: Tomcat 5.5.7
    The steps I took are as follows:
    1. Created Process
    2. Set up File-> Web Server Options->Export Directory to:
    c:\telemetrysms\webapps\root\user\fishfarmlive\
    (where “c:\telemetrysms\webapps” is Tomcat webapps folder)
    Set up server URL to:
    http://HOSTNAME/user/fishfarmlive/
    (where “HOSTNAME” is the server name)
    3. Export Web Server Files
    4. Start IE and open web page. My panel displays correctly (with live data), although the only alarm Lookout displays is “The remote position source is not writable”.
    5. HOWEVER, when I reload the page in IE the browser will always go blank for several seconds and then crash (with no error message).
    Furthermore…
    As a test I created a simple test process with nothing but one panel containing a single line of static text. This simple project also crashes.
    This computer also has Lookout 5.1 installed. And projects created in 5.1 only crash the browser very occasionally.
    Any suggestions (about the crashes or the missing alarms) would be greatly appreciated?
    Thanks.
    Regards Brett Sheeran

    Brett,
    I have some info for you regarding the web client. I am including links to two documents that have information that will help you with your problem. The first document is good info about developing a web client application and the second has information directly pertaining to the IE crash that is occurring. It also has other troubleshooting information. I would also recommend checking the firewall on the computer. It windows security settings also have to be set to low in order for web client to communicate correctly.
    Deploying a Lookout Application
    Lookout Web Client Troubleshooting
    Regards,
    Danny G
    Applications Engineer
    National Instruments

  • Problem toplink Web Client working ?

    I have configured Toplink Web Client with Weblogic, and it is deployed.
    But when I try to access Database with toplink Web Client, nothing happens.
    I obtain error page.
    Please help.

    No error in my weblogic log.
    I obtain "error page" with my browser.
    The detail is : "object not awaited - Line 184 Car 1 Code 0 -
    URL : http://localhost:7001/toplinkwc/toplink "

  • Forms6i with OLE2 Integration on web client-Is possible? how?

    Hi Dears,
    When running a form on the Web, can I use OLE to talk to programs such as MS Word or Excel?
    This is my Q.
    In the Oracle FAQ the given solution like this:
    Yes. OLE integration works for external OLE servers invoked using OLE2.CREATE_OBJ. The OLE server you are invoking must be available on the middle tier machine where the Forms Services resides. Consequently the middle tier machine must be a Windows NT or Windows 2000 machine. Embedded OLE containers and ActiveX (OCX) controls are not supported when running on the Web.
    But the problem is,
    The applications(Excel,Word & etc.,) are opening in the middle tier, but not in the client mechine when i opening the word document.
    How can i open a MSWord in the client browser using orcle forms6i?!
    Please help me on this.
    Thanks & Regards,
    Vijayakumar.S

    Hi Shay,
    Thanks for your response.
    Shay, in Oracle FAQ one Q&A is like this
    Q:When running a form on the Web, can I use OLE to talk to programs such as MS Word or Excel?
    A:Yes. OLE integration works for external OLE servers invoked using OLE2.CREATE_OBJ. The OLE server you are invoking must be available on the middle tier machine where the Forms Services resides. Consequently the middle tier machine must be a Windows NT or Windows 2000 machine. Embedded OLE containers and ActiveX (OCX) controls are not supported when running on the Web.
    Are you sure, is not possible to open a Word Application in
    client mechine/browser?!
    Why i'm asking is, oracle answered it is possible.
    Please shay, i need your help, help me.
    Thanks & Regards,
    Vijayakumar.S

  • Customize Web-Client nterface (Documents tab)

    Hi - has anybody manage to customize the Primavera web-client interface to add custom screens.
    In particular, we would like to customize the 'Documents' tab and integrate Primavera with our content management system (EMC Documentum) to store and retrieve documents.
    I am unable to find any decent guide on how to actually modify Primavera user interface, if such a thing is possible/supported. There is plenty of information about using the SDK/WebServices for accessing Primavera project data, but we need to go the other way - access third-party system from within Primavera.
    I know we can use SharePoint or Oracle Content Management for this, but we need to use EMC Documentum.
    Any tips/useful info/ideas highly appreciated,
    Regards
    Mirza

    You can't customize the interface, but you could use a custom portlet and point it to your existing document management system, or create your own site that does what you need.

  • Is it possible to integrate LSO 600 with an external system without SAP PI?

    Hi,
    as asked in the title, i am wondering if it is possible to integrate LSO 600 with an external (non-SAP) system without using SAP PI/XI. The external system is a middleware application which can handle RFC functions, IDocs besides the usual web service communications.
    However, i don't know how LSO and SAP PI are integrated so i wonder if their interfaces are such that instead of SAP PI another middleware could be used.

    Web Services are used. If you were to implement the services in your 3rd party middleware and configure SAP to call it, I suppose it is possible. The external course catalog can be used for CourseEnrollment and LearningProgress. See the application help for details. Don't expect to receive support from SAP with such a setup however.

  • 32-bit Siebel 7.7 and 7.8 Web Client on 64-bit Windows Vista

    Hello all,
    do you think it is possible to successfully install the 32-bit Siebel Web Client (version 7.7 and 7.8) on Windows Vista 64-bit ?
    I'm running Siebel client software against an Oracle 9i database. In fact, my Oracle client is version 10g (32-bit). But it works fine. Even with non-Oracle software.
    I succeeded in installing the 32-bit Siebel Tools (7.7/7.8) on my 64-bit Vista. Just had to prevent the installer from putting the software into the default folder which is "C:\Program Files (x86)". Using the default folder resulted in the Tools being not able to locate the Oracle tnsnames.ora file. I created my own C:\PRG folder instead. So for example, I now have "C:\PRG\Siebel\7.7\Tools" for Siebel Tools 7.7.
    I hoped this method would work for Siebel Web/Developer client 7.7/7.8 as well. But it didn't. In the middle of the installation process, the installer told me it could not locate MDAC and rolled the whole thing back.
    I googled a bit around and found that Windows Vista do not use MDAC any more. It uses "Windows Data Access Components" (Windows DAC) instead. But I also checked my "C:\Program Files" and "C:\Program Files (x86)" folders and found that, for example, msado15.dll and msadoXY.tlb (which is a part of that MDAC/DAC stuff) is there, both 32-bit and 64-bit versions.
    So my question is:
    How can you make the Siebel Web Client installer think that MDAC is in place and find it there (in the 32-bit folder, of course)?
    I'll welcome any help.
    Thanks,
    Pavel Foltyn

    First of you need to make sure you have the right versions of Siebel installed. Only the newest versions work in high interactivity mode with IE 7.0 and Windows Vista.
    Have a look at:
    Support for Microsoft Internet Explorer 7 (IE7) (Doc ID 475275.1)
    on Metalink 3.
    Geting that to work with the Vista 64-bit, is more then pushing it.
    Just my 2 cent.
    Axel

  • S_DEVELOP authorization needed for CRM Web Client in SAP CRM 7.0?

    We implemented an own WebUI component in SAP CRM 2007 and use it in others components (with USAGE).
    After we transport the component in SAP CRM 7.0 we always got an error CX_BSP_DLC_CONFIG_GENERAL_ERR at loading the component. But if we set the permission to SAP_ALL all thing work fine.
    In SAP Note Nr. 1367944 we read:
    "It is not possible to run the CRM Web Client without the S_DEVELOP, activity=03
    authorization because it is needed by the Web Client Framework.
    The S_DEVELOP authorizatin is part of the SAP_CRM_UIU_FRAMEWORK PFCG role, which must
    be assigned to every user."
    "This dependency has been removed in CRM 7.0."
    Do we need to install some other SAP Notes at SAP CRM 7.0?
    Many thanks for advices!
    Handri Gunawan

    Hi Handri,
    I asked my collegue here, who created the note.
    The note is correct, in CRM 7.0 you do not need S_DEVELOP anymomre.
    The error that you have might occur because of another reason.
    Could you track the call stack of this exception?
    And send me back the call stack?
    Regards,
    Steve

Maybe you are looking for

  • Appstore probleme nach update ios6 (4s)

    Hallo, ich benutze das iphone 4s und habe einige probleme mit dem appstore seit dem update auf ios6 1. genius funktioniert garnicht verursacht einen crash der app 2. wenn die suche überhauptmal funktioniert dann crasht der appstore spätestens nach de

  • Using XLST  in the XML output returned.

    I have written a SQL (using 10G) which creates an XML document using the XML syntax and the output is as follows: <?xml version="1.0" encoding="UTF-8"?> <FIXML xmlns="http://www.fixprotocol.org/FIXML-4-4"><Order Acct="1" Px="480.25" SettlDt="2009-12-

  • How to save a document programatically when u click on "Run Query" button

    Hi all, I am new to BO Web Intelligence java SDK. I am using Java Report Panel to edit and save the document. (As per my knowledge the default functionality of the Java Panel is, once u edited the document query and then run the query and  as when as

  • Deliver date control in PO

    Hi Experts, I have an issue to solve. While creating a PO using drag & drop, sometimes users are overlooking the delivery date which lies  in the past.I want to control delivery date atleast to current date eventhough users skips changing delivery da

  • An interactive DVD

    I would like to be able to play a slideshow from a DVD but I don't want to preset the length of each image. I want to be able to narrate the show.   I will be making a presentation at a location that normally plays all digital presentations from a ce