Problem with the  text in my oracle report

hi
I am create an oracle 9i report which consists of some text.
While writing the text , i want to type some alaphets as the power of a a number. For example, 1 to the power of 'st' (i.e. first). Can anybody help me out.
Thanks in advance

Hi,
I don't think you'll be able to do it. It's a special effect, like Superscript in MS Work, that you can apply to a part of the text, but Oracle Reports (at least version 9.0.4.0.33 i'm working with) has only 2 of them - Strikeout and Underlying.
Regards,
Andrew Velitchko
BrainBench MVP for Oracle Developer
http://www.brainbench.com

Similar Messages

  • Problem with the text from previous year in current year appraisal (PPR)

    Hi Gurus,
    I have some problem with the text from the PPR of the previous year in the PPR current year.
    The text from the previous year have not the same displaying in the tab "previous year" of  the current year PPR.
    EXAMPLE :
    this is write in the PPR of year 2009 in Individual Targets without Incentives (tab My S-imple) :
    -Aufrechterhaltung der MA motivation, in dieser Zeit der Neuorientierung.
    -G1 Unterstüzung
    -Fachübergreifende Teamarbeit ausbauen
    Gefährdungsbeurteilung weiter führen
    -tragen von PSA einfordern
    -VI Opt.(Intervalle)
    -Azubi und Praktikanten AUsbildung unterstüzen
    and this is what I have in the PPR of 2010 in Individual Targets without Incentives (tab Previous Year's Targets):
    -Aufrechterhaltung der MA motivation, in dieser Zeit der-Aufrechterhaltung der MA motivation, in dieser Zeit der
    -Aufrechterhaltung der MA motivation, in dieser Zeit der
    -Aufrechterhaltung der MA motivation, in dieser Zeit der
    -Aufrechterhaltung der MA motivation, in dieser Zeit der
    -Aufrechterhaltung der MA motivation, in dieser Zeit der
    -Aufrechterhaltung der MA motivation, in dieser Zeit der
    -Aufrechterhaltung der MA motivation, in dieser Zeit der
    there is the error, all the end of the text isn't displayed and the begin of the text is repeated.
    I think that this issue is created at the creation of the PPR.
    If someone have a idea he is welcom.
    thanks and regards

    Hi,
    Please follow the note:425601,
    Go to Tcode: OBA5 change the error messge into warning message. carry out the settlement and roll abck the warning message into the error message after sucessfull settlement.
    Reward points if found useful.
    Thanks!

  • Any problem with the BREAK ON COLUMN on REPORT statement

    Hi All,
    We are using the sql query output to print a summary report in our application.
    We are taking a ref cursor variable and capturing all the data into this. There is a group by
    Clause in the select statement that will populate the ref cursor variable. And there is a BREAK on one of the column.
    While printing the ref cursor variable data after each group data first line there is a gap of 4 lines and then it is printing the next line.
    The format is like this.
    COLA COLB COLC
    abc mno XYZ
    kgh yop
    ksjd djf
    def mno XYZ
    kgh yop
    ksjd djf
    Is there any problem with this format. Please advice.
    Thanks in advance.
    Regards,
    Girija

    This should handle your problem if you are facing the same problem like i'm showing ->
    satyaki>
    satyaki>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Elapsed: 00:00:01.58
    satyaki>
    satyaki>
    satyaki>break on job
    satyaki>
    satyaki>
    satyaki>select *
      2     from emp
      3     order by job;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
          7788 SCOTT                      7566 19-APR-87       3000                    20
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
          7900 JAMES                      7698 03-DEC-81        950                    30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7566 JONES                      7839 02-APR-81       2975                    20
          7782 CLARK                      7839 09-JUN-81       4450                    10
          7839 KING       PRESIDENT            17-NOV-81       7000                    10
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7844 TURNER                     7698 08-SEP-81       1500          0         30
          7654 MARTIN                     7698 28-SEP-81       1250       1400         30
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7777 SOURAV     SLS                  14-SEP-08      45000       3400         10
          9999 SATYAKI                    7698 02-NOV-08      55000       3455         10
    13 rows selected.
    Elapsed: 00:00:00.42
    satyaki>
    satyaki>
    satyaki>clear break
    breaks cleared
    satyaki>
    satyaki>
    satyaki>select *
      2  from emp
      3  order by job;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7782 CLARK      MANAGER         7839 09-JUN-81       4450                    10
          7839 KING       PRESIDENT            17-NOV-81       7000                    10
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7777 SOURAV     SLS                  14-SEP-08      45000       3400         10
          9999 SATYAKI    SLS             7698 02-NOV-08      55000       3455         10
    13 rows selected.
    Elapsed: 00:00:00.21
    satyaki>
    satyaki>
    satyaki>Regards.
    Satyaki De.

  • Find problem with the text search in jdeveloper.

    When i press "ctrl + f" sometimes i am unable to edit the data which is already in the text box.
    Same case with the line number even. When i press "cntrl + g" the text box with line number is uneditable.
    My machine config :
    RHEL 4,
    Jdeveloper version : 10.1.3.0.4.3673

    I've seen this issue too. It appears to be related to top level window focus. Sometimes the modal dialogs for Find and Go to Line number are on top, but without focus. This seems to be some generic Java issue on Linux (I'm using Gnome, unsure about other desktops).
    One workaround for find: instead of using Ctrl+F, try using Ctrl+E instead. This invokes incremental search. A lot of people prefer this to regular find anyway.
    Brian

  • Problems with the alignment in a tabular report

    Hello,
    I've a tabular report with number columns.
    I defined the number-format and set the column-alignment "Right"
    but the value is shown left.
    How can I change this?
    In a normal report the "standard report column" works fine!
    Thanks Ulrike

    The only solution that I can think of (and there may be others) is to add some javascript at the bottom of the page that loops through the fields and sets the alignment.
    Something like:
    <script>
    var rowcount;
    var i;
    if (document.forms[0].f01)
    rowcount = document.forms[0].f01.length;
    if (rowcount > 0)
    for (i = 0; i < rowcount; i++)
    document.forms[0].f01.style.textAlign = "right";
    else
    if (document.forms[0].f01)
    document.forms[0].f01.style.textAlign = "right";
    </script>
    Replace "f01" with the appropriate field number for your column (if you are not sure, run the report, right-click, View Source and look for an instance of the field - you want the "name" attribute).
    Andy

  • Problems with the text graphic and the text itself.

    Hello everybody. I have been making a site in Adobe Muse CC and I've run into some troubles. The textboxes I've made are not like textboxes, in preview mode, but more like a picture. This also makes the text look blurry when you zoom into the page. Is there a way to make the text in the textboxes like a real text and not like a picture. Make the textmoxes so that you can mark the words and letters, just like you can in a normal website.

    I have tried several fonts but it's still blurry and unclear when I preview it in a browser.
    I believe it has something to do with the textboxes.
    Karamelrand | Smith'N'Jones  You can try and look at the page here. The text is like a picture.
    Is that fixable?

  • I have problem with The text size during the last weeks.

    My IPad 2 is a little weird. During the last weeks it seems it works ok, and suddenly text size, icons size grow very big and it takes me ages to get my IPad back to its original size. Is this happening to anyone?

    Short of something that might be going on with the settings, have you tried a reset of the iPad?
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the button.
    In the event that something wonky is going on with your settings you can try Settings>General>Reset>Reset all settings. No data will be lost but all settings will have to be entered again.

  • Problem with the text tool

    when I try to use the text tool asks me this error
    Could not complete your request because something prevented the text engine was initialized
    need urgently, thank you

    Look in windows event viewer and post the results here.
    As a quick fix try deleting the prefs by reading this.
    http://forums.adobe.com/thread/375776?tstart=0

  • Problems with the text/font in email

    My iphone 4S is now, independently, displaying my email content in microscopic font.  I even get some emails where the content "floats" across the screen.  Why is that happening and how do I fix it?

    i found that anti-alias is only good for bigger text
    (12-24px).
    whereas anything below 12 looks best when antialias is turned
    off.
    alias text is best for 8-12px. more crisp, less blurry.
    I suppose text type would play a factor in this, but the
    above, I realized for generic text (arial, geneva, etc.).

  • Problems with date in procedure on Oracle 11g

    Hi gurus,
    I have some problems with the date format on Oracle 11g.
    Let me explain the situation:
    When I am starting a request like
    select to_number(to_char(to_date('01.04.2009','dd.mm.yyyy'), 'yyyy'))
    from sys.dual
    I got as result 2009 as number.
    When I do the same in a procedure of a package like this
    my_year := to_number(to_char(to_date('01.04.2009','dd.mm.yyyy'), 'yyyy'));
    the variable my_year contains the value 9 instead of 2009.
    Can someone explain me what's going wrong?
    I have just tested with changing the environment variable nls_date_format for the session and for the complete database with no success.
    Regards,
    Björn

    Thank you all for your replies so far:
    @Alex: You are right, using your short script in sqlplus gives me also 2009 as result
    So, I am now posting the essential excerpts of the procedure because the whole one is to large:
    function insert_szrl (my_fremd_name varchar, my_elementadresse varchar,
    my_zeitstempel varchar, my_wert float,
    my_status varchar, my_zyklus varchar,
    my_offset integer,
    my_quelle varchar, my_nzm_daten integer) return integer is
    begin
    my_date := to_date (substr (my_zeitstempel, 1, 10), 'dd.mm.yyyy') + my_tageswechsel +1/24;
    if my_zyklus = 'mm' then
    my_zeitstempeldate := add_months(to_date(last_day(to_date(my_date, 'dd.mm.yyyy')), 'dd.mm.yyyy'),-1) +1 + (my_tageswechsel+1/24);
    my_days := to_date(last_day(to_date(my_date, 'dd.mm.yyyy')), 'dd.mm.yyyy') - add_months(to_date(last_day(to_date(my_date, 'dd.mm.yyyy')), 'dd.mm.yyyy'),-1);
    my_year := to_number(to_char(to_date(my_date,'dd.mm.yyyy'), 'yyyy'));
    ptime.umschalttage_tuned (my_year, my_ws, my_sw);
    end if;
    While debugging the complete procedure I see since the start only a date which looks like '01.04.2009 07:00:00'
    Edited by: user10994305 on 19.05.2009 15:58
    Edited by: user10994305 on 19.05.2009 15:58

  • Problem with the progress line in MS Project

    Hi there,
    I have a question about the progress line in MS Project. 
    My boss asked me to see how far we were with the work, so I inserted the column '% Complete' and then the progress line.
    Now my boss has a problem with the layout and I don't know how the fix it. The problem is at line 43 and 44, where the progress line indicates that we are behind on that group of tasks. But is it possible for the progress line to not indicate it on lines
    43 and 44 but only on lines 45 to 50? So my question is if it's possible to make the progress line go down (vertically) over line 43 and 44 instead of jumping to the back? 
    It would be much more simple if I could insert lines 43 ad 44 as text but not as a task, so that it just counts as a title of some tasks but nothing more than that. Is that possible in Project?
    (Lines 45 to 50 are subtasks for line 44, and 44 is a subtask for 43. So line 43 is the main task.)
    Normally there was a picture here but I couldn't upload it because my account is not yet verified... So hopefully you can understand the problem with the text. 
    If anyone could give my some advice or the solution, that would be great!
    Thanks in advance!

    Hi Thunderbal66--
    Basically your activity 43 is late because the sub tasks are also late. Thus MS Project shows the situation by moving the progress line backward. The progress line is automatically displayed based on your project progress, there is no way to manually change
    it unless you update your project.
    I think the question is not there. This is more a matter of project governance and transparency: why not showin that a project is late when it is late and taking the appropriate corrective actions?
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Problem with the hierarchial fields in a Purchase order xml report

    Hi,
    I am having a problem with the hierarchy problem. We are populating attribute 15 of a PO header. some times it can be null. FYI, we are using 11.5.10 instance where oracle supports direct PO template rather than having a rdf file.
    And now in the xml report, if attribute15 of po header is not null then it is fine.
    But if attribute15 is null, then the template is picking from the next available attribute15 that is from the po lines. As the line level group of "LINES" is between the "PO_DATA" (header group), hence the template is checking for next available attribute15.
    Can any one please suggest how to design the template where we can make the template to check only for that tag at the header level group rather than the line level group tag?
    Thank You in advance.
    Regards,
    Srinivas.

    Hi
    Incase you want to transfer attachements from SRM to R/3, then you try implementing the BADI in SRM side. The BADI which will help in this case is
    <b>BBP_CREATE_PO_BACK</b> BADI.
    <b>Please read the standard SAP documentation of this BADI using SE18 Transaction, before making any code changes.</b>
    <u>Few Important SAP OSS notes to refer in this case -></u>
    Note 989184 - Transferred shopping cart with internal attachments
    Note 550071 - FAQ: EBP - Shopping Cart
    Note 916347 - Transfer shopping cart with internal attachments
    Note 1001130 - FAQ - Attachment questions (Buyside)
    <u>Few useful links -></u>
    <b>http://help.sap.com/saphelp_srm50/helpdata/en/49/b32640632cea01e10000000a155106/frameset.htm
    Re: Attachments to backend
    Re: Document Attachments in Shopping Cart
    Re: Attachment in SRM
    Re: SRM Documents and Attachments
    Re: Limit in Attachments of an item in Shopping Cart
    Re: return delivery text from material document is not passed to SUS
    </b>
    Do let me know, incase you face any problems.
    Regards
    - Atul

  • Many problems with the 'Export to Text' (.txt) in CR Xi

    Hi,
    I have listed many problems with the 'Export to Text' (.txt) function of CR Xi.
    These problems are related to this export format only (meaning everything works fine in the Viewer or in the 'Export to PDF')...
    - Multi-columns layout do not export as Multi-column (export only a one column);
    - Numeric values with parenthesis for negative values or with a fix currency sign at the leftmost position are not exported correctly;
    - Fields having a Suppress formula which is "WhilePrintingRecords" do not appears when exported;
    - Fields with 'Suppress double value' checked are not always suppressed when exported to Text.
    - 'Keep Group Together' flag is not working.
    - 'Reset Page Number After' simply does not works when exported to text;
    - 'Keep object together' on TextBox/Section is not working.
    - Whenever a group is ending on the last line of a page, the the following page as the same Group header as the previous group with no records until the page is filled, then the PageBreak and PageHeader is missing but the records of the following group appears.
    I would like to know what is the status of the 'Export to Text' function (is it a deprecated function not supported anymore???).
    If still supported, when will these bugs be fixed???
    Thanks

    Hi Rene
    Export to Text is supported till date. Crystal Reports 2008 also supports this with Keep together working however when I tried with format with multiple columns, it didnot show up in the exported text file.
    Regards
    Sourashree

  • Problems with the Oracle Pre-Load actions in an homogeneous system copy

    Hi,
    I am trying to do a NW04 homogeneous system copy, and I am having troubles with the ABAP copy. (Oracle Pre-Load Actions step)
    I am with the database specific procedure, so I am creating the new system until the sapinst asks me to bring an online-offline backup and the control file, then the sapinst tries to recover the database by himself, but he finds trouble:
    Error: CJS-00084 SQL statement or script failed.<br>DIAGNOSIS: Error message: ORA-01194: file 1 needs more recovery to be consistent Ora-01110: data file 1: 'oracle/XIE...'
    If I try to do the recover manually I have to make the usual:
    RECOVER DATABASE UNTIL CANCEL USING BACKUP CONTROLFILE;
    CANCEL
    ALTER DATABASE OPEN RESETLOGS;
    If I follow the sapinst.log I find that the sapinst tries to recover the database but fails with the above message and:
    ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
    Yes, that's true, if I make it manually I have to open the database with the 'alter database open resetlogs';
    the problem could be fixed modifying the run_control.sql statement that the SAPINST creates at the working directory, but no modification to that statement is possible because the SAPINST deletes and creates the statement IMMEDIATELY before executing it, so what can I do?
    Many thanks
    Mario

    SOLVED
    for your info, the run_control.sql is UNMODIFIABLE, but I could modify the CONTROL.SQL that he calls, so I recovered manually the Database, and the CONTROL.SQL was a simply CONNECT and then OPEN DATABASE, just like that, so I could continue with my installation, another point for us against the damned SAPINST !!!

  • Problems with the Widget "Text Ticker"

    Hello, I have a problem with the widget "Text ticker". I tried to put more then one text ticker on my site, but it doesn't work, when I look in Muse it looks like this:
    and when I look in the preview only the first text ticker works...maybe it is not possible to have more then one text ticker on one site?
    Thank you.

    It seems you are using the same name for all the ticker instances on page.
    You need to have unique names for each of the ticker you want on a single page. Tickers with duplicate names will not work.
    Cheers,
    Vikas

Maybe you are looking for

  • Smb error in 10.4.3 to 10.4.5 - ok in 10.4.0

    I'm trying to use a G5 on a corporate Windows network. When I do a clean install of 10.4.0 on a drive, I can connect to our Active Directory network without changing any settings at all - I just use Go/Connect to Server, enter the path to the share,

  • Small Raw Files

    This is kind of a weird issue. When I import Raw files to Aperture it seems that it re sizes the files tiny and I mean really tiny to to like 120 pixels out of no where. I checked out my camera first to see what my setting were but those were fine an

  • Multiple IFS instances

    I have 2 instances of IFS on 2 different sun boxes connected to a 816 database on a 3rd box. Anybody knows anything about this config ? I get 'ambiguous service name' error on the first box and if I get the 2nd box to work, the first serves a '503 se

  • ITunes 11.1.3 download fails to install for Windows XP

    Currently have iTunes 11.1.2.32 installed on a Windows XP SP3 PC. Control Panel lists version as 11.1.1.?. After downloading 11.1.3 install fails because "older version can't be removed". Uninstall of older version from Control Panel also fails.

  • Deploying Flex 4 application and Channel Disconnected Error

    Hi, After deploying my application I keep having this error when I want to insert into Database. Channel disconnected before an acknowledgement was received The problem is that everything works as a cham localy. Thank's.