Problem with InterMedia ClipBoard

Hi
i am trying to use the Code wizard to create the Get_object , put_object, insert_row procedures for inserting/updating BLOB data into oracle database
However the code editior gives an error
The code generated is as follows and the error is as follows
I am not able to figure out why it should give an error at this location though.
Please can some one help
The code is as follows
procedure INSERT_CONTENT_ROW
in_ID in varchar2,
in_AUTHOR in varchar2,
in_CONTENT_NAME in varchar2,
out_rowid out varchar2
as
begin
insert into CONTENTS ( ID, AUTHOR, CONTENT_NAME, DOCS ) values ( in_ID, in_AUTHOR, in_CONTENT_NAME, .BLOB ( ) ) returning rowid into out_rowid;
end;
----------The error generated in code Editior is as below----
WM-00521: OCI returned OCI_SUCCESS_WITH_INFO; ORA-24344: message not available
Line: 10, Column: 105: PLS-00103: Encountered the symbol "." when expecting one of the following:
( - + mod not null others <an identifier>
<a double-quoted delimited-identifier> <a bind variable> avg
count current exists max min prior sql stddev sum variance
execute cast trim forall
<a string literal with character set specification>
<a number> <a single-quoted SQL string>
The symbol "<an identifier>" was substituted for "." to continue.
When I run the same code in SQL*Plus this is the error I get
procedure INSERT_CONTENT_ROW
ERROR at line 1:
ORA-00900: invalid SQL statement
Now i am new to Intermedia and the BLOB usage so could not figure out much
I would also be gla if someone can refer me to some good reference material on the Intermedia standard procedures, functions and other developer related material.
By the way, the config is as follows:
oracle8.1.5/InterMedia Web agent/clipBoard, Win NT, Apache1.3.9
Thank you
-nandeep

Hi
When I try to generate procedures with code generator in Intermedia Clip Borad I get errors as listed against each of the procedure
1. GET_CONTENT_DOC
--to retrive documents from document column
--which is a BLOB type column:
--By the way the documents column name is DOCS in the database
procedure GET_CONTENT_DOC
ord_procedure_path in varchar2,
http_if_modified_since in varchar2,
http_status out varchar2,
http_last_modified out varchar2,
ord_content_type out varchar2,
ord_content_length out number,
ord_content_blob out blob
as
db_mod_date date;
begin
/* get the content, content type, last-modified date from the object. */
select
t.DOCS.GetContent(),
t.DOCS.GetMimeType(),
t.DOCS.GetUpdateTime()
into
ord_content_blob,
ord_content_type,
db_mod_date
from CONTENTS t
where
t.ID = ord_procedure_path
and rownum = 1;
/* if we didn't know the content type, it's just bits */
if ord_content_type is null
then
ord_content_type := '/x-unknown';
end if;
/* figure out the length */
ord_content_length := dbms_lob.getlength( ord_content_blob );
/* figure out the http status and last modified date */
http_status := ordwebutl.cache_status(
db_mod_date, http_if_modified_since, http_last_modified );
end;
ERROR is a s follows:
WM-00521: OCI returned OCI_SUCCESS_WITH_INFO; ORA-24344: message not available
Line: 17, Column: 9: PLS-00201: identifier 'T.DOCS' must be declared
Line: 16, Column: 5: PL/SQL: SQL Statement ignored
2. PUT_CONTENT_DOC
-- to insert a document
procedure PUT_CONTENT_DOC
ord_procedure_path in varchar2,
http_status out varchar2,
ord_content_blob out blob
as
begin
/* set the blob to empty before we return a handle to it */
/* and set the content type from the one passed in */
update CONTENTS t
set t.DOCS = .BLOB ( )
where
t.ID = ord_procedure_path
and rownum = 1;
/* now select the blob we're going to update */
select t.DOCS.GetContent()
into ord_content_blob
from CONTENTS t
where
t.ID = ord_procedure_path
and rownum = 1
for update;
/* return http status OK */
http_status := 200;
end;
ERROR is as follows:
MWM-00521: OCI returned OCI_SUCCESS_WITH_INFO; ORA-24344: message not available
Line: 13, Column: 18: PLS-00103: Encountered the symbol "." when expecting one of the following:
( - + mod null <an identifier>
<a double-quoted delimited-identifier> <a bind variable> avg
count current max min prior sql stddev sum variance execute
cast trim forall
<a string literal with character set specification>
<a number> <a single-quoted SQL string>
The symbol "<an identifier>" was substituted for "." to continue.
The INSERT_DOCUMENT got created thru SQL*Plus. However I have NOT changed the .BLOB to EMPTY_BLOB() and I am still not sure whether it will work and whether I have to change it empty_blob()( iguess technically I should )
thank u
-nandeep
null

Similar Messages

  • Problem with the Clipboard after upgrade

    We had been using Intermedia, along with the Clipboard and WebAgent in Oracle 8.1.5. A few days ago we upgraded to 8.1.6 (I performed the Intermedia upgrade as well). Oracle is Installed on a Solaris 7 server.
    We installed everything into a new Oracle Home.
    The code we had written using the Intermedia procedures and packages still works but now the CLIPBOARD is not working. The ClipBoard and Web Agent are installed on an NT server running IIS
    Using the ClipBoard, when we we try to connect to the database we get the folliwng error:
    ORA-12564: TNS connect refused
    In the LISTENER.log on the server we see the following corresponding errors:
    26-APR-2000 09:18:16 * (CONNECT_DATA=(SID=cadv)(ORACLE_HOME=/u01/app/l1oradv/product/8.1.5)(SERVER=DEDICATED)(CID=(PROGRAM=C:\WINNT\System32\inetsrv\inetinfo.exe)(HOST=L10008016)(USER=IUSR_L10008016))) * (ADDRESS=(PROTOCOL=tcp)(HOST=172.27.
    125.68)(PORT=1206)) * establish * cadv * 1201
    TNS-01201: Listener cannot find executable /u01/app/l1oradv/product/8.1.5/bin/oracle for SID cadv
    The /u01 directory is the OLD Oracle home. I cannot figure out where the Clipboard is pulling that name from. I went through the tnsnames.ora on the client and the server and both point to the new Oracle home. I also went through the LISTENER.ora and there are no reference to the old Oracle home. On the NT Server where the Clipboard and Web Agent are installed I went through the wsc.cfg and everything looks good. There is no reference to the old Oracle home. I also verified the old listener is not running on the Solaris server.
    Where could this be buried? Everything else (DBA Studio, SQL*Plus worksheet) is working from the same NT Server running the Clipboard. I cannot find where the old Oracle home reference is coming from.
    Marilee

    Hi,
    The Clipboard uses the Web Agent to connect
    to the database, so it should be possible to
    track this down just using the web agent.
    The web agent itself is just a regular OCI
    client application - it doesn't do anything
    special when it comes to connecting to the
    database, it just uses the SERVICE attribute
    in the WSC.CFG file as a SQL*Net TNS service
    name in TNSNAMES.ORA. The first thing to try
    is to test the database agent being used by
    the clipboard from a browser. Eg:
    [URL=http://host/intermedia/<dbagent-NAME>/~test]http://host/intermedia/<dbagent-NAME>/~test[/URL] That should result in the same error message
    being logged by the listener and should also
    result in an error message being displayed
    on the browser window.
    To verify that the Web Agent is reading the
    correct TNSNAMES.ORA, you can create another
    database agent and include the entire
    connection string as the service name instead
    of using a TNS service name. This is probably
    best done by editing WSC.CFG, creating a new
    database agent by copying the existing one
    and replacing the service name with the
    connect string from TNSNAMES.ORA, making sure
    the string is all on 1 line. For example:
    [database_agent.sample-test]
    service = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = mypc)(PORT = 1521)) )(CONNECT_DATA = (SERVICE_NAME = orcl) ) )
    database_user = scott
    database_password = tiger
    authorized_request_class = retrieve
    authorized_sql_statements = procedures
    authorized_sql_procedures = *You can also verify the connection string
    using SQL/Plus. For example:
    sqlplus scott/tiger@"(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = mypc)(PORT = 1521)) )(CONNECT_DATA = (SERVICE_NAME = orcl) ) )"If the connection string works but the TNS
    service name doesn't, then I suspect that the
    web agent is looking at an old TNSNAMES.ORA
    file. If so, its because an old file exists
    in the PATH being used by IIS. Another
    possible, though much less likely problem is
    that there's an old OCI DLL and/or Oracle
    home in the PATH used by IIS.
    Simon

  • Error with Intermedia Clipboard SP's creation

    I need to upload text documents to my DB, but the Intermedia Clipboard maka the SP's with errors.
    I think there is a proble with some object in the DB, help me Please!!!

    I need to upload text documents to my DB, but the Intermedia Clipboard maka the SP's with errors.
    I think there is a proble with some object in the DB, help me Please!!!

  • Problems with Intermedia and Plugin for  RealNetworks

    I installed plugin v2.1 in a Windows 32-bit system.
    Database is 10.1.x, and Helix Universal Server 10.
    I also followed the instructions for the demo, but the
    plugin doesn't work.
    At first it couldn't connect to the database, now it can (with the system schema). The problem is that it displays a weird message when i execute the the get_video procedure:
    logplin(2540): Oracle Plug-in Error: failed to execute database statement
    logplin(2540): Oracle Plug-in Error: ORA-01008: not all variables bound
    Or when i do the sql alternative it displays:
    logplin(204): Oracle Plug-in Error: failed to prepare database statement
    logplin(204): Oracle Plug-in Error: ORA-00931: missing identifier
    logplin(204): 7: Error retrieving URL `oracle/2' (Invalid path)
    Does anyone knows how to fix this?
    Thanks
    Cesar Guerra

    i've some problem with streaming video data from oracle using realserver.
    i'm using oracle9i intermedia (9.2.0.1.0) and
    Oracle interMedia Plug-in 2.1 for RealNetworks Streaming Servers and also universal helix server 9.0.8.1427. (my helix server http port is 88)
    i've some procedure PL/SQL :
    ------------------------------procedure PL/SQL-----------------------
    create or replace procedure get_video(
         video_id in varchar2,
         mimetype out varchar2,
         data out blob) as
         tempBLOB BLOB;
         s varchar2(200);
    begin
    -- Deliver audio and mimetype
    select t.video.getcontent(), t.video.getmimetype()
    into tempBLOB, s
    from movies t where t.item_id = video_id;
    data := tempBLOB;
    mimetype := s;
    end;
    ------------------------ end of procedure PL/SQL-------------------------------
    -------------------------------mountpoint ------------------------------------
    <List Name="Oracle DB RealVideo movie">
    <Var ShortName="pn-oracle"/>
    <Var MountPoint="/dbvideo/"/>
    <Var Database="oracleSID"/>
    <Var Username="scott"/>
    <Var Password="tiger"/>
    <Var SQL="get_video"/>
    <Var Authentication="0"/>
    </List>
    ------------------------------ end of mountpoint------------------------------
    the URL i used was : rtsp://host:554/dbvideo/1
    and an error occured: "unable to locate server. This server dose not have a DNS entry. Please check the server name in the URL and try again."
    then i changed the mount point with :
    ------------------------------new mountpoint---------------------------
    <List Name="Oracle DB RealVideo movie">
    <Var ShortName="pn-oracle"/>
    <Var MountPoint="/dbvideo/"/>
    <Var Database="(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=oracleSID)))"/>
    <Var Username="scott"/>
    <Var Password="tiger"/>
    <Var SQL="get_video"/>
    <Var Authentication="0"/>
    </List>
    -----------------------------end of new mount point------------------------------
    the i used different URL : http://127.0.0.1:88/ramgen/dbvideo/1
    another error occured : "requested file not found. the link you followed may be outdated or inaccurate."
    can anyone help me?

  • Problem with intermedia utilisation

    how can i do to search string inside an
    point doc document like word using intermedia?
    ( i can do it inside an point text document)
    thank you

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by duprat christophe ([email protected]):
    Hi, i'm trying to develop an application that save the text that I handle in Word Format and then save this file to my database. My Table name is datastore with the following structure:
    ID NUMBER(3)
    DOC varchar(2)
    Anybody that can help me with the code to insert a Word document in the document field??
    Thanks
    thank you<HR></BLOCKQUOTE>
    null

  • Linking problems with Intermedia

    While trying to execute the following sql
    statement:
    create index sws_ctx_index on site_wide_index (datastore)
    indextype is ctxsys.context parameters ('datastore sws_user_datastore memory 250
    M');
    I'm getting the following error:
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: ConText error:
    ORA-06520: PL/SQL: Error loading external library
    ORA-06522: ld.so.1: extprocPLSExtProc: fatal: relocation error: file
    /oracle/ctx/lib/libctxx8.so: symbol ociepgoe: referenced symbol not found
    ORA-06512: at "CTXSYS.DRUE", line 122
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 34
    ORA-06512: at line 1
    I've searched the oracle libs in /oracle/lib
    for the ociepgoe symbol and found it in both
    /oracle/lib/libclntsh.so and /oracle/lib/libqsmashr.so
    what could it be?
    regards,
    -oscar

    Jim,
    InterMedia indexes need to be updated to show recently added items. This is documented in the Oracle Portal Configuration Guide.
    Note that the location for downloading the ctx_schedule utility is incorrect in the configuration guide. Instead, see Note 132689.1 on MetaLink.
    Also, it's a good idea to read the Oracle Text FAQ and Oracle Text Performance FAQ.
    Regards,
    Jerry
    null

  • Losing non-latin symbols with X-clipboard in urxvt

    I seem to have a problem with x-clipboard and urxvt. Whenever I copy explicitly via x-clipboard all of my non-lating characters turn into a strange symbol. Interestingly, selecting a text followed by middle mouse button works correctly and the text is copied with no loss in non-lating symbols.
    I've found a similar post on the forum:
    https://bbs.archlinux.org/viewtopic.php?id=141785
    but my situations is not quite the same. Even if I copy from urxvt into urxvt say from one instance of vim to another the effect I described occurs.
    This is exactly what's happening to me
    http://lists.gnu.org/archive/html/emacs … 00177.html
    but the thread seems discontinued.
    By the way here's my locale
    [~]%locale
    LANG=en_GB.utf8
    LC_CTYPE="en_GB.utf8"
    LC_NUMERIC="en_GB.utf8"
    LC_TIME="en_GB.utf8"
    LC_COLLATE="en_GB.utf8"
    LC_MONETARY="en_GB.utf8"
    LC_MESSAGES="en_GB.utf8"
    LC_PAPER="en_GB.utf8"
    LC_NAME="en_GB.utf8"
    LC_ADDRESS="en_GB.utf8"
    LC_TELEPHONE="en_GB.utf8"
    LC_MEASUREMENT="en_GB.utf8"
    LC_IDENTIFICATION="en_GB.utf8"
    LC_ALL=
    And locale -a
    locale -a
    C
    en_GB
    en_GB.iso88591
    en_GB.utf8
    pl_PL
    pl_PL.iso88592
    pl_PL.utf8
    polish
    POSIX
    Any hints would be of great assistance.

    @Ranmaru;
    already have it xD. I can't use middle click, no mouse and my touchpad's buttons are a bit off.
    @Mr. Pedobear:
    [hinagiku@alice-tan urxvt-clipboard]# locale
    LANG=en_US.UTF-8
    LC_CTYPE=ja_JP.UTF8
    LC_NUMERIC="en_US.UTF-8"
    LC_TIME="en_US.UTF-8"
    LC_COLLATE=C
    LC_MONETARY="en_US.UTF-8"
    LC_MESSAGES="en_US.UTF-8"
    LC_PAPER="en_US.UTF-8"
    LC_NAME="en_US.UTF-8"
    LC_ADDRESS="en_US.UTF-8"
    LC_TELEPHONE="en_US.UTF-8"
    LC_MEASUREMENT="en_US.UTF-8"
    LC_IDENTIFICATION="en_US.UTF-8"
    LC_ALL=
    [hinagiku@alice-tan urxvt-clipboard]# locale -a
    C
    POSIX
    de_DE.utf8
    en_US
    en_US.iso88591
    en_US.utf8
    ja_JP
    ja_JP.eucjp
    ja_JP.ujis
    ja_JP.utf8
    japanese
    japanese.euc
    ko_KR
    ko_KR.euckr
    ko_KR.utf8
    korean
    korean.euc
    Should I set LANG to ja_JP? Even without Japanese locale, backslash is displayed as Yen sign in terminal and Qt apps.

  • Problem with Clipboard on iOS

    Hello,
    i have a problem with Clipboard on iOS. My test code:
    var ts:String = "This is a test string for clipboard...";
    Clipboard.generalClipboard.setData(ClipboardFormats.TEXT_FORMAT, ts);
    This code is OK on Android or Windows. Test string is in clipboard and i can paste it on other app. But on iOS not. setData return true, but text is not in clipboard.
    Any ideas?
    Thaks

    Hi,
    Looks like it's a bug with iOS AIR, could you please open a bug at bugbase.adobe.com
    -Thanks
    Pahup

  • Ps CS6 Action problem: New document created with "Preset: Clipboard" is misnamed

    Ps CS6 v13.0.1
    OS X 10.6.8
    In an Action, File > New with "Preset:  Clipboard" ignores the specified document name and uses one of the following names when the clipboard definitely does hold valid content:
    1. The name that was applied by the previous invocation of File > New in a session.
    2. No name if Action is run before File > New has been used in current session.
    Only when the clipboard has no valid content will the newly created document be given the specified name.

    The Color Profile seems to work differently between CS5 and CS6.   In CS5 when I use menu File>New and there is something in the clipboard I see Preset clipboard as the dedault setting and see my current Photoshop color setting profile set in as the color profile. I pasted a ProPhoto selection into the clipboard.  When I do the same in CS6 and use File>New I see Preset Clipboard as the default setting but the color profile is not my Photoshop Color setting its ProPhotoRGB the same as I pasted into the clipboard.  However if I close CS6 down. Then start CS6 and do menu File>New I see Preset Clipboard as the default setting and the corol profile is my Photoshop color setting profile sRGB not ProPhotoRGB that in the clibpoard. So I feel the copy to clipboard from Photoshop triggers something internally to change the profile in CS6 it not something that gets set in the clipboard for the ProPhotoRGB override does not happen if I shut Photoshop down and restart it.
    I think I like the CS6 change. Noel I wrote that for you I want you to know I don't think CS6 is all bad. This change should help one from getting profiles mismatches.  CS6 is still the buggest Phoshop around.  It does not stop working as smuch as it did befor the 13.0.1 update. And when it does there a chance Autosave may save the day. The last Photoshop stop working message I got from windows was when I tried to run a script.  There were no open document so nothing to recover. After terminating CS6 and restarting it the script work without a problem.

  • Microsoft Active Server Pages with interMedia

    Can Oracle interMedia text be integrated within ASP's to deliver images to the database, and vice versa. Looking at the sample code, it appears that Oracle uses the clipboard and annotator tools, but I didn't see anything else. The "post method" within the html pages, caused a problem with the ASP developer. Any insights, or if you can point me in a different direction would be most helpful.

    hi mark,
    I have worked with OAS and intermedia a lot but i think you can do all that you want as while extracting the data its just a URL. Only thing you have to do is i guess install Web agent as IASAPA on IAS.
    all the best
    chetan

  • InterMedia clipboard: cannot get object view

    Hi all.
    I'm trying to use clipboard against 8.1.6r2 on Linux.
    I've got a table with a primary key column and a BLOB column, and I created the necessary batch of procedures, modified to work with the BLOB column--I'm not using the ORDSYS types. This column will be storing PDFs and Word documents.
    I can see the table view, but I can't double-click on the object icon and get an object view. Am I barking up the wrong tree, trying to load Word/PDFs via the clipboard? If not, where I can start looking to fix this problem?
    Thanks for info.
    -John

    Hi,
    The interMedia Clipboard is able to recognize multimedia data in object columns only. Furthermore, by default, it recognizes only interMedia objects, like ORDImage, ORDAudio, etc. However, it is possible to use the interMedia Clipboard to handle any object type, providing one 'teaches' it how to handle types it knows nothing about. If you have a table with a simple BLOB column, then you can create a new type to represent the multimedia data in the BLOB column, then create a view on the base table and map the BLOB column into the user-defined type. I've illustrated how to do this in the following example; however, please be aware that this is an undocumented and unsupported feature.
    Hope this helps,
    Simon
    Here's an example of a simple table that holds documents in a BLOB column. If the table is used only to store documents of a single type, then you could skip the MIME type column. If you wanted, you could include a last-modified column and use it to return an appropriate HTTP status if a browser cache contains an up-to-date version.
    SQL> create table mydocs ( docid varchar2(32), doc blob, mimetype varchar2(100) );The object type MYDOCSTYPE created below will be used by the Clipboard to recognize the presence of a multimedia data column it can handle.
    create or replace type mydoctype as object ( doc blob, mimetype varchar2(100) );
    /The MYDOCSVIEW is a view of the base table that uses MYDOCSTYPE to view the document.
    create view mydocsview as
    select d.docid, mydoctype( d.doc, d.mimetype ) mydoc
    from mydocs d;The following 3 PL/SQL procedures are normally generated by the Clipboard Wizard; however, we have to do them by hand because the Clipboard recognizes only the interMedia types.
    The MYDOC_INSERT procedure is used by the Clipboard to insert a new row into the MYDOCS table.
    create or replace procedure mydocs_insert
    ( in_docid in varchar2, out_rowid out varchar2 ) as
    begin
    insert into mydocsview ( docid, mydoc ) values
    ( in_docid, mydoctype ( null, null ) )
    returning rowid into out_rowid;
    end;
    /The MYDOCS_GET and MYDOCS_PUT are the mediaget and mediaput procedures used by the Web Agent to access the document data.
    create or replace procedure mydocs_get
    ( ord_procedure_path in varchar2, ord_content_type out varchar2,
    ord_content_length out number, ord_content_blob out blob ) as
    begin
    select d.mydoc.mimetype, dbms_lob.getlength( d.mydoc.doc ), d.mydoc.doc
    into ord_content_type, ord_content_length, ord_content_blob
    from mydocsview d where d.docid = ord_procedure_path;
    end;
    create or replace procedure mydocs_put
    ( ord_procedure_path in varchar2,
    ord_content_type in varchar2,
    ord_content_blob out blob ) as
    begin
    update mydocsview d set d.mydoc.doc = empty_blob(),
    d.mydoc.mimetype = ord_content_type
    where docid = ord_procedure_path;
    select d.mydoc.doc into ord_content_blob from mydocsview d
    where docid = ord_procedure_path for update;
    end;
    /All the above happens in the user's schema. Now we have to update the Clipboard's metadata in the ORDSYS schema. As before, the Clipboard normally does this, but we have to do it because we're not dealing with an interMedia type.
    First tell the Clipboard about the new MYDOCTYPE object type: its in schema SCOTT, its names is MYDOCTYPE, it can hold ANY media data (contrast with IMAGE, AUDIO or VIDEO that are built-in media types the Clipboard knows how to handle), its stored as a BLOB and the BLOB is stored in the .DOC attribute (don't forget the .) of the MYDOCTYPE object type. Note that case is important here for all schema object names.
    connect ordsys/ordsys
    delete from mw$catalog_by_typ where type_name = 'MYDOCTYPE';
    insert into mw$catalog_by_typ values (
    'SCOTT', 'MYDOCTYPE', 'ANY', 'BLOB', '.DOC' );
    insert into mw$catalog_by_tab values (
    'SCOTT', 'MYDOCSVIEW', 'DOCID', 'MYDOCS_INSERT', NULL );
    insert into mw$catalog_by_col values (
    'SCOTT', 'MYDOCSVIEW', 'MY   DOC', 'MYDOCS_GET', 'MYDOCS_PUT', NULL );
    commit;Once that's done, you should be able to run the Clipboard, insert new rows into the table, upload new documents, and so forth. Remember to select the view, not the base table when you open the schema in the Clipboard.
    null

  • PROBLEM WITH ALT-V WHEN USING CROATIAN KEYBOARD

    Hi,
    When Typing ALT GR+V (@ sign) in Croatian Keyboard, all the text from clipboard is copied into the text box (as it is pressed CTRL+V) plus the @sign.
    There were some bugs filed long back regarding a similar issue for the German keyboard where the customer was using the AltGr key for special characters, same as in our case.
    Below is the list of those bugs:
    (1)     Bug 757614: GERMAN USERS CANNOT USE ALT-GR KEY TO GET SPECIAL CHARACTERS
    (2)     666925
    (3)     767865
    (4)     768658
    I have gone through the descriptions and mail chains mentioned in these bugs, and it seems that the issue was fixed in OJDK.
    Please go through the above mentioned bugs once to get more details.
    It seems that this is not ORMS issue. It seems to be an Oracle Forms or OJDK issue.
    Can someone please advise on this as why is this happening. We are using Oracle Forms 10g.
    Thanks and Regards,
    Ashwini Swaroop Pradhan

    Tom Gewecke wrote:
    w/ all the keyboards and language settings.
    What do you mean by that? The problem being talked about here is an inability to make French accented characters on a German keyboard. What is your problem exactly?
    I've posted here because I guess it may be the same bug.
    After upgrading I wasn't able to do special characters, including some accented vocals, like "ì", very common in italian language.
    Then I've added an english keyboard, removed the italian one and added it again, so the problem with missing accented vocals was solved.
    I still have the same problem with special consonants, like "z" and "c": if I hold my thumb on such letters, I have no options like, say, "ż" (such characters are very important for my field (linguistics) and if Apple won't solve this problem I'll be forced to look elsewhere).

  • Since installing mountain lion i have a problem with mail. when i delete a message close  and open mail the message has come back. please help!

    Since installing Mountain Lion i have a problem with Mail. I delete a number of messages from the same person but keep the newest message in my Inbox. I actually delete them from the Trash. The next time i open Mail the deleted messages are back again. Can anybody please help as this is getting annoying. Thanks in Anticipation.

    Problems such as yours are sometimes caused by files that should belong to you but are locked or have wrong permissions. This procedure will check for such files. It makes no changes and therefore will not, in itself, solve your problem.
    First, empty the Trash.
    Triple-click the line below to select it, then copy the selected text to the Clipboard (command-C):
    find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 -o -acl \) 2> /dev/null | wc -l
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    The output of this command, on a line directly below what you entered, will be a number such as "41." Please post it in a reply.

  • Mail and iPhoto Problems with sending photos.

    Mail and iPhoto Problems with sending photos.
    I have this problem that started a while ago and seems to be getting worse.
    Here are the different scenarios.
    -If I try to share a photo to email within iPhoto, it will insert the image file name in the mail message, but no image icon or opened image. In iPhoto Preferences under General I have chosen to use Email Photos using Mail.
    -If I choose to use iPhoto to send the photo, it will compose the message and the photo is viewable. If I send the message i can view the photo within the email I sent to myself. Nothing happens when I double click on the photo in the Mail message. Nothing happens when i control click on the photo in the mail message. Nothing happens when I try to drag the photo to the desktop from the mail message. When I try to save attachments from the email and choose a place to save it, the save button is grayed out and it cannot be saved. When I check the mail message it says there is an attachemnt but there is no file size listed.
    -If I use the stationary within Mail app I cannot drag a photo into the placeholder, I get a circle with a line through it symbol when I try. It happens if I try to drag a photo from the desktop or from the media browser within Mail app.
    -If I drag the photo to the desktop from iPhoto, I can double click it on the desktop and it will open in Preview.
    -If I then control click on the same photo on the desktop and scroll to share/email, the generic photo icon will be inserted in the mail message. If i double click the photo icon in the mail message  I get a message it can't be opened because it is empty.
    -If I drag that same image to the mail message body the same thing happens.
    -If I send that email to someone they cannot open the image file.
    What I can do:
    - I can drag that same image file on the desktop to my dropbox folder and  it will upload. From there I can go on my iPad and download the photo and send it through email just fine.
    -I can open the same image file on my desktop in Preview, I can copy and paste it into a mail message and the image will be viewable in the mail message by me and by the recipient.
    -I can drag that same image on the desktop to my safari browser window and it will be viewable in the page. i can then copy and paste that image into a mail message and it is viewable in the message.  I can then send that email message to myself and i can control click on the image and get all my options. It also shows as an attachment with the size of the image file in the mail message.
    I can send that message to someone and they can see the photo and open it fine.
    -If I send that same email to me I can see the photo within the mail.  If I then drag that photo to the desktop I cannot use it again to put in an email as the same problem happens again.
    I have tried all scenarios in my user account, another users account and in a guest account. The same happens in all. I am guessing because of this it is not a corrupt preference file, unless all of the preference files are corrupt. The guest user account I added a new email account so it was brand new and still had the problem.
    I am stumped, all and any help is appreciated.

    Another problem that may be related….
    I have Snapz Pro. I used to be able to save the snaps to my desktop or a folder. Now when I take a screenshot and try to save the file to my desktop or a folder on my desktop I get this message  "Files cannot be created in the selected location. You do not have permission to write to the selected location.   Please choose a different location."  I have found that i can only save the file to the clipboard.   I have repaired permissions many times and still I have this problem.

  • Back up problems with Time Machine since I have Mavericks

    Since I upgrade to Mavericks Time Machine is not able to back up my MacBookPro.
    Not only it is slow but it never ends.
    Each time it seems to reach the end of the back up 150 or 200 mb are added to the amount to be saved.
    Without end.
    Before Maevroicks I had Montain Lion and it was fine.
    With my iMac I have no probleme with Mavericks ????

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the word "Starting" (without the quotes) in the String Matching text field. You should now see log messages with the words "Starting * backup," where * represents any of the words "automatic," "manual," or "standard." Note the timestamp of the last such message that corresponds to an abnormal backup. Now
    CLEAR THE WORD "Starting" FROM THE TEXT FIELD
    so that all messages are showning, and scroll back in the log to the time you noted. Select the messages timestamped from then until the end of the backup, or the end of the log if that's not clear. Copy them to the Clipboard by pressing the key combination command-C. Paste (command-V) into a reply to this message.
    If all you see are messages that contain the word "Starting," you didn't clear the text field.
    If there are runs of repeated messages, post only one example of each. Don't post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Some personal information, such as the names of your files, may be included — anonymize before posting.

Maybe you are looking for

  • How can i use a digital camera as webcam?

    the iSight camera *****. I have a 12mp canon digital camera, can i use that in lieu of iSight to use in iChat and Facetime? if so, what's the procedure? i have a macbookpro on snowleopard 10.6.8

  • How to execute a Scenario from Windows CMD prompt

    Please can you let me know how to execute the Scenario from a Windows CMD prompt? I am not sure if it is any different from "ODIStartScen" command that ODI uses to execute the scenario. Appreciate your help. Regards B

  • (de)authorization questions

    I pretty much know the how's of authorization and deauthorization of computers within iTunes and the Music Store. What I don't know is why are we allowed to do the "deauthorize all" only once per year. And how is that year measured? It is a calendar

  • Compatibility CR 9.0 and Adobe Acrobat Professional (atleast 6.x or higher)

    Post Author: pjhanse CA Forum: General We are using Crystal Reports 9.0 with Adobe Acrobat Pro 4.0. To avoid problems, we would like to upgrade the Adobe Acrobat Pro version to atleast 6.x or newer. I have searched and asked around wich version of Ad

  • Autorization for report RPUAUD00

    Hi all, is it possible to create authorization for report RPUAUD00 to work like this: if user start report it should display only changes which he makes. if hr manager start report it should display all changes for all users. Best regards.