Converting Number  into words while Display

Hello Sir,
I am working on Project System.
I am getting Field  MAT_PSPNR(Valuated Sales Order Stock WBS Element) in MSEG Table.
In table the Corresponding field  stored in Numbers while Display its converted into Some other Content  Please Explain Me ?.
REPORT  zdemo LINE-SIZE 600.
tables: mseg.
select-options: so_mblnr for mseg-mblnr.      " Document No
start-of-selection.
select mat_pspnr from mseg into mseg-mat_pspnr    " Valuated Sales Order Stock WBS Element
where mblnr in so_mblnr.
check sy-subrc = 0.
write:/01 mseg-mat_pspnr.
endselect.
Table Stored value  for MAT_PSPNR  = 00000293
Report Display: WSP/RAM/02/03.
Kindly Explain how the Contents has been changed ?.
Regards,
Venkat.

Hi Venkat,
please check  the Domain of the field you are trying to display .
it will have a conversion routine.
for field MAT_PSPNR domain is PS_POSNR
In the domain definition tab you will have a conversion routine .
because of this conversion routine your data is represented in internal format in the table and external format when displayed.
please read  conversion routine documentation.
regards,

Similar Messages

  • Convert numbers into words

    i work on release 11i application and converts some reports to run with xml publisher
    i want to convert a total field that exist in po report to words it seems to convert number into words isthat possible i tried to make this in oracle reports and it run successfully but there is a problem when converting that report to run with xml publisher .
    any help will be approtiated.

    Use ap_amount_utilities_pkg.ap_convert_number
    E.g.
    SQL> select ap_amount_utilities_pkg.ap_convert_number(trunc(12345678)) from dual;
    AP_AMOUNT_UTILITIES_PKG.AP_CONVERT_NUMBER(TRUNC(12345678))
    Twelve million three hundred forty-five thousand six hundred seventy-eight
    Gareth

  • Why can I not convert pdf into word file?

    why can I not convert pdf into word file?

    This is not a feature of Adobe Reader. You'll need either Acrobat or a subscription to one of the web-based services that Adobe offers (like PDF Pack) to do it.

  • Ive just subscribed online but realised I have the wrong service by mistake... I require Convert PDF into Word doc service but selected Adobe send in error, sorry. Can you please switch the service for me? Thanks Anthony Levy

    Ive just subscribed online but realised I have the wrong service by mistake... I require Convert PDF into Word doc service but selected Adobe send in error, sorry. Can you please switch the service for me? Thanks Anthony Levy

    Hi Tony,
    Please refer this KB document : Return, cancel, or exchange an Adobe order
    Please let me know if you need any further assistance.
    Regards,
    Rahul

  • Hi, am trying to convert pdf into word. I have 30 days trial, however, everytime i try to convert it's asking to subscribe, Why is that, what is the purpose of the free trial?

    Hi, am trying to convert pdf into word. I have 30 days trial, however, everytime i try to convert it's asking to subscribe, Why is that, what is the purpose of the free trial?

    Hi oj1,
    Since you mention a free trial, I'm guessing that you have an Acrobat trial (Adobe doesn't offer free trials of the Acrobat.com online services).
    If you do have Acrobat, you can use the Save As command in that application to save directly to Word format.
    Please let us know how it goes.
    Best,
    Sara

  • Converting number in words

    Hi,
    I want to convert number in words and get the output through a query.
    For example :if the value in row is 1311 then I want the query to return it like one thousand three hundreds and eleven.
    Any help is highly appreciated.
    Cheers

    It could be better indeed, scope is larger, but problem with 0 still exists.
    SQL> select to_char(to_date(0,'J'), 'JSP') as converted_form from dual;
    select to_char(to_date(0,'J'), 'JSP') as converted_form from dual
    ERROR at line 1:
    ORA-01854: julian date must be between 1 and 5373484
    SQL> Better to build function as showed by Tom Kyte in the link given earlier.
    Nicolas.

  • Converting files into Word

    Can you please tell me what version of Word PDF converts into Word?

    Hi,
    ExportPDF would convert the PDF to the document compatible with MS Word version 2003 and 2007 onwards.
    You just need to choose the your option from the dropdown, if you are using MS Word 2003 then you need to choose .doc while conversion and if you are on higher version then MS Word 2003 then you need to choose .docx from the dropdown
    ~Pranav

  • How to convert XML into word doc or pdf

    hi all ,
    i ve to create a xml with specified alignment,but while taking print out alignments changing according to IE's alignment.
    So, Plz some one tel me whether any solution is there in xml itself or it have to be convert into word doc or PDF.If so, tell me an idea for how to convert xml file into Word doc or PDF.

    thanx ,i saw about FOP in xml.apache.org site and i learned something abt tat . But i dont know how to download FOP package from apache..
    Actually they gave links to download
    like http://ftp.wayne.edu/apache/xml/fop
    inside tat link they mentioned as parent,Directory,binaries,sources and tar files.From this i dont know how to download?
    Plz can someone tell a solution..

  • When I go into pdf file it only gives me the option to convert into pdf when it's already a pdf. I want to convert it into word and I've purchase this a few months ago now I need help

    I Need help in converting a pdf into word. I've purchased it a few months ago and now for the first time I tried to use word and I can't it only gives me the option to convert it into a pdf when it is already a pdf! Urgent help please

    Not sure what you mean by "tried to use Word". ExportPDF doesn't change what Word can do. Can you explain what you try and what happens in more detail?

  • How can I choose korean language to convert pdf into word?

    I need to translate the document in Hungle.
    To make the speed up,I tried to convert the Pdf document in hungle into word,and realized I can't choose Hungle for OCR.
    I wonder why Hungle and Chinese are not seleced as languages for ExprtPdf ,for  those countries are imortant for both aspects of economy and culture  for Japan.

    It seems that Hangul and Chinese is not available for OCR in ExportPDF; see http://helpx.adobe.com/acrobat-com/kb/using-ocr-exportpdf.html
    You may need to use Acrobat to OCR and convert Korean and Chinese documents.

  • Convert number to words - eg: 1 should come as "first"

    Hi,
    Is there any function module which would convert numbers to words in a particular format.
    for eg: if input is 2, output should be "second".
              if input is twenty, output should be "twentieth".
              and likewise...
    Thanks in advance,
    Vishnu

    Hi,
    Check this program.
    DATA : gv_words TYPE spell.
    DATA : n    TYPE i.
    DATA : BEGIN OF itab OCCURS 0,
            split(100),
           END OF itab.
    PARAMETERS : a TYPE i.
    CALL FUNCTION 'SPELL_AMOUNT'
      EXPORTING
        amount   = a
      IMPORTING
        in_words = gv_words.
    WRITE: gv_words-word.
    SPLIT gv_words-word AT space INTO TABLE itab.
    DESCRIBE TABLE itab LINES n.
    READ TABLE itab INDEX n.
    PERFORM change_num.
    CLEAR: gv_words.
    LOOP AT itab.
      IF sy-tabix EQ 1.
        CONCATENATE gv_words-word itab-split INTO gv_words-word.
      ELSE.
        CONCATENATE gv_words-word itab-split INTO gv_words-word
                                      SEPARATED BY space.
      ENDIF.
    ENDLOOP.
    WRITE: gv_words-word.
    *&      Form  change_num
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM change_num .
      IF itab-split CS 'ONE'.
        REPLACE 'ONE' IN itab-split WITH 'FIRST'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'TWO'.
        REPLACE 'TWO' IN itab-split WITH 'SECOND'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'THREE'.
        REPLACE 'THREE' IN itab-split WITH 'THIRD'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'FOUR'.
        REPLACE 'FOUR' IN itab-split WITH 'FOURTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'FIVE'.
        REPLACE 'FIVE' IN itab-split WITH 'FIFTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'SIX'.
        REPLACE 'SIX' IN itab-split WITH 'SIXTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'SEVEN'.
        REPLACE 'SEVEN' IN itab-split WITH 'SEVENTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'EIGHT'.
        REPLACE 'EIGHT' IN itab-split WITH 'EIGHTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'NINE'.
        REPLACE 'NINE' IN itab-split WITH 'NINTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'TEN'.
        REPLACE 'TEN' IN itab-split WITH 'TENTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'ELEVEN'.
        REPLACE 'ELEVEN' IN itab-split WITH 'ELEVENTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'TWELVE'.
        REPLACE 'TWELVE' IN itab-split WITH 'TWELFTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'TEEN'.
        REPLACE 'TEEN' IN itab-split WITH 'TEENTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'TY'.
        REPLACE 'TY' IN itab-split WITH 'TIETH'.
        MODIFY itab INDEX n.
      ELSE. "IF itab-split CS 'D'.
        CONCATENATE itab-split 'TH' INTO itab-split.
        MODIFY itab INDEX n.
      ENDIF.
    ENDFORM.                    " change_num
    Your requirement is definitley solved with above program
    Regards,
    Bhupal

  • Credit card charged twice and still can't convert pdf into word!

    Hi, It seems my credit card was charged twice for my subscription. However, I'm not able to convert my pdf document into word. When I try and do this it just asks me to subscribe, even though I'm signed in. I tried to cancel one of my subscriptions and ended up in an annoying holding pattern where the available comments said to contact the adobe team, but when I went to the website where this contact was supposedly possible it directed me back to the community.

    Hi florence12,
    I just checked your account and see that both transactions have been canceled already. Please keep an eye on your credit card bill, and if the charges appear there let us know.
    Best,
    Sara

  • Function to convert number to word format.

    Dear Friends,
    Could you please help me with a code that will take 'sum of all values of a column' as input parameter & return its value in word format.
    Number can be negative , it can/can't contain digits after decimal.
    i have two ways but it won't work when my no. becomes negative
    Moreover i want that it should work on both type of data, numbers without decimal & number with decimal.
    that is what i possess:
    1)
    function CF_1FORMULA return char is
    num1 number;
    p_number number;
    type myArray is table of varchar2(255);
    l_str myArray := myArray( '',
    ' thousand ', ' million ',
    ' billion ', ' trillion ',
    ' quadrillion ', ' quintillion ',
    ' sextillion ', ' septillion ',
    ' octillion ', ' nonillion ',
    ' decillion ', ' undecillion ',
    ' duodecillion ' );
    l_num varchar2(50);
    l_return varchar2(4000);
    begin
    num1:=:my_mumber;
         p_number:=num1;
         l_num:=trunc( p_number );
    for i in 1 .. l_str.count
    loop
    exit when l_num is null;
    if ( to_number(substr(l_num, length(l_num)-2, 3)) <> 0 )
    then
    l_return := to_char(
    to_date(
    substr(l_num, length(l_num)-2, 3),
    'J' ),
    'Jsp' ) || l_str(i) || l_return||'Rupees';
    end if;
    l_num := substr( l_num, 1, length(l_num)-3 );
    end loop;
    return l_return;
    end;
    and
    2)
    select to_char(to_date(floor(1234.99),'J'),'Jsp')||' Rupees and '||to_char(to_date((1234.99-(floor(1234.99)))*100,'J'),'Jsp')||' Paise' from dual;
    kindly help me.
    Thanks & Regards
    Vishnu

    Common question.
    But you will have realised that already if you'd bothered to search the forum...
    http://forums.oracle.com/forums/search.jspa?threadID=&q=number+to+word&objID=f75&dateRange=all&userID=&numResults=30

  • Convert number to words

    is there a way in numbers to convert numbers to words,
    for example"2300" to"two thousand and three hundred".

    Here is a spreadsheet I made to doe this:
    for Numbers 2.x:
    https://www.dropbox.com/s/naooc39djpvn2kk/ValueToText.numbers?dl=0
    for Numbers 3.x:
    https://www.dropbox.com/sh/wz5ejppkbd924mu/AADXJLJ3brHqJL9ts4iq_Kn1a?dl=0
    And a command line application with an Applescript:
    https://www.dropbox.com/s/ajlqxwqbaew5e4m/NumWriterWithScript.zip?dl=0
    See this thread for additional information:
    Return text value of a number

  • Converting number into letters ...

    Is there in Oracle ( or in Forms ) a function that allow the conversion from a number (ex. 1523) to
    letters ( One thousand Five hundred twenty three ) ???
    Tx in advance
    Xavier.

    Hi,
    i think the following code will take care ofall cases - i have tried it and am using this.
    FUNCTION CHK_AMT (v_chk_amt IN NUMBER)
    RETURN VARCHAR2 IS chk_amt_word VARCHAR2(32767);
    v_period NUMBER(11,0);
    v_tot_len NUMBER(11,0);
    v_paise NUMBER(11,0);
    v_paise_len NUMBER(11,0);
    v_paise_diff NUMBER(11,0);
    v_Rs NUMBER(11,0);
    v_Rs_len NUMBER(11,0);
    v_ten NUMBER(11,0);
    v_hund NUMBER(11,0);
    v_thous NUMBER(11,0);
    v_hund_thous NUMBER(11,0);
    v_million NUMBER(11,0);
    v_amt_char VARCHAR2(14);
    v_m_word VARCHAR2(35);
    v_ht_word VARCHAR2(35);
    v_t_word VARCHAR2(35);
    v_h_word VARCHAR2(35);
    v_ten_word VARCHAR2(35);
    v_paise_word VARCHAR2(35);
    v_chk_amt_word VARCHAR2(150);
    BEGIN
    -- ****************** CONVERT TO STRING AND LOCATE THE PERIOD *******
    SELECT TO_CHAR(v_chk_amt, '99999999D99') INTO v_amt_char FROM dual;
    v_amt_char := LTRIM(v_amt_char);
    SELECT INSTR(RTRIM(v_amt_char),'.') INTO v_period FROM dual;
    -- ***************************************** DETERMINE PAISES *********
    SELECT LENGTH(v_chk_amt) INTO v_tot_len FROM dual;
    v_paise_len := v_tot_len - v_period;
    IF v_paise_len = 0 THEN
    v_paise := 0;
    ELSIF v_paise_len = 1 THEN
    v_paise := SUBSTR(v_amt_char,v_period + 1, 1)&#0124; &#0124;'0';
    ELSE
    v_paise := SUBSTR(v_amt_char,v_period + 1, 2);
    END IF;
    -- ****************** DETERMINE AMT LENGTH LESS PERIOD AND PAISES *******
    IF v_period = 0 THEN
    v_Rs_len := v_tot_len;
    ELSE
    v_Rs_len := v_period - 1;
    END IF;
    v_Rs:= SUBSTR(v_chk_amt,1,v_Rs_len);
    -- **************************** DETERMINE ONE AND TENTH POSTIONS *********
    IF v_Rs_len > 0 THEN
    IF v_Rs_len = 1 THEN
    v_ten := SUBSTR(v_chk_amt,1,1);
    ELSE
    v_ten := SUBSTR(v_chk_amt,v_Rs_len - 1,2);
    END IF;
    ELSE
    v_ten_word := 'NO ';
    v_ten := 0;
    END IF;
    -- ************************************* DETERMINE HUNDREDTH POSITION *******
    IF v_Rs_len > 2 THEN
    v_hund := SUBSTR(v_chk_amt,v_Rs_len - 2,1);
    ELSE
    v_hund := 0;
    END IF;
    -- ******************** DETERMINE THOUSAND AND TEN THOUSAND POSITIONS ******
    IF v_Rs_len > 3 THEN
    IF v_Rs_len = 4 THEN
    v_thous := SUBSTR(v_chk_amt, 1, 1);
    ELSE
    v_thous := SUBSTR(v_chk_amt,v_Rs_len - 4,2);
    END IF;
    ELSE
    v_thous := 0;
    END IF;
    -- ********************************* DETERMINE HUNDRED-THOUSAND POSITION *****
    IF v_Rs_len > 5 THEN
    v_hund_thous := SUBSTR(v_chk_amt,v_Rs_len - 5,1);
    ELSE
    v_hund_thous := 0;
    END IF;
    -- ************************** DETERMINE MILLION AND TEN MILLION POSITIONS ******
    IF v_Rs_len > 6 THEN
    IF v_Rs_len = 7 THEN
    v_million := SUBSTR(v_chk_amt,v_Rs_len - 6,1);
    ELSE
    v_million := SUBSTR(v_chk_amt,v_Rs_len - 7,2);
    END IF;
    ELSE
    v_million := 0;
    END IF;
    -- ************************************************************ BUILD WORD *******
    IF v_million > 0 THEN
    SELECT CHK_AMT_NAME&#0124; &#0124;' Million '
    INTO v_m_word
    FROM ESC_CHK_AMT
    WHERE chk_amt_nbr = v_million;
    END IF;
    IF v_hund_thous > 0 THEN
    SELECT CHK_AMT_NAME&#0124; &#0124;' Hundred '
    INTO v_ht_word
    FROM ESC_CHK_AMT
    WHERE chk_amt_nbr = v_hund_thous;
    IF v_thous = 0 THEN
    v_t_word := 'Thousand ';
    END IF;
    END IF;
    IF v_thous > 0 THEN
    SELECT CHK_AMT_NAME&#0124; &#0124;' Thousand '
    INTO v_t_word
    FROM ESC_CHK_AMT
    WHERE chk_amt_nbr = v_thous;
    END IF;
    IF v_hund > 0 THEN
    SELECT CHK_AMT_NAME&#0124; &#0124;' Hundred '
    INTO v_h_word
    FROM ESC_CHK_AMT
    WHERE chk_amt_nbr = v_hund;
    END IF;
    IF v_ten > 0 THEN
    SELECT CHK_AMT_NAME
    INTO v_ten_word
    FROM ESC_CHK_AMT
    WHERE chk_amt_nbr = v_ten;
    END IF;
    IF (v_paise = 0) THEN
    v_paise_word := NULL;
    v_chk_amt_word := 'Rs. '&#0124; &#0124;v_m_word&#0124; &#0124;v_ht_word&#0124; &#0124;v_t_word&#0124; &#0124;v_h_word&#0124; &#0124;v_ten_word&#0124; &#0124;' Only.';
    ELSE
    v_paise_word := v_paise&#0124; &#0124;' paise';
    v_chk_amt_word := 'Rs. '&#0124; &#0124;v_m_word&#0124; &#0124;v_ht_word&#0124; &#0124;v_t_word&#0124; &#0124;v_h_word&#0124; &#0124;v_ten_word&#0124; &#0124;
    ' AND '&#0124; &#0124;v_paise_word&#0124; &#0124;' Only.' ;
    END IF;
    RETURN(v_chk_amt_word);
    END;
    /*Create table script*/
    CREATE TABLE ESC_CHK_AMT(
    CHK_AMT_NBR NUMBER(2,0),
    CHK_AMT_NAME VARCHAR2(25));
    /*Insert Script*/
    INSERT INTO ESC_CHK_AMT VALUES (1,'One');
    INSERT INTO ESC_CHK_AMT VALUES (2,'Two');
    INSERT INTO ESC_CHK_AMT VALUES (3,'Three');
    INSERT INTO ESC_CHK_AMT VALUES (4,'Four');
    INSERT INTO ESC_CHK_AMT VALUES (5,'Five');
    INSERT INTO ESC_CHK_AMT VALUES (6,'Six');
    INSERT INTO ESC_CHK_AMT VALUES (7,'Seven');
    INSERT INTO ESC_CHK_AMT VALUES (8,'Eight');
    INSERT INTO ESC_CHK_AMT VALUES (9,'Nine');
    INSERT INTO ESC_CHK_AMT VALUES (10,'Ten');
    INSERT INTO ESC_CHK_AMT VALUES (11,'Eleven');
    INSERT INTO ESC_CHK_AMT VALUES (12,'Twelve');
    INSERT INTO ESC_CHK_AMT VALUES (13,'Thirteen');
    INSERT INTO ESC_CHK_AMT VALUES (14,'Fourteen');
    INSERT INTO ESC_CHK_AMT VALUES (15,'Fifteen');
    INSERT INTO ESC_CHK_AMT VALUES (16,'Sixteen');
    INSERT INTO ESC_CHK_AMT VALUES (17,'Seventeen');
    INSERT INTO ESC_CHK_AMT VALUES (18,'Eighteen');
    INSERT INTO ESC_CHK_AMT VALUES (19,'Nineteen');
    INSERT INTO ESC_CHK_AMT VALUES (20,'Twenty');
    INSERT INTO ESC_CHK_AMT VALUES (21,'Twenty-One');
    INSERT INTO ESC_CHK_AMT VALUES (22,'Twenty-Two');
    INSERT INTO ESC_CHK_AMT VALUES (23,'Twenty-Three');
    INSERT INTO ESC_CHK_AMT VALUES (24,'Twenty-Four');
    INSERT INTO ESC_CHK_AMT VALUES (25,'Twenty-Five');
    INSERT INTO ESC_CHK_AMT VALUES (26,'Twenty-Six');
    INSERT INTO ESC_CHK_AMT VALUES (27,'Twenty-Seven');
    INSERT INTO ESC_CHK_AMT VALUES (28,'Twenty-Eight');
    INSERT INTO ESC_CHK_AMT VALUES (29,'Twenty-Nine');
    INSERT INTO ESC_CHK_AMT VALUES (30,'Thirty');
    INSERT INTO ESC_CHK_AMT VALUES (31,'Thirty-One');
    INSERT INTO ESC_CHK_AMT VALUES (32,'Thirty-Two');
    INSERT INTO ESC_CHK_AMT VALUES (33,'Thirty-Three');
    INSERT INTO ESC_CHK_AMT VALUES (34,'Thirty-Four');
    INSERT INTO ESC_CHK_AMT VALUES (35,'Thirty-Five');
    INSERT INTO ESC_CHK_AMT VALUES (36,'Thirty-Six');
    INSERT INTO ESC_CHK_AMT VALUES (37,'Thirty-Seven');
    INSERT INTO ESC_CHK_AMT VALUES (38,'Thirty-Eight');
    INSERT INTO ESC_CHK_AMT VALUES (39,'Thirty-Nine');
    INSERT INTO ESC_CHK_AMT VALUES (40,'Forty');
    INSERT INTO ESC_CHK_AMT VALUES (41,'Forty-One');
    INSERT INTO ESC_CHK_AMT VALUES (42,'Forty-Two');
    INSERT INTO ESC_CHK_AMT VALUES (43,'Forty-Three');
    INSERT INTO ESC_CHK_AMT VALUES (44,'Forty-Four');
    INSERT INTO ESC_CHK_AMT VALUES (45,'Forty-Five');
    INSERT INTO ESC_CHK_AMT VALUES (46,'Forty-Six');
    INSERT INTO ESC_CHK_AMT VALUES (47,'Forty-Seven');
    INSERT INTO ESC_CHK_AMT VALUES (48,'Forty-Eight');
    INSERT INTO ESC_CHK_AMT VALUES (49,'Forty-Nine');
    INSERT INTO ESC_CHK_AMT VALUES (50,'Fifty');
    INSERT INTO ESC_CHK_AMT VALUES (51,'Fifty-One');
    INSERT INTO ESC_CHK_AMT VALUES (52,'Fifty-Two');
    INSERT INTO ESC_CHK_AMT VALUES (53,'Fifty-Three');
    INSERT INTO ESC_CHK_AMT VALUES (54,'Fifty-Four');
    INSERT INTO ESC_CHK_AMT VALUES (55,'Fifty-Five');
    INSERT INTO ESC_CHK_AMT VALUES (56,'Fifty-Six');
    INSERT INTO ESC_CHK_AMT VALUES (57,'Fifty-Seven');
    INSERT INTO ESC_CHK_AMT VALUES (58,'Fifty-Eight');
    INSERT INTO ESC_CHK_AMT VALUES (59,'Fifty-Nine');
    INSERT INTO ESC_CHK_AMT VALUES (60,'Sixty');
    INSERT INTO ESC_CHK_AMT VALUES (61,'Sixty-One');
    INSERT INTO ESC_CHK_AMT VALUES (62,'Sixty-Two');
    INSERT INTO ESC_CHK_AMT VALUES (63,'Sixty-Three');
    INSERT INTO ESC_CHK_AMT VALUES (64,'Sixty-Four');
    INSERT INTO ESC_CHK_AMT VALUES (65,'Sixty-Five');
    INSERT INTO ESC_CHK_AMT VALUES (66,'Sixty-Six');
    INSERT INTO ESC_CHK_AMT VALUES (67,'Sixty-Seven');
    INSERT INTO ESC_CHK_AMT VALUES (68,'Sixty-Eight');
    INSERT INTO ESC_CHK_AMT VALUES (69,'Sixty-Nine');
    INSERT INTO ESC_CHK_AMT VALUES (70,'Seventy');
    INSERT INTO ESC_CHK_AMT VALUES (71,'Seventy-One');
    INSERT INTO ESC_CHK_AMT VALUES (72,'Seventy-Two');
    INSERT INTO ESC_CHK_AMT VALUES (73,'Seventy-Three');
    INSERT INTO ESC_CHK_AMT VALUES (74,'Seventy-Four');
    INSERT INTO ESC_CHK_AMT VALUES (75,'Seventy-Five');
    INSERT INTO ESC_CHK_AMT VALUES (76,'Seventy-Six');
    INSERT INTO ESC_CHK_AMT VALUES (77,'Seventy-Seven');
    INSERT INTO ESC_CHK_AMT VALUES (78,'Seventy-Eight');
    INSERT INTO ESC_CHK_AMT VALUES (79,'Seventy-Nine');
    INSERT INTO ESC_CHK_AMT VALUES (80,'Eighty');
    INSERT INTO ESC_CHK_AMT VALUES (81,'Eighty-One');
    INSERT INTO ESC_CHK_AMT VALUES (82,'Eighty-Two');
    INSERT INTO ESC_CHK_AMT VALUES (83,'Eighty-Three');
    INSERT INTO ESC_CHK_AMT VALUES (84,'Eighty-Four');
    INSERT INTO ESC_CHK_AMT VALUES (85,'Eighty-Five');
    INSERT INTO ESC_CHK_AMT VALUES (86,'Eighty-Six');
    INSERT INTO ESC_CHK_AMT VALUES (87,'Eighty-Seven');
    INSERT INTO ESC_CHK_AMT VALUES (88,'Eighty-Eight');
    INSERT INTO ESC_CHK_AMT VALUES (89,'Eighty-Nine');
    INSERT INTO ESC_CHK_AMT VALUES (90,'Ninety');
    INSERT INTO ESC_CHK_AMT VALUES (91,'Ninety-One');
    INSERT INTO ESC_CHK_AMT VALUES (92,'Ninety-Two');
    INSERT INTO ESC_CHK_AMT VALUES (93,'Ninety-Three');
    INSERT INTO ESC_CHK_AMT VALUES (94,'Ninety-Four');
    INSERT INTO ESC_CHK_AMT VALUES (95,'Ninety-Five');
    INSERT INTO ESC_CHK_AMT VALUES (96,'Ninety-Six');
    INSERT INTO ESC_CHK_AMT VALUES (97,'Ninety-Seven');
    INSERT INTO ESC_CHK_AMT VALUES (98,'Ninety-Eight');
    INSERT INTO ESC_CHK_AMT VALUES (99,'Ninety-Nine');
    /*Create Index*/
    CREATE INDEX ESC_CHK_AMT_INDEX ON ESC_CHK_AMT(CHK_AMT_NBR);
    DROP PUBLIC SYNONYM "ESC_CHK_AMT";
    CREATE PUBLIC SYNONYM "ESC_CHK_AMT" FOR "ESC_CHK_AMT";
    null

Maybe you are looking for

  • Help!! PROC  program

    Hello REDHAT 8 and Oracle 920 When I make sample proc program the message as follow cc -o tst sample1.o -L/oracle/product/8.1.7/lib/ -lclntsh `cat /oracle/productm sample1.o: In function `main': sample1.o(.text+0x67b): the `gets' function is dangerou

  • Discussion of ideas - passing parameters to a report

    Guys, I call a series of reports from my form and each report takes different parameters, these parameters are entered on the form then when the report is launched they are passed to the report. Rather standard and basic stuff. However can people sug

  • Wise authorizarion to user in easy DMS

    Dear all, Is it possible to giving the folder  wise authorizarion to user in easy DMS ? if yes plz let me know Rgds

  • Why doesn't Wifi Sync work after updating ITUNE?

    Hello, I updated my Itune to 11.1.4.62 version. After updating, WIFI sync doesn't work anymore. I have to connect the cable to my laptop to sync it. Before this upgrade it was working fine. Now, I have Iphone 5. I run Windows 7. I did all the recomme

  • After recent apple update MBP will not connect to wireless internet

    After running recent Security and Airport upgrades my Mac Book Pro (Intel) will not connect to wireless home router supplied by Verizon (GTE) and several public wi-fi's. Cannot get IP but sees networks. My iMac PPC still works fine. Prior to upgrade