Getting Data Direct license error on Development Environment setup

Using .NET portal G6 sp1
<br>
I have setup UI development environment. But I am getting datadirect license error on Debug->F5 in Visual studio.
<br>
I get Database connectivity error. I checked PT config manager. It showed connection was good.
<br>
Looking at PTSPY I found thus error:
<br><br>
Error     OpenKernel.Database     .NET #1938     com.plumtree.openkernel.impl.db.DatabaseService     Exception acquiring database connection
System.InvalidOperationException: <b>The DataDirect ADO.NET Data Provider you are attempting to use is not licensed. If you would like to license a provider, please call 800-876-3101 or visit DataDirect at www.DataDirect-Technologies.com.</b> at DDInt.License.LicFile.UnlockProvider(String licFileName, Int32 version, LicProviderType providerType)
at DDInt.Common.CommonConnectionImpl.Open()
at DDTek.SQLServer.SQLServerConnection.Open()
at com.plumtree.openkernel.impl.db.DatabaseService.GetConnection() in e:\buildroot\Release\openkernel\2.0.x\opendb\build\x86\src\csharp\com\plumtree\openkernel\impl\db\DatabaseService.cs:line 1066
<br>
Has anyone seen this error before?

Thank you for posting this response. This hit me last year and I could not for the life of me remember what we did to address this. Your note saved me gobs of time :)
In that spirit... I'm including some notes we made on seeing this sort of error on the remote tier when using the native API (installing the automation server on the remote tier so the API is accessible to our native portlets). Ideally someone else finds value in this.
P.S. - ignore the preachy/information tone on bits of this. It's written for our internal documentation, so I had to do it up all classy-like :P
Error: "Datadirect license file not found at configured location: [license file directory goes here]\DDplm.lic"
This error will occur if you use certain portions of the native API on the remote tier. When you use the native API you typically install the "automation server" (job processing server) - this is more appropriately thought of as a "light" portal install where the underlying portal logic / process libraries are installed and registered on the server, but the user interface portions are not available (EX: no web interface).
When you install the automation server and portal cross-platform database libraries are installed to abstract out behavior specific to MS SQL, Oracle, etc. The automation server installer does not, however, install 100% of the files used by the portal - specifically, the license file(s) required by this cross-platform database library.
To resolve this issue you must do two things.
=========================================================
1. Copy the license files from the portal to the automation server
=========================================================
* "Share" or terminal service over to a portal server. Navigate to the following (or close to it) directory path to find the license files generated by the portal installer.
\\MyPortalServer\d$\Program Files\plumtree\ptportal\6.0\bin\
* Find the folder "assemblies" and locate the file "DDplm.lic"
* Copy the "assemblies" folder to your automation server, matching the path/location
EX: \\MyAutomationServer\d$\Program Files\plumtree\ptportal\6.0\bin\
* You should now have the following folders/files installed on your automation server
\\MyAutomationServer\d$\Program Files\plumtree\ptportal\6.0\bin\assemblies\DDplm.lic
=========================================================
2. Update the automation server config file to point to the DDplm.lic file
=========================================================
Now that you have the appropriate license file copied to your automation server you must reference it within the core automation server config file. Recall that the automation server is really just a subset of the portal - the paths will then make more sense
* Navigate to your automation server's core configuration file
\\MyAutomationServer\d$\Program Files\Plumtree\settings\common\serverconfig.xml
* Open this file and find the entry for "database-connection:adonet-license-file-directory"
<setting name="database-connection:adonet-license-file-directory">
    <value xsi:type="xsd:string">[license file directory goes here]</value>
</setting>* Update the "serverconfig.xml" file to include the local absolute path to the folder that contains the license file ("DDplm.lic") you copied over in step (1). Your final entry should look similar to the following:
<setting name="database-connection:adonet-license-file-directory">
    <value xsi:type="xsd:string">D:\Program Files\plumtree\ptportal\6.0\bin\assemblies\</value>
</setting>
=========================================================
3. There is no step 3
=========================================================
That should be it.

Similar Messages

  • CCB development environment setup and change handlers

    Hi i am trying to set up the development environment of CCB on my machine. I configured eclipse accordingly. i added a change handler at location C:\spl\CCBDEMO22\java\source\cm\com\splwg\cm\domain\customerinfo\person and named it as CmPerson_Chandler.java.
    CmPerson_Chandler.java
    package com.splwg.cm.domain.customerinfo.person;
    import com.splwg.base.api.changehandling.RequireRule;
    import com.splwg.base.api.changehandling.ValidationRule;
    import com.splwg.ccb.domain.customerinfo.person.Person;
    public class CmPerson_Chandler {
         public static ValidationRule emailRequiredRule() {
              return RequireRule.alwaysRequire("Person:Email is required",
              "The person's email address must be specified",
              Person.properties.emailAddress);
              public ValidationRule[] getValidationRules() {
              return new ValidationRule[] {emailRequiredRule()};
    I saved it and compiled it. Now when i open CCB and try adding a person without emailid it gets added without the validation being performed. Can anybody suggest me am i missing out any step?

    My artifact generator now works fine, i was missing out configuration under Arguments tab.
    I added a Junit test class under the same package as of CmPerson_CHandler. now when i try to run the JUNIT it guves me the error
    Class not found com.splwg.cm.domain.customerinfo.person.CmPerson_CHandler_Test
    java.lang.ClassNotFoundException: com.splwg.cm.domain.customerinfo.person.CmPerson_CHandler_Test
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.loadSuiteClass(RemoteTestRunner.java:428)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.getTest(RemoteTestRunner.java:380)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:445)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:344)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
    Also when i right click deploy.xml it creates the cm.jar file under application/root/WEB-INF/lib, Do i need to deploy the jar file ? or just creation of jar file itself deploys it?
    Also after adding the CmPerson_CHandler compiling it ---> generating artifacts ----->creating cm.jar file ---> restrating server ----> then i try to add a person without email ID from application and still the person gets addedd... Can anybody suggest me why my Handler is not showing its effect..

  • CCB DEVELOPMENT ENVIRONMENT SETUP

    Hi, I downloaded the SDK for CC&B from "eDelivery". And my company bought CC&B for customer service purpose not for the development purpose. And i want to set up the development environment using the CC&B and SDK, All the setup has been done. And I added a change handler just to make city as mandatory while adding a premise. But my CHandler do not show its effect and i am able to add a premise without specifying the city.
    IS that the CCB environment itself has got some setting that is not allowing it to show the effects. Also while installing CC&B the option "IS it used for Development purpose was false" later i changed it to true using cnfigureENv.cmd.
    But still my handler is not validating city while adding a premise.
    Can anybody suggest me whether it is the SDK limitation that is downloaded frm eDelivery (something like trial version) that prohibits CHANdLER to work.

    i did as specified but now i am getting errors during server startup.. and application is not starting up..
    wConnection(RotatingCommandRunnerProvider.java:135)
    at com.splwg.base.support.cobol.host.RotatingCommandRunnerProvider.addNe
    cessaryConnections(RotatingCommandRunnerProvider.java:121)
    at com.splwg.base.support.cobol.host.RotatingCommandRunnerProvider.acces
    s$800(RotatingCommandRunnerProvider.java:30)
    at com.splwg.base.support.cobol.host.RotatingCommandRunnerProvider$Conne
    ctionMonitor.performPollingActions(RotatingCommandRunnerProvider.java:257)
    at com.splwg.base.support.cobol.host.RotatingCommandRunnerProvider$Conne
    ctionMonitor.performRunLoop(RotatingCommandRunnerProvider.java:239)
    at com.splwg.base.support.cobol.host.RotatingCommandRunnerProvider$Conne
    ctionMonitor.run(RotatingCommandRunnerProvider.java:230)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: java.io.EOFException
    at java.io.DataInputStream.readByte(DataInputStream.java:243)
    at com.splwg.base.support.cobol.host.OptimizedObjectEncoder.readOptimize
    d(OptimizedObjectEncoder.java:75)
    ... 16 more
    - 11:54:47,250 [JVM 16 ERROR logger] ERROR (cobol.host.ProcessLogger)
    at com.splwg.shared.common.LoggedException.raised(LoggedException.java:65)
    - 11:54:47,359 [JVM 16 ERROR logger] ERROR (cobol.host.ProcessLogger)
    at com.splwg.base.support.cobol.host.RemoteJVM.waitForServerToRegisterRunner(Rem
    oteJVM.java:141)
    - 11:54:47,468 [JVM 17 INFO logger] INFO (cobol.host.ProcessLogger) - 11:54
    :47,468 [main] INFO (cobol.host.RemoteJVM) Remote JVM started with arguments:
    17 6505 6506 2
    - 11:54:47,609 [JVM 16 ERROR logger] ERROR (cobol.host.ProcessLogger)
    at com.splwg.base.support.cobol.host.RemoteJVM.main(RemoteJVM.java:118)
    - 11:54:47,609 [JVM 17 INFO logger] INFO (cobol.host.ProcessLogger) - 11:54
    :47,484 [main] INFO (shared.environ.ApplicationProperties) loaded properties fr
    om resource spl.properties: {spl.runtime.cobol.sql.cursoredCache.maxRows=10, spl
    .tools.loaded.applications=base,ccb,cm, spl.runtime.cobol.sql.disableQueryCache=
    false, spl.runtime.utf8Database=true, spl.runtime.cobol.encoding=UTF8, spl.runti
    me.cobol.sql.cache.maxTotalEntries=1000, spl.runtime.cobol.cobrcall=false, spl.r
    untime.cobol.sql.fetchSize=150, spl.runtime.environ.init.dir=C:/spl/CCBDEMO22/et
    c, spl.runtime.sql.highValue=, spl.runtime.service.extraInstallationServic
    es=CILTINCP, spl.runtime.oracle.statementCacheSize=300}
    - 11:54:47,625 [Log4j Connection Listener] INFO (cobol.host.LocalLogServer) C
    onnected to client at /10.244.102.185
    - 11:54:47,656 [Remote JVM:17 Main ] INFO (cobol.host.SocketStrategy) Socket
    strategy set to com.splwg.base.support.cobol.host.sockets.WindowsPipeSocketStrat
    egy
    - 11:54:47,687 [Remote JVM:17 Main ] INFO (cobol.host.RemoteJVM) Remote JVM l
    istening for requests. Rmi registry port: 6506
    - 11:54:47,718 [JVM 17 INFO logger] INFO (cobol.host.ProcessLogger) - 11:54
    :47,625 [Remote JVM:17 Main ] INFO (cobol.host.RemoteJVM) Removing all existing
    logging appenders from JVM 17
    - 11:54:48,265 [JVM 17 ERROR logger] ERROR (cobol.host.ProcessLogger) Exceptio
    n in thread "Remote JVM:17 Thread 1" java.lang.UnsatisfiedLinkError: no cbljvm_s
    un in java.library.path
    - 11:54:48,375 [JVM 17 ERROR logger] ERROR (cobol.host.ProcessLogger)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
    - 11:54:48,484 [JVM 17 ERROR logger] ERROR (cobol.host.ProcessLogger)
    at java.lang.Runtime.loadLibrary0(Runtime.java:822)
    - 11:54:48,593 [JVM 17 ERROR logger] ERROR (cobol.host.ProcessLogger)
    at java.lang.System.loadLibrary(System.java:993)
    - 11:54:48,703 [JVM 17 ERROR logger] ERROR (cobol.host.ProcessLogger)
    at com.microfocus.cobol.RuntimeSystem.<clinit>(Unknown Source)
    - 11:54:48,812 [JVM 17 ERROR logger] ERROR (cobol.host.ProcessLogger)
    at com.splwg.base.support.cobol.host.CobolThread.run(CobolThread.java:29)
    Aslo i get the following error:-
    compile:
    [echo] ...Compile cm
    [javac] Compiling 6 source files to C:\spl\CCBDEMO22\java\target\cm
    [javac] C:\spl\CCBDEMO22\java\sourcegen\cm\com\splwg\cm\api\lookup\Business
    bjectOptionLookup.java:75: PORTAL_NAV_OPTION is already defined in com.splwg.cm
    api.lookup.BusinessObjectOptionLookup.Constants
    [javac] public BusinessObjectOptionLookup PORTAL_NAV_OPTION;
    [javac] ^
    [javac] 1 error
    BUILD FAILED
    C:\CM_packaging\etc\CMbuild.xml:91: Compile failed; see the compiler error outp
    t for details.
    Total time: 28 seconds
    100727:120912 <info> Creates cobol lockfiles in order to get compiled
    100727:120912 <info>
    100727:120912 <info> Patch apply completed.
    100727:120912 <info>
    100727:120912 <info>
    100727:120912 <info> Log file is C:\Test\applyCM.CCBDEMO22.CCBV22.log
    100727:120912 <info> End of c:\CM_packaging\\applyCM.plx
    100727:120912 <info> Compiling cobol programs, check response codes for every
    rogram.
    No lockfiles found
    100727:120912 <info> ***********************
    100727:120912 <info> Patch apply completed.
    100727:120912 <info> ***********************
    Performing webserver action N
    JAVA_OPTS is -Xms1024m -Xmx1024m -XX:MaxPermSize=256m -Dfile.encoding=ISO8859_1
    CATALINA_HOME is C:\tomcat\apache-tomcat-6.0.13
    CATALINA_BASE is C:\spl\CCBDEMO22\product\tomcatBase
    CLASSPATH is C:\spl\CCBDEMO22\splapp\standalone\lib\ojdbc5-11.1.0.6.0.jar
    Edited by: user10594079 on Jul 27, 2010 1:10 AM

  • Oracle 9i/Laptop Development Environment Setup

    I am architecting a development environment to run on a single laptop, Sony VAIO running Windows XP Pro. MS IIS is currently installed. I want Oracle 9i as the primary DB in the development (1 user/laptop), and eventually in the production environment. What should be my Oracle products (and certified OS and AS) on both the server and client sides? FYI, I could either partition the existing disk to install Linux, or add a second disk.
    Thanks,
    Gary Johnson
    [email protected]

    Sorry, I made a mistake
    Message was edited by:
    Gerry

  • How do i get data when displaying error message in BDC

    hi,
    I have generated one internal table for displaying error message using BDCMSGCOLL, i want the the error to display according to the field name,
    Hw can i get it...
    ex: <Material name> Error message as name already created or unit doesnt exit...
    Pls reply,
    Regards,
    Divi.

    Hi Divya,
    Try the below
    CALL TRANSACTION 'MM01'
                        USING bdcdata
                        MODE   'N'
                        MESSAGES INTO MSGTAB.
    IF SY-SUBRC NE 0.
    move itab-matnr to jtab-matnr.
    append jtab.
    PERFORM CHECK.
    ENDIF.
    FORM CHECK.
    LOOP AT MSGTAB where msgtyp = 'E'.
    read table jtab index sy-index.
    write:/ jtab-matnr.
    CALL FUNCTION 'MESSAGE_PREPARE'
      EXPORTING
        LANGUAGE                     = sy-langu
        MSG_ID                       = MSGTAB-MSGID
        MSG_NO                       = MSGTAB-MSGNR
       MSG_VAR1                     = MSGTAB-MSGV1(50)
       MSG_VAR2                     = MSGTAB-MSGV2(50)
       MSG_VAR3                     = MSGTAB-MSGV3(50)
       MSG_VAR4                     = MSGTAB-MSGV4(50)
       IMPORTING
       MSG_TEXT                     = L_MSG
    EXCEPTIONS
       FUNCTION_NOT_COMPLETED       = 1
       MESSAGE_NOT_FOUND            = 2
       OTHERS                       = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    WRITE:   L_MSG.
    ENDLOOP.
    ENDFORM.
    - Satish

  • When I am attaching documents to a new e-mail I am getting Data Execution Prevention error and crashing firefox? What can I do to overcome this problem.

    When I am making a new e-mail and trying to attach a document(Word, Wordperfect or pdf file, an error occures because of the Data Execution Prevention and crashes the program? What need to be done to correct this issue. I was able to do this a few weeks ago with no problem.

    DEP errors can be caused by plugins (Tools > Add-ons > Plugins) that aren't working properly.
    *https://support.mozilla.org/kb/Troubleshooting+plugins
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Error B1 Development Environment tools

    Hi experts,
    When I try to fill the form B1 Add On wizard, it show me the next error message:
    Microsoft Visual Studio: "Indice fuera de los limites de la matrix"
    please help, i don't know how to find the source of problem...

    Hi,
    Check this first:
    error: "Index was outside the bounds of the array" during B1DE wizard
    B1DE Configuration
    Thanks,
    Gordon

  • Business Objects Developement environement Setup

    Hi Experts,
    I am designing Business Objects Universe in 3.1 version with SQL severe database.we don't have development setup for Business Objects Tool,Can any one suggest me how to do that.
    The data is coming from 2 different servers can i have to make TWO connection is it fine with one connection it self, if it one connection can i have to Built 2 universe?
    Thanks,
    Gowtham

    Hi
    If data is coming from 2 different systems ...you need to create two different connections and two different universes.
    otherwise you need to upgrade from BO 3.1 to 4.1...then you can build only one universe using multiple source enabled option using relational connection.
    or you need to develop one more server 3 combining with Server 1 and server 2 and then on top of server 3 ...you can develop single universe.  but i suggest upgrade from 3.1 to 4.1

  • Studio Installer has strange licensing error

    Hi folks,
    Our Crossgrades just arrived today. Just tried to install but I get the following error messages. As a longtime mac user I know what privileges are all about but there is nothing I can do to get the software to work:
    "Licensing Error: The license file will not be written to disk becuase the user does not have enough priveledges."
    Well certainly do have enough priviledges and I've also tried to repair them, I'm as uptodate with Os X updates as you can be.
    After that message it does let me run the installer which seems to go all the way through. I then try launching one of the apps, it asks me for a serial again and I get this message.
    "Licensing Error
    This application cannot continue because the licensing data is corrupt."
    So there we go. Come on apple sort out your installers! They've been getting messy recently!
    Any help's appreciated.
    Cheers
    Magnus

    **** this doesn't work for me, I have 5.1 studio (universal binery) but it's not an upgrade it's the full version ie: I haven't ever installed sudio before, I get the same licensing error and unfortunately don't yet have the:
    Library/Application Support/ProApps/Final Cut Studio folder to trash, anyone have any ideas ? I called apple but they didn't really have a suggestion for me apart from taking my g5 in to them to take a look at, that's a little differcult for me.
    Any help would be much appreciated.
    I'm the admin account so I should have full privilages.

  • Maple 18 license error

    Hi!
    Maple's license manager gives the following error at startup:
    Maple initialization error, Invalid host.
    The hostid of this system does not match the hostid
    specified in the license file.
    Feature: Maple18
    Hostid: INTERNET=
    License path: /home/labuwx/Applications/Maple/license/license.dat:
    FLEXnet Licensing error:-9,57
    For further information, refer to the FLEXnet Licensing documentation,
    available at "www.acresso.com".
    SN=
    I use a 64 bit system, Maple is 64 bit as well, but the license manager is 32 bit.
    According to this site the only thing I need to do is installing lsb-core / lsb-base.
    I searched the web a lot but found no solution. The things I tried:
    -made a fake eth0
    -installed ld-lsb, lsb-release
    Is there anybody here who could get Maple run in Arch?

    Hey men!
    I think it can be a problem with grub. Since grub uses the first 63 sectors (or so) of the HDD, and FLEXnet uses sector 32, they might conflict. I had problems installing grub on a PC that had a Borland compiler on a windows partition because Borland uses/used FLEXnet. Same is with AutoDesk products, almost every CAD, etc... The only solution I found was using another disk for my linuxes. But I Don't know what to do if you are already on linux. Try searching around FLEXnet and grub. Sorry, I used up all of my time now :-| Hope you'll find something, I also need Maple and it's a mess. I will put it on windows I think.

  • Itunes data execution prevention error. help! thanks..

    I get Data execution prevention error. tried to turn off but without success. also uninstalled itunes and quicktime and deleted every regedit. again , with no success. tried to run DEP with exception and nothing. any suggegstions ? thanks!

    Can you check something for me please, amir? Is your QuickTime Player currently failing to launch too? (Knowing whether it does or not can give us a heads up on what is causing the iTunes DEP.)

  • Setting Up Shared Development Environment

    Is there any diagrams, white papers, guides or best practices on setting up the J-Developer and connecting to shared Services and database? The Developer guide (E10148.pdf) does not really cover what the standards is or the overall infrastructure of the JDeveloper and setting up a Shared Developer enviroment.
    I looking for something like http://docs.oracle.com/cd/E25178_01/fusionapps.1111/e15524/gs_install_e.htm but for (11.1.1.6.0) version webcenter.
    I basically looking for something to help me get our Shared Development Environment setup with Jdeveloper.

    The issue is connecting the Jdeveloper to the WebCenter DS and Activity DS schemas. In the Development guide it says I need to connect to these schemas to be able to utilize several of the WebCenter Services, ( http://docs.oracle.com/cd/E21764_01/webcenter.1111/e10148/jpsdg_svc_intro.htm#BHCDJHAI - 7.2.2 Setting Up a Database Connection
    We are trying to set up the connection to our shared development environment database. Our database group is concerned with giving developers access to these schemas. They are concerned that JDeveloper will changes or modify the schema and cause the database to fail. They created a account with read only access but we are not sure it this will work.
    I been trying to find anything in the documentation to find what access JDeveloper needs to the WebCenter DS and Activity DS schemas and if JDeveloper can modify these schema in any way.
    Additionally try to find anything on the best practices on connecting to a shared database and setting up a Development environment and its connection to Jdeveloper .

  • Not Getting Data to PSA

    Hi Experts,
    i am facing the below critical issue.
    i have enhanced 2 fields, item start date and end date to crm data source 0CRM_SRV_PROCESS _I Data Source.
    while checking data from RSA3  i have got data for those 2 fields(item start date and end date) in CRM System, but while running Infopackage i am not getting data of those 2 fields to BI PSA table.
    i got data from RSA3 in CRM Quality and Production Systems and not getting data in Quality and Production BI Systems at PSA level.
    But i am getting data in RSA3 in CRM  development system and BI Development system at PSA level.
    Means i  am facing issue only at Quality and Production BI Systems at PSA level.
    Please find below screen shots for reference:
    RSA3 Screen shot from CRM Quality System:
    PSA Screen shot from BI Quality System:
    Thanks & Regards,
    Nagaraju K

    Hi Anshu,
    i have enhanced almost 20 fields for  same  data source, among these 20 fields other date fields also there which all are getting fine in dev, qty and production systems.
    but only these 2 fields are not getting data to BI PSA level in Quality and productions systems.
    Please find below code for reference:
       if lt_service_assign is NOT INITIAL.
    READ TABLE lt_service_assign into ls_service_assign with key ITEM_GUID = ls_data-item_guid.
    if sy-subrc = 0.
    CALL FUNCTION 'CONVERT_TIMESTAMP_TO_BP_TIME'
      EXPORTING
        BP_GUID_32         = ls_data-item_guid
        IM_TIMESTAMP       = ls_service_assign-BEG_TSTMP
    IMPORTING
       EX_DATE            = lv_start_date.
    *   EX_TIME            =
    if sy-subrc = 0.
    ls_data-ZZITM_STARTDT = lv_start_date.
    endif.
    CALL FUNCTION 'CONVERT_TIMESTAMP_TO_BP_TIME'
      EXPORTING
        BP_GUID_32         = ls_data-item_guid
        IM_TIMESTAMP       = ls_service_assign-END_TSTMP
    IMPORTING
       EX_DATE            = lv_end_date.
    *   EX_TIME            =
    if sy-subrc = 0.
    ls_data-ZZITM_ENDDT = lv_end_date.
    endif.
    endif.
    endif.

  • LV 2011 development environment prompting to install LV 2012 RT Module f1 patch?

    I have a LV 2011 development environment setup, including RT.  I am getting a message that there is an urgent patch to LV 2012 RT available; see attached.  This development machine must remain on LV 2011; should this patch be installed?  Thanks.
    Matt
    Solved!
    Go to Solution.
    Attachments:
    ScreenHunter_01 May. 29 08.06.jpg ‏126 KB

    Like the message in the notification states, you're seeing that update because you've likely got some other component that released along with LabVIEW RT 2012 - NI-RIO 12.0, WSN 1.4, or Fieldpoint 6.0.11.  The issue was to fix a specific problem in LabVIEW 2012 that affected RT, so if you don't have LabVIEW 2012 installed then the patch will neither be harmful nor helpful to you; however, NI-RIO, WSN, and Fieldpoint installer framework files for RT had to be updated to be compatible with the LabVIEW changes (and thus you likely have a component installed that has an update available, even if LabVIEW 2012 itself is not installed).
    -Danny

  • Solution Manage Diagnostics - error in the system setup

    Hello,
    I have installed SMD and I installed one system with the Setup Wizard of the SMD. According to the result of the setup, it was successful.
    However, when I do a self check in SMD, I get the five following errors in the Monitored Setup node :
    5 error(s) found:
    No DB agent autoconfig status found in SMD repository for sv42/SM1. Please make sure system has been setup in Monitored Setup.
    No JVM startup parameters setting status found in SMD repository for sv42/SM1. Please make sure system has been setup in Monitored Setup.
    No Roles assignment status found in SMD repository for sv42/SM1. Please make sure system has been setup in Monitored Setup.
    No SSO Setup status found in SMD repository for sv42/SM1. Please make sure system has been setup in Monitored Setup.
    No Telnet agent autoconfig status found in SMD repository for sv42/SM1. Please make sure system has been setup in Monitored Setup.
    Can anybody help me ?
    Thank you

    If you goto http://server:port/smd >>> Diagnostic Setup >>> Diagnostic System >>> Setup Wizard, do you have a message similar to:
    Last Diagnostics setup wizard execution on Tue Oct 09 13:34:44 2007 :
    - 0 setup steps disabled by user
    - 13 setup steps succesfully executed
    - 0 setup steps executed with warnings
    - 0 setup steps in error
    If you do, your Diagnostic server is correctly setup.
    For Managed system, same thing, http://server:port/smd >>> Diagnostic Setup >>> Managed Systems >>> Setup Wizard, or check setup results to make sure it's completed.

Maybe you are looking for