Suddenly I am unable to insert characters and symbols.

I frequently need to use foreign language accents. Today I found that Insert would not allow me to access characters and symbols. How can I restore these?

You must compose messages in HTML format in order for the Insert/Character & Symbols command to be available.
See also this add-on: [https://addons.mozilla.org/en-us/thunderbird/addon/abctajpu/ abcTajpu].

Similar Messages

  • Am unable to insert table and graphs into word document in labwindow/CVI? can any one help me ?

    Am unable to insert table and graphs into word document in labwindow/CVI? can any one help me ?

    Are you using the Word Report Generation instrument? You can find it in toolslib\activex\word\wordreport.fp under the CVI directory.
    The instrument comes with a sample project that shows how to include table and graphs in a Word document: see samples\activex\word\wordrpt.cws in the samples foder of your CVI installation.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Unable to insert characters in pages

    I recently upgraded to Lion and have found it impossible to insert characters into documents with Pages'09. When I was running Snow Leopard, I used to be able to open the Character Viewer and select the character or symbol I wanted to use and click the insert button. But now the INSERT BUTTON has been removed and I don't know how to insert characters or symbols using Lion. Can someone help?

    jbasham29 wrote:
    I've done the double click, copy and paste method and it works. But everytime I use that method, after I insert the character/symbol, I also get two lines of code that shows up. Is there any way to fix this?
    When you double-click on the character, it will be inserted into your document wherever the cursor is.
    There is no need to Copy and Paste. In fact if you do a Copy, you will place Information about the character on the Clipboard, not the character itself. See this screen shot of the Control-Click menu for the ℞ symbol:
    The Character Info is:

    PRESCRIPTION TAKE
    Unicode: U+211E, UTF-8: E2 84 9E
    More than you wanted, as you say.
    Jerry

  • Unable to insert date and time when using date datatype

    Hi
    I am hitting a bit of a problem when using the date datatype. When trying to save a row to the table where the field it throws an error ora 01830 and complains about converting the date format picture ends...etc. Now when I do the insert, I use the to_date function with the format of "dd-mon-yyyy hh24:mi:ss". Of course, when I remove the time element, everything is perfect.
    Checking sysdate, I noticed that the time element wasn't be displayed, and I used alter session set nls_date_format to set the date and time I want to save to the table, which worked!
    Then based on advice in a previous thread to permanently fix the problem, I used alter system set nls_date_format ="dd-mon-yyyy hh24:mi:ss" scope=spfile; This showed that it was altered, and I can see the setting in the em. In sqlplus, I shutdown the database, and restarted with startup mount; alter database open; and then selecting sysdate, it still shows the date as dd-mon-yy, and still no time! Checking the em, and looking up the nls_date_format the setting is still shown as "dd-mon-yyyy hh24:mi:ss".
    So, my question is this - what am I doing wrong? Why can't save date and time using date in Oracle 11g?????
    Thanks

    user633278 wrote:
    Hi
    I am hitting a bit of a problem when using the date datatype. When trying to save a row to the table where the field it throws an error ora 01830 and complains about converting the date format picture ends...etc. Now when I do the insert, I use the to_date function with the format of "dd-mon-yyyy hh24:mi:ss". Of course, when I remove the time element, everything is perfect.
    Checking sysdate, I noticed that the time element wasn't be displayed, and I used alter session set nls_date_format to set the date and time I want to save to the table, which worked!
    Then based on advice in a previous thread to permanently fix the problem, I used alter system set nls_date_format ="dd-mon-yyyy hh24:mi:ss" scope=spfile; This showed that it was altered, and I can see the setting in the em. In sqlplus, I shutdown the database, and restarted with startup mount; alter database open; and then selecting sysdate, it still shows the date as dd-mon-yy, and still no time! Checking the em, and looking up the nls_date_format the setting is still shown as "dd-mon-yyyy hh24:mi:ss".
    So, my question is this - what am I doing wrong? Why can't save date and time using date in Oracle 11g?????
    ThanksYou most certainly can save the time. A DATE column, by definition stores date and time. What you describe is a presentation problem, and setting nls_date_format at the system as an init parm is the weakest of all settings as it is overridden by several other locations.
    without seeing the exact sql that produced the error (not just your description of what you think you were doing) it is impossible to say for sure.
    However, I'd suggest you read http://edstevensdba.wordpress.com/2011/04/07/nls_date_format/

  • Unable to insert dates and blobs with java.sql.PreparedStatement

    I got a problem when i try to insert into a table using Prepared
    statement.
    The table definition is
    TABLE USER_ACCOUNTS
    USER_ACCOUNT NUMBER(12),
    START_DATE DATE,
    END_DATE DATE,
    NB_UNSUCC_LOG_AT NUMBER(2),
    USER_ID VARCHAR2(30),
    CREATION_DATE DATE;
    In my java classes if i do the following code everithing's fine:
    connection = pool.getConnection();
    connection.executeUpdate("
    INSERT INTO USER_ACCOUNTS(
    USER_ACCOUNT,
    START_DATE,
    END_DATE,
    NB_UNSUCC_LOG_AT,
    USER_ID,
    CREATION_DATE)
    VALUES(
    123,
    TO_DATE('2001-11-20','YYYY-MM-DD'),
    NULL,
    0,
    'TOTO',
    TO_DATE('2001-11-20','YYYY-MM-DD')
    but when i do the following, it gives me errors and no rows are
    created! what am i doing wrong?
    connection = pool.getConnection();
    pstmt = connection.prepareStatement(
    "INSERT INTO USER_ACCOUNTS(
    USER_ACCOUNT,
    START_DATE,
    END_DATE,
    NB_UNSUCC_LOG_AT,
    USER_ID,
    CREATION_DATE)
    VALUES(?,?,?,?,?,?)");
    int userAccount = 123;
    java.sql.Date creationDate = new Date(123445566);
    java.sql.Date startDate = new Date(123445566);
    java.sql.Date endDate = null;
    int nbUnsuccessfullLogonAttempt = 0;
    String userid ="TOTO";
    pstmt.setInt(1, userAccount);
    pstmt.setDate(2, startDate);
    pstmt.setDate(3, endDate);
    pstmt.setInt(4, nbUnsuccessfullLogonAttempt);
    pstmt.setString(5, userid);
    pstmt.setDate(6, startDate);
    pstmt.executeUpdate();
    ____________ at this point i receive an SQL Exception that said
    invalid delimiter in string
    i also tried with VALUES
    (?,TO_DATE('?', 'YYYY-MM-DD'),?,?,?,TO_DATE('?', 'YYYY-MM-DD'))
    and the result was invalid month in date
    Thanks for your help!
    Julien De Santis

    > org.hibernate.PropertyValueException: not-null property references a null or transient value: BookOpr.Author.BkBk is null while it should not be, according to the mapping:
    <class name="BookOpr.Author" table="author">
        <many-to-one name="Bk" column="bid" class="BookOpr.Book" not-null="true"/>There are 2 solutions:
    1) Don't null the BookOpr.Author.Bk.
    2) Remove not-null="true" or set it to "false".

  • Randomly printed output is garbled with non-human characters and symbols

    When printing from what we believe to be a pdf display, often, but randomly, the printed output is garbled. This may be the second and subsequent pages, only one page, the first one, etc. This happens often, but not exclusively, when printing from a bank generated pdf on their website but also occures on documents opened/created on our machine locally. I will try to attach a sample page using your 'link' symbole above: can't attach a scanned document (pdf) from my system (now why would I have thought this would be the case?.....) Can anyone help me get this document attached to this email?.......Okay! I've jumped through every hoop and there is no way to 'attach' a scanned document from my computer - are you people real or is this a nightmare? Totally unfunctional.
    If anyone (human) gets this please contact me at [email protected] or my cell 480-235-1868, and thank you for trying. I am wasting paper and ink by the dozens of dollars every week on this problem, so any help would be appreciated. bill matney

    For others who might have the same problem. You can solve it by quoting the device name and/or printer name.
    !p """BÆR""" * """\\print\bærum""/q" * 50 *
    This, however, causes the printer name to be '"BÆR"' with the double quotes included in the name. Thus, the job card must contain the unfortunate tripple quotes as well: -z"""BÆR""".
    Vegard

  • Unable to insert the new sales order line using API.

    Hi,
    when i am tring to insert the deleted line with ENTERED Status, i am getting the follwing error msg.
    Yesterday morning i insert the lines, but from yesterday evening onwords i am unable to insert line and i am getting below error msg.
    Item with inventory_item_id=394131 is not defined in Item validation Org
    i written the code like this
    l_step                     varchar2(250);
    l_err_msg               varchar2(1000);
    l_line_tbl                oe_order_pub.Line_Tbl_Type;
    lx_return_status           VARCHAR2(2000);
    lx_msg_count                NUMBER;
    lx_msg_data                VARCHAR2(2000);
    lx_header_rec                oe_order_pub.Header_Rec_Type;
    lx_header_val_rec           oe_order_pub.Header_Val_Rec_Type;
    lx_header_adj_tbl           oe_order_pub.Header_Adj_Tbl_Type;
    lx_header_adj_val_tbl           oe_order_pub.Header_Adj_Val_Tbl_Type;
    lx_header_price_att_tbl      oe_order_pub.Header_Price_Att_Tbl_Type;
    lx_header_adj_att_tbl           oe_order_pub.Header_Adj_Att_Tbl_Type;
    lx_header_adj_assoc_tbl      oe_order_pub.Header_Adj_Assoc_Tbl_Type;
    lx_header_scredit_tbl           oe_order_pub.Header_Scredit_Tbl_Type;
    lx_header_scredit_val_tbl      oe_order_pub.Header_Scredit_Val_Tbl_Type;
    lx_Header_Payment_tbl           oe_order_pub.Header_Payment_Tbl_Type;
    lx_Header_Payment_val_tbl      oe_order_pub.Header_Payment_Val_Tbl_Type;
    lx_line_tbl                oe_order_pub.Line_Tbl_Type;
    lx_line_val_tbl           oe_order_pub.Line_Val_Tbl_Type;
    lx_Line_Adj_tbl           oe_order_pub.Line_Adj_Tbl_Type;
    lx_Line_Adj_val_tbl           oe_order_pub.Line_Adj_Val_Tbl_Type;
    lx_Line_price_Att_tbl           oe_order_pub.Line_Price_Att_Tbl_Type;
    lx_Line_Adj_Att_tbl           oe_order_pub.Line_Adj_Att_Tbl_Type;
    lx_Line_Adj_Assoc_tbl           oe_order_pub.Line_Adj_Assoc_Tbl_Type;
    lx_Line_Scredit_tbl           oe_order_pub.Line_Scredit_Tbl_Type;
    lx_Line_Scredit_val_tbl      oe_order_pub.Line_Scredit_Val_Tbl_Type;
    lx_Line_Payment_tbl           oe_order_pub.Line_Payment_Tbl_Type;
    lx_Line_Payment_val_tbl      oe_order_pub.Line_Payment_Val_Tbl_Type;
    lx_Lot_Serial_tbl           oe_order_pub.Lot_Serial_Tbl_Type;
    lx_Lot_Serial_val_tbl           oe_order_pub.Lot_Serial_Val_Tbl_Type;
    lx_action_request_tbl           oe_order_pub.Request_Tbl_Type;
    v_hold_release_rec OE_HOLDS_PVT.order_tbl_type;
    v_hold_source_rec OE_HOLDS_PVT.Hold_Source_Rec_Type;
    v_err_msg               VARCHAR2(2000);
    v_return_flag VARCHAR2(1);
    v_err_flag               VARCHAR2(1);
    BEGIN     
    FOR c_ins_rec in (SELECT *          
              FROM terom_sales_order_lines_stg          
    LOOP
         IF c_ins_rec.flow_status_code = 'ENTERED' THEN
         -- ASSIGNMENT OF LINE RECORD FOR ENTERED STATUS
         l_line_tbl(1)           := OE_ORDER_PUB.G_MISS_LINE_REC;
         l_line_tbl(1).header_id      := c_ins_rec.header_id;
         l_line_tbl(1).inventory_item_id := c_ins_rec.inventory_item_id;     
         l_line_tbl(1).ordered_quantity := c_ins_rec.ordered_quantity;
         l_line_tbl(1).operation      := OE_GLOBALS.G_OPR_CREATE;      
    ELSE
         -- ASSIGNMENT OF LINE RECORD
         l_line_tbl(1)           := OE_ORDER_PUB.G_MISS_LINE_REC;
         l_line_tbl(1).header_id      := c_ins_rec.header_id;
         l_line_tbl(1).inventory_item_id := c_ins_rec.inventory_item_id;
         l_line_tbl(1).ordered_quantity := c_ins_rec.cancelled_quantity;     
         l_line_tbl(1).operation      := OE_GLOBALS.G_OPR_CREATE;
         END IF;
         -- API CALL
         APPS.OE_ORDER_PUB.PROCESS_ORDER(
                             p_api_version_number      => 1.0,
                             p_init_msg_list           => apps.fnd_api.g_true,
                             p_return_values           => apps.fnd_api.g_false,
                             x_return_status           => lx_return_status,
                             x_msg_count                => lx_msg_count,
                             x_msg_data                => lx_msg_data,
                             p_line_tbl                => l_line_tbl,
                             x_header_rec           => lx_header_rec,
                             x_header_val_rec           => lx_header_val_rec,
                             x_header_adj_tbl           => lx_header_adj_tbl,
                             x_header_adj_val_tbl      => lx_header_adj_val_tbl,
                             x_header_price_att_tbl      => lx_header_price_att_tbl,
                             x_header_adj_att_tbl      => lx_header_adj_att_tbl,
                             x_header_adj_assoc_tbl      => lx_header_adj_assoc_tbl,
                             x_header_scredit_tbl      => lx_header_scredit_tbl,
                             x_header_scredit_val_tbl     => lx_header_scredit_val_tbl,
                             x_line_tbl                => lx_line_tbl,
                             x_line_val_tbl           => lx_line_val_tbl,
                             x_line_adj_tbl           => lx_line_adj_tbl,
                             x_line_adj_val_tbl           => lx_line_adj_val_tbl,
                             x_line_price_att_tbl      => lx_line_price_att_tbl,
                             x_line_adj_att_tbl           => lx_line_adj_att_tbl,
                             x_line_adj_assoc_tbl      => lx_line_adj_assoc_tbl,
                             x_line_scredit_tbl           => lx_line_scredit_tbl,
                             x_line_scredit_val_tbl      => lx_line_scredit_val_tbl,
                             x_lot_serial_tbl           => lx_lot_serial_tbl,
                             x_lot_serial_val_tbl      => lx_lot_serial_val_tbl,
                             x_action_request_tbl      => lx_action_request_tbl
    COMMIT;
    can any one help me why this error mesg is coming, it's very URGENT.
    Thank,
    Shravan Kumar Kota.

    Hi,
    Have you checked this link?
    http://download-west.oracle.com/docs/cd/B25516_08/current/acrobat/115omapi.zip
    it has extensive information on OM APIs
    Regards
    Prashant Pathak

  • Strange characters and symobls print in the middle of a print job. Help.

    In the middle of a print job, whether one page or several, it starts printing strange characters and symbols until the end of the job.  It will do this in the middle of the page, or after printing one line of English and the rest of the page in gibberish.
    It usually does this while printing off bank statements from the internet or a pdf file pulled from the internet.  I don't think it has ever printed any of my documents.
    However, it has done this while printing a bill received as an attachment to an email from a friend.
    The next print job will usually be back to "normal".  But one day, it did this many times during the day.  Frustrating!
    Appreciate any help.

    I had this happen to me with a PDF file once.  I called Support at HP, 
    and they told me it was because I had labeled the PDF as "text" when
    it actually has (technically) "pictures" in it -- the printer didn't know how
    to print those "pictures" (symbols?) as "text," so it came out as gibberish.
    Perhaps there's a teckie here who can tell you more eloquently.  [And
    what to do about it!]
    HTH!

  • Unable to catch the exceptions caused by '|', '"' and '~' symbol in the URL

    I have a VB.net website with .Net framework version 1.1.
    I am able to catch all the exceptions and redirect to Custom error screen.
    However if I enter the invalid characters in URL specifically  '|', '"' and '~' it throws "ArgumentException" with message as "?" and not able to redirect this to Custom error screen.
    All other invalid characters and symbols are being handled properly. Custom error screen is set in WEB.config and it is working for all the exceptions.
    Please help me find a way to catch and redirect this exception to Custom error screen.

    Hello Mr. Monkeyboy,
    One of the security solutions ran a security test by entering the wrong characters in the URL (Few more cases) and there by finding if the site redirects to Custom webpage in case of errors and exceptions or not.
    Our site is redirecting to Custom error page for all the errors and exceptions except when entered '|','"' or '`' in the url.
    Example: If I enter: https://www.somesite.com/NotExists.aspx this get redirected to Custom error screen.
    However If I enter https:////www.somesite.com/NotExi|sts.aspx this goes to Server Error in "/somesite" page.
    Please note, both the URL is invalid, however one redirects to Custom error where another doesn't.
    Thanks for letting me know the lack of clarity in the initial question, hope I made it clear.
    I still don't understand the issue. And you should probably be posting the question in one of the ASP.Net forums which I provided a link to in my original post.
    You say you enter a URL in your website. But you make no mention of how that is done. Therefore even if you post a question in one of the ASP.Net forums you will need to explain what you mean by entering a URL in your Website.
    For example. "We have a website. A user can browse to the website with a WebBrowser. Then in a textbox on the website they can enter a URL (for whatever reason your website would allow a user browsing your website with a webbrowser to want to enter
    some URL for some reason into a textbox at your website) and select a button (to do who knows what) and we need to validate the URL does not contain invalid characters."
    Maybe these links can help or not.
    Validator.Url Method
    PathIsURL function
    Pinvoke.Net - pathisurl (shlwapi)
    Uri.TryCreate Method
    I suppose you could even use Regex to validate a URL based on Regex patterns that you should be able to find on the net for doing so with Visual Basic. But I would suppose you would want to provide whoever is placing invalid URL's on the website with the
    result displaying the invalid URL and which characters within it are invalid maybe.
    I suspect you could even try to validate a URL with a DNS by finding out if it exists or not.
    La vida loca

  • Emails I send ave extra characters and are not legible

    The emails i am sending contain extra characters and symbols are are generally not readable!  Here is an example of what my emial looked like when i replied to a message: the subject should read Super 8 Videocamer
    Subject: Fw: =per 8 Videocamera
    Does this email have the jibberish that is inclu�d in Pauls email?
    =p style="font-size: initial; font-family: Calibri, 'Slate Pro', =ns-serif; color: rgb(31, 73, 125); text-align: initial; background-color:=b(255, 255, 255);">.....
    = st=e="font-size: initial; font-family: Calibri, 'Slate Pro', sans-serif; c=or: rgb(31, 73, 125); text-align: initial; background-color: rgb(255, 255=55);">Sent from my BlackBerry 10 smartphone.
    =ta= e width="100%" style="background-color:white;border-spacing:0px;"> <T=DY>=iv id="_persistentHeader" style="border-style: solid none=ne; border-top-color: rgb(181, 196, 223); border-top-width: 1pt; padding=pt 0in 0in; font-family: Tahoma, 'BB Alpha Sans', 'Slate Pro'; font-size=0pt;">
    so you can imagine what my friends/colleagues are thinking when they get emails from me with all this in it! 
    in case anyone else has this issue......
    this is the BB Z10 phone. Software release 10.0.10.85 OS versiom 10.0.10.672 build 445581
    My carrier is Bell Mobility in Canada and i have email service through Eastlink.
    I have two emails associated with this phone - one with  Hotmail and one from Eastlink. 
    Also when i fwd an email it is sometimes blank!  No fwd message at all - the email is completely blank!
    Does anyone else have this issue?

    Hey Pegster,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    This issue can be resolved by changing the SMTP server settings in your email account.  Go to Settings>Accounts and click on the email account.
    Make sure you use a SMTP server that requires authentication (username and password).  Contact your internet service provider to get an SMTP server.
    Let me know if you have any more questions.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Hi.  My new computer had Acrobat on it.  Suddenly, I was unable to open any PDF's.  and then I tried to update and was forwarded to the Adobe site that said I had to buy a monthly subscription.  I do not have the physical box with a serial number and was

    Hi.  My new computer had Acrobat on it.  Suddenly, I was unable to open any PDF's.  and then I tried to update and was forwarded to the Adobe site that said I had to buy a monthly subscription.  I do not have the physical box with a serial number and was going to buy the one advertised on the website until I discovered it's only for students and teachers, which I am not.  What should I do next as I need to use PDFs on a daily basis.  Thanks!  I would like to be able to download this and pay online.  Possible? I currently have Adobe Acrobat XI Pro.  I have a Windows 7 system.  Please help!

    As long as you know your serial number you can download PSE from here:
    Download Photoshop Elements products | 11, 10
    If you don't know your serial number:
    Find your serial number quickly

  • I have been using Safari for years and have always kept it on "private." Starting two days ago, I suddenly found myself unable to log onto my blog and many other sites that I normally log onto when private is set. Why?

    I have been using Safari for years and have always kept it on "private." Starting two days ago, I suddenly found myself unable to log onto my blog and many other sites that I normally log onto when private is set. This so annoying, I just switched to Firefox. I don't like Firefox nearly as much as I like Safari. What is happening? How do I fix the problem?
    Thank you.

    Might be a corrupted database ...
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.

  • CR4E Unable to Insert Table (or Drag and Drop)

    <p>Please Help. </p><p>Using Release 11.8, I am unable to insert a table from te DBBrowser (aka MyEclipse DataBase Explore) onto an existing Crystal Report.  I can select and drag a table easily, but I&#39;m prevented from dropping it onto the Crystal Report (at the Data Tab).  Also, the DBBrowser does not have an Insert Table option in the context menu.</p><p>Thank you,</p><p>Ron  -- <a href="mailto:[email protected]">[email protected]</a></p><p>&#160;</p><p>&#160;</p><p>&#160;</p><p>&#160;</p><p>&#160;</p>

    Hi Ron
    We havent done any testing of CR4Eclipse with MyEclipse. Could you try and see if everything works OK on a standalone version or if you get the same problem.Â
    Thanks and welcome to Diamond

  • On my imac, All of a sudden I am unable to send original emails with any attachments.  I can attach the file but when I try to send it, it won't send.  Also, if I am emailing back and forth as it gets longer, it no longer transmits

    On my imax, all of a sudden I am unable to send original emails with attachments of any size.  I can attached the file but when I try to transmit, it will not go.
    Also, if I am emailing back and forth, once there gets to be several threads, it will no longer transmit.  Any suggestions. I am using gmail in the apple mail system

    Mike,
    Are any of your other applications going wonky, or is it just Logic?
    I'm afraid I've never heard of this particular problem before, but if it were happening to me the first thing I would do is delete my "com.apple.logic.express.plist" file in Library>Preferences, then repair permissions in Disc Utility, and finally restart my computer.  Then I would launch Logic and see if the problem has been corrected.  It's amazing how much these two steps can accomplish.
    If that doesn't resolve the issue I would launch Logic and go to Preferences>Audio Units Manager to see if all my plug-ins are properly validated.

  • Unable to insert program lines in event sort begin and sort end

    Hello friends,
    I am developing a smartform where in I have to print subtotal for every currencies. So I am unsing the sort criteria option and giving the WAERS in 'Data' tab of the Table . And I select 'Event on Sort Begin' which creates a node in the tree under the table. And I need to clear the total variable in this event so that for every new currency, the total is reset. But I am unable to create a program lines here. When I right click and under  flow logic, only Loop and Command options are available. I am using ECC 6.0 . Kindly help me in achieving the solution.
    Thanks & regards,
    Ratheesh

    Hi Sripaleshwar,
    I tried that.. I am able to create a program lines when I right click on the table. But it always gets placed outside the table node. When I try to drag it also to under the sort begin event node, it says 'Unable to insert program lines at the selected position'. Basically for my logic to work , it has to execute this program lines when the sort begin event occurs.
    regards,
    ratheesh

Maybe you are looking for

  • PO release strategies with Contract

    Hi, implementing a PO release strategy (SAP-MM module)I need to consider the case in which a PO is assigned to a Contract. If so, different release strategies should be selected according to the PO value. Possible cases: S0-strategy 0: Contract does

  • RPD and Catalog Upgrade to 11.1.1.6

    Hi, We have a project to upgrade from OBIEE 10.1.3.4.1 to 11.1.1.6.0. The OBIEE installation is on RHEL 5.8 x86-64 server. I have the following questions reagarding this upgrade. 1) Can I upgrade the RPD and Catalog straight from 10.1.3.4.1 to 11.1.1

  • Does deletion of a document also deletes the entries in audit tables?

    Hi, Can anyone tell me that if a document is deleted from UCM (say it's archived and then deleted) will this also remove all the audit trails and entries in other tables(docmeta,revisions,workflowhistory.. etc) as well? Also if there are custom table

  • BPC 7.5 NW - ICMATCHING

    Hi I am using the main Consolidation application to do ICMatching using (ICDATA AND ICBOOKING). Bothe Datamanager packages are executing.  ICBOOKING check the Payables and Receivable and books the difference. My problem is that I have LEQ accounts as

  • What cause indexes to be corrupted?

    I've an application that need to rebuild the indexes everyday or twice a day. I don't know why I have rebuild them so often. It's a big difference performance after the rebuild. Thanks