Unable to reference Hibernate libraries in NW CE 7.1

Hi,
I am unable to reference Hibernate liberaries in NW CE 7.1. Though I have followed the steps mentioned in the some example (blog), still getting the same error.
Can somebody help me if this is limitation or if I missed any setting.
Thanks in advance
Thanks,
Prathap

Hi Prathap and Richard!
Look if the solution to my case can help you:
Migrating to SAP Web AS - HibernateException: Errors in named queries
Regards.
Ballock.
Edited by: Ballock on Aug 21, 2008 3:59 PM

Similar Messages

  • Unable to move between libraries and events

    For the last month everything on FCPX 10.1 has worked without a hitch.  As of today, i am unable to switch between libraries or even events within those libraries. 
    For example, i'm editing a sweet 16 event.  one event is "prep"  the other event is "church ceremony". when putting together a montage, once i am done working with the clips in "prep" I click to "church ceremony".  No change, the "prep clips remain in the browser, althought he "church ceremony" event highlights, but won't twilr down. 
    Final Cut Pro X 10.1 trial (3 days left)
    late 2011 Macbook Pro
    2.4 GHz i7
    16GB 1333 MHz DDR3
    OSX 10.9.1 Mavericks

    The image above shows all the clips inside the entire library as i had last clicked on the library itself to see all clips in the library.  Once i clicked on the "score" event, the media browser did not update to reflect only what is inside the "score" event.

  • Users are unable to synchronize document libraries with OneDrive for Business

    Hello,
    We are having an issue with our users attempting to synchronize document libraries with OneDrive for Business. When a user tried to synchronize the document library either via the "SYNC" button on the document library page using IE or by
    manually entering the document libraries path into the OneDrive for Business desktop app they receive the following error
    "We can't connect to the specified SharePoint site". The users have the Edit permission to both the site and the document library. I have performed the following actions in attempt to get the synchronization to work.
    1. Tested giving user the owner permission to the site and document library. same result.
    2. Performed a repair on the users Office 2013 installation.
    An interesting point to note is that I myself am able to synchronize the document libraries using both the "SYNC" button on the document library site and by entering the path manually in the desktop app. Difference between my account and the test
    accounts is that I'm a site collection administrator and farm administrator. Can anyone shed some light onto this issue?

    Hi Corey,
    According to your description, my understanding is that the users cannot sync document libraries with OneDrive for Business.
    I recommend to check the Permission Level to see if the Use Client Integration Features permission is selected.
    If not, check this permission in the corresponding permission level which is granted to the users.
    Please also check if the users have the right permission to sync the document library with OneDrive for Business.
    More reference:
    http://nheylen.wordpress.com/2014/05/15/sync-error-we-cant-connect-to-the-specified-sharepoint-site/
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Possibillities to free references to libraries from SAPLogon.exe?

    Hello community,
    I have the following problem:
    In an ABAP code I load the Java Virtual Machine (JVM). I create a VM and after processing of a Java function, via Java Native Interface (JNI), I destroy the JVM and unload the JVM library again. All works well - but only one time. If I start the same code again, I get an error - I can not create the JVM. I communicate with the JVM via an ActiveX module. The analyzing process shows that SAPLogon.exe do not frees the references to the libraries. Is there any way to frees resources from SAPLogon.exe? Maybe via the garbage collector?
    Thanks for tips.
    Cheers
    Stefan

    Hi StSchnell,
    Maybe Calling the Garbage Collector explicitly solve the problem. You can try:
    [Note 580871 - Calling the Garbage Collector explicitly|https://service.sap.com/sap/support/notes/580871]
    Regards,
    Bruno Xavier.

  • Unable to find attached libraries

    I installed 9iAS (1.0.2.0.0) and Headstart (6.5.1) on Windows 2000 Server. I can successfully run a web form, but the form is unable to open any of the attached libraries. Also, the Headstart utilities are not functioning (again, it seems as though none of the libraries are found). I have tried placing the FORMS60_PATH and all of the HSD65 registry settings in both HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE and HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOMEx, but still cannot open the attached libraries. Does anyone have any clue where the problem may be?
    Here is the error that I receive when I launch the application:
    FRM-21011: Pl/SQL unhandled exception ORA-06508
    Thanks in advance.
    Rick

    Rick,
    Can you run these forms client server? (Try to open in form builder, I suppose form builder is installed in the same Oracle home as Oracle Forms Server?).
    Do you still encounter the same problem?
    What is the length of your forms60_path?
    Are there plx files somewhere in the forms60_path that are found first?
    Does it help if you try to put the libraries in the same directory as the form that apparently is found?
    Hope this helps
    Kind Regards, Marc Vahsen
    Headstart Team

  • Unable to reference AjaxControlToolkit and DataVisualization

    Hi,
    I'm trying to migrate an existing ASP.NET Web Form application to Windows Azure but I can't create a reference to main libraries: the AjaxControlToolkit and System.Web.DataVisualization (for creating charts).  I tried installing via Nuget and Object
    Browser but it just won't let me.  I had no problem when deploying it our hosting server.  But not sure why in Azure, it's not allowing me to make the references.
    The web app is useless without these two libraries.
    Does anyone know any workaround?
    Marilyn Gambone

    I would suggest you post this thread on 
    http://ajaxcontroltoolkit.codeplex.com/workitem/list/basic
    The future belongs to those who believe in the beauty of their dreams.

  • Unable to reference item value in report region cursor

    I've worked on this for a couple of days now and cannot figure out what is going wrong. I have a report that I have created, using database links. Below is the code for my report:
    declare
    v_sql varchar2(32000) := null;
    v_curr_sql varchar2(32000) := null;
    v_full_sql varchar2(32000) := null;
    cursor c1 is select distinct fiscal_year from fiscal_year where db_cc_id = v('G_DB_ID') order by 1;
    begin
    for r1 in c1 loop
    v_curr_sql := 'sum(decode(fiscal_year,'''||r1.fiscal_year||''',visit_count,0)) as "'||r1.fiscal_year||'V", '||
    'sum(decode(fiscal_year,'''||r1.fiscal_year||''',patient_count,0)) as "'||r1.fiscal_year||'P", ';
    v_sql := v_sql ||v_curr_sql;
    end loop;
    v_full_sql := ' select name,'||v_sql||' sum(visit_count) visits, sum(patient_count) patients from visit_trends
    where ehs_cc = :f109_client and visit_type = :p45_visit_type and ( (:g_fg = 0 and fg_id in (select fg_id from db_user_fg where ehs_cc = :f109_client and db_user_id = :f109_db_user_id)) or fg_id = :g_fg) group by name';
    return v_full_sql;
    end;
    When I run the page, I get no data found. When I check my session state for the application variables, it tells me that the value for G_DB_ID is 24. If I plug in 24 to to the cursor instead of using the bind variable, it works. I've also tried the :G_DB_ID and nv('G_DB_ID') calls in the cursor. The strange thing is if I use a different bind variable (G_FG), which has a session state value of 0, it will at least return the two columns in the report not created by the sql loop. I must be able to use a bind variable in this report to make sure I'm getting the correct accounting periods for this client. I've even gone as far as to delete and recreate the page. Any suggestions?

    Hi Harry,
    We are also facing the same issue, has the issue has been resolved. For some users we are able to select the lov and for few we are unable to select the lov but data is fetched in lov. Only select or quickselect is not working.
    If so, please provide.
    Regards
    Raman
    [email protected]

  • Unable to use complex libraries in 64bits?

    hello all,
    i have this short program:
    #include <complex.h>
    int main()
            complex z(1,2), zz(3, 4);
            complex zzz = z + zz;
    }calypso-henry% CC -compat -m32 -o comp1 comp1.C -I/opt/SUNWspro/include -L/opt/SUNWspro/lib -lcomplex -lm
    but
    calypso-henry% CC -compat -m64 -o comp1 comp1.C -I/opt/SUNWspro/include -L/opt/SUNWspro/lib -lcomplex -lm
    CC: Warning: -compat=4 is not supported with -xarch=sparc, -compat=4 turned off
    "comp1.C", line 5: Error: complex is not defined.
    "comp1.C", line 7: Error: complex is not defined.
    2 Error(s) detected.
    where am i wrong?
    I'm using Sun Studion with latest patches, on Solaris 10 (sparc and amd64!)
    thanks in advance for help,
    gerard

    First of all, there is no need to specify complier installation directory in -I and/or -L options; compilers knows where to look for its own libraries and includes. In fact, -I/opt/SUNWspro/include -L/opt/SUNWspro/libwill interfere with compiler's algorithms of libraries/includes lookup and cause unwanted side effects.
    Replace those with
    -library=complexas CC(1) suggests. libm will be linked automatically.
    Now, to the difference between compat=4 (-compat) and compat=5 (no -compat option). compat=4 implies very old, pre-standard C++ syntax and semantics. Is there a solid reason for using it, especially in modern Solaris 10 environment? Also, as the warning suggests, compat=4 is not supported with 64-bit sparc (-xarch=v9).
    I'm not sure why your code does not compile in -m64 (with proper compiler options), but I think I know the right way to arrange things:
    1. Use C++ includes instead of C-style includes:
    #include <complex>2. Since C++-style headers inject names into std namespace, you'll have to write std::complex; also, complex is a template class, so you'll need to write std::template<float>, for example, or provide typedefs.
    3. Do not use -compat; in fact, it is better to switch to STLport library (-library=stlport4) than continue using outdated (but provided for backward compatibility libCstd). In short, add this to compilation line:
    -library=stlport4To summarize: here's the code that works and correct compiler parameters
    $ cat test.cc
    #include <complex>
    int main()
            typedef std::complex<float> complex;
            complex z(1,2), zz(3, 4);
            complex zzz = z + zz;
    $ CC  -m64 -library=stlport4 -library=complex test.cc

  • Unable to use multiple libraries function

    Hi all,
    I have been using my iPod, with iTunes, on my parents computer for years. I recently moved out and bought a Toshiba laptop (nothing special) with Windows 7. When I was leaving my parents place, I moved my current iTunes library with all my files onto my external hard drive.
    I recently tried to open my library on my hard drive by following the Multiple Libraries instructions on this website (Start > Itunes > then holding down shift click on iTunes to get the pop up window). Unfortunately for me, following these instructions did nothing.
    No window popped up for me to browse for my old library and no error message popped up either. When I stop holding down shift (after I have clicked on iTunes) it just opens iTunes with the sample songs that come with it.
    I have no idea how to get my old library onto iTunes if this doesn't work. What will happen if I just plug my iPod in? I am dying to add more CD's but can't until I get this sorted.
    Please help!

    So no one can help me with my first query?!
    Does anyone know what happens if I just plug my iPod into my laptop (with all my music/videos on the iPod itself) without the library existing on iTunes?
    I am begging now people!

  • Unable to read the libraries while running the form

    Hi,
    I have a problem while I run my forms9i application.
    I had to change the default path of the libraries for my forms9i.
    I have set the libraries path as c:\9iLibraries in the registry under forms90_path. Also I set the "Start in" Property in the properties of the forms9i builder to c:\9iLibraries.
    With the above settings I am not getting errors at the design time.. but when I run the form it gives me errors saying "frm-40039 cannot attach library while opening the form"
    Then, I set the parameter in the default.env file
    as
    forms90_path=c:\9iLibraries
    But still I continue to get the error.
    Thanks in advance
    Narain

    Thanks for the reply.
    I had set the parameter in the default.env file which was by default commented as
    # FORMS90_PATH=C:\Oracle9iDev/forms90
    to
    FORMS90_PATH=C:\Oracle9iDev/forms90;C:\Libraries9i
    But still I am getting the error
    Also can you please tell me the setting or syntax to set in the formsweb.cfg
    Thanks again
    Sheba

  • FRMCMP unable to find attached libraries

    Hi,
    I am currently migrating a web application to 10.1.2.0.2 on Sun Solaris. The object libraries, libraries, menus and forms have all been upgraded successfully on the Windows 2000 client machine using forms builder and Forms Migration Assistant.
    The files have now been ftp'd over to the server and are being converted using frmcmp.sh to produce the executables to be deployed on the application server.
    The libraries have been converted to plx files (included those with attached libraries) as have the form and menu modules which do not have attached libraries, I did have to move (cd) to the actual directory to get frmcmp to see the menu and form module. However I cannot get the modules with attached libraries to produce an executable.
    I have tried moving into the directory with the source code, setting the environment varaibles, and calling frcmp directly and implicitly from this directory.
    There seems to be a number of threads where this problem has been raised and it appears on metalink as closed but with what appears to be no resolution to the original question.
    Can someone offer a solution

    Thanks,
    I was in the process of translating my menu module to a text version. It appears I made a very silly assumption that this was not the case on live but there appears to be a number of the files all differently named.
    In the text version it expects an initcapped version. I had assumed (oops!) that if I corrected the names on windows and recompiled and saved the menu modules then the name held internally would be the same.
    I was wrong!
    Advice much appreciated.

  • ADF application unable to reference external jar deployed as library

    I am using jdeveloper 11.1.1.3.
    My problem is as folows : I have a JAR deployed in weblogic 11g as a library and i want my ADF application to refer it as this inhouse developed library has some utility methods in it.
    In my ADF application i have referenced the library in weblogic-application.xml as below..
    <library-ref>
    <library-name>beansCBB</library-name>
    </library-ref>
    But still my my jsps are failing to compile
    Please guide me on how to provide library reference while deployment.
    Zeeshan

    Hi Zee,
    Try to select the "Deployed by Default" option on the Library.
    Just to see if the application is working on the server.
    If It is working, it seems that the application can't find the library.... on the weblogic server.
    Then unselect the "Deployed by Default" option on the Library.
    And try to add
    <library-ref>
    <library-name>beansCBB</library-name>
    <exact-match>false</exact-match>
    </library-ref>
    in the "weblogic.xml" file
    Please confirm that the name of the Library (on the server\Deployments) is "beansCBB".
    When you have deployed the library on the weblogic server, did you select the same "server" (when asking to Select deployment targets) ???
    Regards
    Nicolas

  • Unable to find J2EE librarie on the SDM for removal

    Hello,
    I am trying to remove two J2EE libraries from the WAS.
    I can see them on the WAS, I can see them on the ext folder of the server but I can't see them on the SDM. I went over each and every entry at the undeployment tab of the SDM yet I can't find it. I cannot see it at the applications section of the Deploy Service of the WAS. I tried manually deleting their folders from the ext folder yet they are still exist on the WAS. So how do I remove them?

    A similar problem is described here http://serverfault.com/questions/490236/task-scheduler-just-decides-it-doesnt-want-to-run-a-task-anymore

  • Unable to see iTunes libraries bi-directionally on MBP 17"

    Ok, I've got an odd situation that I can't figure out. (I also posted this in the Bonjour Windows forum as well, but figured I might get help here as well) Here's the background information:
    1) Home network consists of 2 routers. Router 1 (a Buffalo with 802.11g, running dd-wrt) is plugged into the cable modem. It's the DHCP server, assigning addresses in the 192.168.1.0/24 block. It broadcasts 2.4GHz with SSID = NET1. Router 2 is a Linksys WRT320N running dd-wrt, connected to router 1 as a simple switch (devices connected to router 2 get IPs assigned from router 1). It broadcasts on the 5GHz band as SSID = NET2.
    2) Dell desktop (running Win 7 Home Premium x64) is connected to router 2. MacBook Pro 17" (running Snow Leopard) is connected to router 2 via wireless. There's also a NAS (Synology) connected to router 2. Other devices in the house (including an older Airport Express, vonage box, etc.) are connected wired/wireless to router 1. Again, everything is in the 192.168.1.0/24 network.
    3) When I fire up iTunes on the desktop, it can see the iTunes library on the MBP, connected wirelessly to NET2. The opposite is not true (and yes, I have sharing enabled). Software firewall is off on the MBP and PC. Additionally, the MBP cannot see the Airport Express speakers on NET1.
    As an aside, I can manually connect to network shares on the desktop from the MBP by doing a Cmd-K in Finder. Once I've connected, the machine will show up in the Shared list in Finder, but still no iTunes Library.
    4) If I switch the MBP to connect wirelessly to NET1 (router 1), it can see the Airport Express speakers, but still not the iTunes library on the Desktop.
    Any idea what the deal is?

    Hi
    Even if i use a new clean blank rtf doc as the template, it still doesnt write out a file.
    When i look in the log directory at the .out files produced, they look right. If i open the .out file with Adobe Reader 9.1, the doc looks exactly as it should. It just doesn't write the file to the destination folder specified.
    It cannot be permissions as it will write out RTF/excel files to the same directory with no problems. The report is using a bursting definition but the problem cant be that because it bursts the data correctly, as shown if i specify rtf output in the bursting definition/as shown by the .out files when i specify pdf as the output in the bursting definition. Also, i get the same result even if i schedule any other report that does not use a bursting definition.
    I do get an error sometimes when i try to open pdf reports : Cannot use Adobe Reader to view PDF in your web browser. I feel somehow that this may be related and that if i fix this, i could be sorted, but im not even sure im on the right track here.
    Im really really REALLY at wits' end here, ive been trying to solve for weeks, but just cant figure it out. Any further ideas would be most welcome, thanks.

  • Unable to reference items in a hashtable

    HI,
    I'm having a bad PowerShell day today!
    My sample script to read in a text file and put the data into a hash table works just fine:
    $InputFile=Get-Content C:\Out\ktf06011.REQ
    $CurrentUserHashTable = @{}
    ForEach ($Line in $InputFile)
    $Data=$Line.Split("=")
    $Label=$Data[0].Trim()
    $Label=$Label.Insert(($Label.Length),"`"")
    $Label=$Label.Insert(0,"`"")
    $Value=$Data[1].Trim()
    $Value=$Value.Insert(($Value.Length),"`"")
    $Value=$Value.Insert(0,"`"")
    $CurrentUserHashTable.Add($Label,$Value)
    $CurrentUserHashTable 
    However, when I use this within a script that uses a file system watcher event to discover the presence of the text file, I cannot get anything from the hash table. I can see my variables being created, ready to pass on to the .add statement. I have found
    a workaround for now - not using a hash table - but would love to know why I see this behaviour and suggestions for getting at the data.
    Here is the code that I'm having trouble with.
    $folder = 'c:\In'
    $OutFolder = 'c:\Out'
    $filter = '*.*'
    $CurrentUserHashTable = $NULL
    $FileSystemWatcher = New-Object IO.FileSystemWatcher $folder, $filter -Property @{IncludeSubdirectories = $false;NotifyFilter = [IO.NotifyFilters]'FileName, LastWrite'}
    Register-ObjectEvent $FileSystemWatcher Created -SourceIdentifier FileCreated -Action {
    $name = $Event.SourceEventArgs.Name
    $InputFile=Get-Content $folder\$name
    ForEach ($Line in $InputFile)
    #Write-Host $Line
    $CurrentUserHashTable = @{}
    $Data=$Line.Split("=")
    #Write-Host "Data: " $Data
    $Label=$Data[0].Trim()
    $Label=$Label.Insert(($Label.Length),"`"")
    $Label=$Label.Insert(0,"`"")
    #Write-Host "Label: " $Label
    $Value=$Data[1].Trim()
    $Value=$Value.Insert(($Value.Length),"`"")
    $Value=$Value.Insert(0,"`"")
    #Write-Host "Value: " $Value
    $CurrentUserHashTable.Add($Label,$Value)
    $CurrentUserHashTable
    Move-Item $folder\$name $OutFolder -Force
    #Label: "ID"
    #Value: "abc00001"
    #Label: "PID"
    #Value: "00001"
    #Label: "Title"
    #Value: "Mr"
    #Label: "Initials"
    #Value: "XY"
    #Label: "Forename"
    #Value: "Mickey"
    #Label: "Surname"
    #Value: "Mouse"
    #Label: "Siteabbrev"
    #Value: "UK"
    #Label: "Status"
    #Value: "STAFF"
    #Label: "BUabbrev"
    #Value: "NOBU"
    #Label: "Department"
    #Value: "Finance"
    Note the commented bits at the bottom are the output of
    Write-Host "Value: " $Value
     and
    Write-Host "Label: " $Label
    Also, if the following are placed within the loop, I see all data items being returned, so I know that they are added to the hash table. If they are added outside the loop, I just get the final entry "Department"
    Write-Host "Keys:" $CurrentUserHashTable.Keys
    Write-Host "Values:" $CurrentUserHashTable.Values
    Many thanks,
    Jon

    Rhys,
    Thanks that was so obvious, I couldn't see it!
    I knew the answer would be simple.
    Made the amendment to my script and can now get at the data in the hashtable, via (e.g.)
    $Department=$CurrentUserHashTable.'"Department"'
    Thanks again.
    Jon

Maybe you are looking for

  • Costing in case of ETO Scenario

    Hi Experts, We have ETO scenario. There is sales order with reference to project  and absed on that production for In House Produced materials ( FG, HALB) and procurement for  some HALB, Raw Material will happen.PS<  moduel alongwith SD and PP are in

  • Help!  color printing KAPUT

    A couple of months ago my hp color printing started looking terrible.......dull, washed-out and grainy. It only got worse from there. Now anything printed from iphoto turns out garish high-contrast red/yellow/black......looking literally like ****! 

  • EAP Authentication Configuration for EAP-FAST and PEAP

    Hi Everyone, I pretty much got EAP working, however using LEAP  When I get to EAP-FAST and PEAP, I just can't seem to get it to work What am I missing, I do know that EAP-FAST and PEAP involve certificates. However, how do i set them up on the client

  • How do I extract and save files from an .iso download?

    I need to extract and burn to CD files from an .iso download.  Has anyone used 3rd party software to do this successfully?

  • I have got a new computer how do I transfer Photoshop Elements to my new computer

    Having bought a new computer I am trying to reinstall the programs I have on the old computer on my new computer. I have although problems identifying how to get this done with my Adobe Photoshop Elements 11 that I bought in 2011. It is hard to ident