How to convert Number to words In PLD

Dear Expert,
I have view all thread related same..but not getting by PLD...
the amount field i want in Indian format that can be placed on cheque/check ?
also i add an external data on that PLD now question is that in filed properties ->content -> procedure name ?
can any one say what that procedure name ? and what u gv ?
also tell me step for PLD
please dont send me that begin script link..tell me other way because as per me it will not work with PLD and if i am wrong then tell me.....
Thanks

hi kevin,
In Procedure name u need to link .dll file,Dll files can be created using C++ Programming,
External data is actually field to print secured images like company logo,Higher official signatures which
can be tampered when u saved it on computer.
Hope it clarifies.
Jeyakanthan

Similar Messages

  • Convertir PDF a WORD como?   How to convert PDF to Word?

    How to convert PDF to Word? please
    como convertir PDF a WORD? por favor

    To convert a PDF file to Word format, you can use Adobe ExportPDF.
    You cannot do this with Workspaces.

  • 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.

  • How to convert number datatype to raw datatype for use in data warehouse?

    I am picking up the work of another grad student who assembled the initial data for a data warehouse, mapped out a dimensional dw and then created then initial fact and dimension tables. I am using oracle enterprise 11gR2. The student was new to oracle and used datatypes of NUMBER (without a length - defaulting to number(38) for dimension keys. The dw has 1 fact table and about 20 dimension tables at this point.
    Before refining the dw further, I have to translate all these dimension tables and convert all columns of Number and Number(n) (where n=1-38) to raw datatype with a length. The goal is to compact the size of the dw database significantly. With only a few exceptions every number column is a dimension key or attribute.
    The entire dw db is now sitting in a datapump dmp file. this has to be imported to the db instance and then somehow converted so all occurrences of a number datatype into raw datatypes. BTW, there are other datatypes present such as varchar2 and date.
    I discovered that datapump cannot convert number to raw in an import or export, so the instance tables once loaded using impdp will be the starting point.
    I found there is a utl_raw package delivered with oracle to facilitate using the raw datatype. This has a numbertoraw function. Never used it and am unsure how to incorporate this in the table conversions. I also hope to use OWB capabilities at some point but I have never used it and only know that it has a lot of analytical capabilities. As a preliminary step I have done partial imports and determined the max length of every number column so I can alter the present schema number columns tp be an apporpriate max length for each column in each table.
    Right now I am not sure what the next step is. Any suggestions for the data conversion steps would be appreciated.

    Hi there,
    The post about "Convert Numbers" might help in your case. You might also interested in "Anydata cast" or transformations.
    Thanks,

  • How to convert pdf  to word with Acrobat Xll pro

    how to convert a pdf to word with acrobat xll pro

    With Acrobat XII? You don't; because there is no XII right now.
    Using Acrobat XI the click path is:
    File :: Save As Other :: Microsoft Word
    Be well...

  • How to convert number to string in java

    hi how can i convert number to string in java
    something like
    public void Discription(Number ownerName){
    String.valueOf(ownerName);Edited by: adf009 on 2013/04/08 7:14 PM

    Yet another way of doing it is: ownerName.toString().
    If you are working in and IDE such as Netbeans or Eclipse, type a period after the object name. Wait a second or so. Eclipse/Netbeans Intellisense will show you a list of functions that object provides that you can choose from. toString() is one of them.

  • Can you have someone tell me how to convert to a Word Doc?

    "Can you please have someone tell me how to convert my download to a Word Doc so I can get it ready for court?"

    Hi there,
    Here you go!
    How to export your PDF file to Word file:
    1.Log into https://exportpdf.acrobat.com/signin.html with your Adobe ID and password
    2. Select "Export from PDF' from right pane
    3. Click "Select Files" button then choose your PDF file for exporting to Word file
    4. Select a format like docx or doc for Word file
    5. Check On for "Recognize scanned text in" if your PDF file contains scanned images
    6. Click "Export" button
    7. Download the Word file by clicking "Download" in the progress bar
    8. Open the Word file in Microsoft Word for editing.
    Or you can export your PDF file in Adobe Reader
    1. Launch Adobe Reader and open your PDF file
    2. Select "Tools" and click "Sign In" link to sign in with your Adobe ID and password
    3. Select "Export PDF"
    4. Click "Convert" button
    5. Click "Download Converted File" link to download the exported Word file to your computer.
    Regards, Stacy

  • 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..

  • 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

  • How to Count number of words in a file....

    Hi Experts,
    I have uploaded the text file, from the application server, like this: 
    call function 'GUI_UPLOAD'
      exporting
        filename = LV_ip_FILENAME
      tables
        data_tab = LT_FILETABLE.
    The text file contains some number character words....  like "sap labs india..... "
    Now, I wanted to count number of words in an internal table  LT_FILETABLE....  can anybody help me?

    Hi,
    Special Characters in Regular Expressions
    The following tables summarize the special characters in regular expressions:
    Escape character
    Special character Meaning
    Escape character for special characters
    Special character for single character strings
    Special character Meaning
    . Placeholder for any single character
    C Placeholder for any single character
    d Placeholder for any single digit
    D Placeholder for any character other than a digit
    l Placeholder for any lower-case letter
    L Placeholder for any character other than a lower-case letter
    s Placeholder for a blank character
    S Placeholder for any character other than a blank character
    u Placeholder for any upper-case letter
    U Placeholder for any character other than an upper-case letter
    w Placeholder for any alphanumeric character including _
    W Placeholder for any non-alphanumeric character except for _
    [ ] Definition of a value set for single characters
    [^ ] Negation of a value set for single characters
    [ - ] Definition of a range in a value set for single characters
    [ [:alnum:] ] Description of all alphanumeric characters in a value set
    [ [:alpha:] ] Description of all letters in a value set
    [ [:blank:] ] Description for blank characters and horizontal tabulators in a value set
    [ [:cntrl:] ] Description of all control characters in a value set
    [ [:digit:] ] Description of all digits in a value set
    [ [:graph:] ] Description of all graphic special characters in a value set
    [ [:lower:] ] Description of all lower-case letters in a value set
    [ [:print:] ] Description of all displayable characters in a value set
    [ [:punct:] ] Description of all punctuation characters in a value set
    [ [:space:] ] Description of all blank characters, tabulators, and carriage feeds in a value set
    [ [:unicode:] ] Description of all Unicode characters in a value set with a code larger than 255
    [ [:upper:] ] Description of all upper-case letters in a value set
    [ [:word:] ] Description of all alphanumeric characters in a value set, including _
    [ [:xdigit:] ] Description of all hexadecimal digits in a value set
    a f
          v Diverse platform-specific control characters
    [..] Reserved for later enhancements
    [==] Reserved for later enhancements
    u2192 More
    Special characters for character string patterns
    Special character Meaning
    Concatenation of n single characters
    {n,m} Concatenation of at least n and a maximum of m single characters
    {n,m}? Reserved for later enhancements
    ? One or no single characters
    Concatenation of any number of single characters including 'no characters'
    *? Reserved for later enhancements
    + Concatenation of any number of single characters excluding 'no characters'
    +? Reserved for later enhancements
    | Linking of two alternative expressions
    ( ) Definition of subgroups with registration
    (?: ) Definition of subgroups without registration
    1, 2, 3 ... Placeholder for the register of subgroups
    Q ... E Definition of a string of literal characters
    (? ... ) Reserved for later enhancements
    for more details please refer the following,
    [http://help.sap.com/abapdocu_70/en/ABENREGEX_SYNTAX_SIGNS.htm]
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/902ce392-dfce-2d10-4ba9-b4f777843182?QuickLink=index&overridelayout=true]
    Thanks,
    Renuka S.

  • 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

  • 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

  • How do convert an emailed word document on my ipad?

    I have an ipad with "pages" I just purchased. How do convert worrd docx file to pdf or epub? The document has been emailed to me.

    I'm not sure if this is a Mac Pages question or an iWork for iPod question.  Do you have the Mac iWork? If so, open the docx file in Pages and export to PDF or epub.  If your question is about iWork for iPad, that discussion area is here:  https://discussions.apple.com/community/ipad/iwork_for_ipad
    Jerry

  • How to count number of words in a string?

    Is it only possible by counting the number of white spaces appearing in the string?

    Of course that also depends upon how accurate you need to be and what the string contains. It is completely possible that there might be a line break which doesn't have a trailing or leading space.
    Like that.
    In that case Flash's representation of the string is likely "...space.\n\nLike that.." In chich case "space.\n\nLike" will be a word.
    Also if you split on space and there are places where there are two spaces in a row you could inflate your number. So somthing that changes newlines (and returns) to spaces, then removes any multiple spaces in a row, and finally does the split/count thing would be more accurate.
    But it all depends upon what you need.

  • How to convert number pairs into .grd file(w/o typing them all in)

    I want to be able to take a set of numbers (like coords from some shape), and use them to create a gradient file.
    Example, I start w/file of:
    x=0  , y=0 
    x=1  , y=4 
    x=2  , y=10
    x=3  , y=18
    x=4  , y=22
    ...50 lines elided...
    x=75 , y=97
    x=80 , y=98
    x=84 , y=99
    x=94 , y=100
    where I would use the x as the x coord(duh), and 'y' as the 'height' of transparency
    (or a brightness value that I'd combine with some desired color value to get an RGB value).
    But in this simple case,
    assume a a simple foregnd->backgrnd color (or any 2 color gradient @ 0 & 100), with only the transparency value needing
    all the numbers ...)
    (would be nice if I could just input a forumula...but.....)  barring that.. trying to figure out the .GRD
    file format is proving to be a bit of a pain.
    I notice lots of map-marker points like FE' (ala SVG FE function, ) values, references to doubles, etc...
    but spending a bunch of time figuring out the file format seems like such a bother if it's already been done...
    any scripts or tools to allow such conversions or am I stuck writing my own perl script...
    (breaking it down w/vim wasn't too difficult subbing in <0> or <0000> for quads, etc...
    going from that could see where numbers were wanted and convert those
    to hex, <xx>;  At some point, given the 'FE' function I suspect I'll have to look up how floating point
    is stored ... sigh.
    See what I mean by a pain to write a script?)
    Ideas/pointers?

       Odd, there was a response here by me, w/no content.   I don't remember posting 'nothing', rather than just delete it,  I thought I'd try to remember what I wrote at the time and see if it stays in the system this time.
    Chris Cox wrote:
    The gradient preset files are a sort of key/value pair system, but not really like XML (and are a heck of a lot faster to read and write than XML).
    The file format is documented in the SDK, and has been for many years.
    It's just a complex enough format that even most developers don't want to mess with it.
       Yes-- could see the key value pairs in the work I did.  that's were I found reference to a key with "FE"" in  it and thought it was related to the SVG function of the same name - as it is the gradient function in SVG, but you said above, that the FE key word in the binaries files had nothing to do with the gradient function that is in SVG by the same name (somehow I don't think you read what I was writing but sorta skimmed it.  My writing tends to alot more information in it than it appears (coincidentally, my posts tend to be longer than the average post), so it may not be that it contains more information than it _appears_, just more than the average post...and, as some may believe (not saying on the forum, but have encountered this on others)
       What is often true in writing about any topic is that, it is increasingly difficult to make my writing more concise while retaining precision -- especially if you are trying to be *clear*.  Too often, I find, that when I toss off quick notes, I'll lots of dumb looks <*huh?*? or responses (not responding to what I said) and I'll spend as much (usually more) clarifying or correcting misunderstandings, OR verifying that they were responding to or answering  was to something I actually 'said', rather than what it appeared (to me) that they were responding to.
       As for the bit about developers touching old code...that's common in almost every project...no one wants to touch something that is currently working, as even though they may be adding improvements or fixing a problem, it is certain they will change the code in a way that it doesn't behave precise as it did before (by definition, else why make changes?), and as a result, they may get complaints from some people who were using that code in some completely unexpected way which now breaks in the new code (even though the documented behavior may be unchanged).
       This is a major problem, since I have NEVER scene documentation that explains all the inter-relations and behaviors of a program, yet often, it is *expected* that people will use those undocumented interrelations to do anything other than the most basic functions.  Note -- by undocumented, I also include things that may be discerned via induction on the various pieces but are not  explicitly spelled out (thus open to 'reinterpretation' at some later point...).
       It seems, almost inherently, that they thorough documentation of code would be NOT just the code, but also design documents and notes -- which would not happen in almost any project (maybe a government funded security program), but would also be impractical as a an easy to use reference (I.e. that would need to be written as well).  As it is, some programs simply come with installation instructions and/or installation support.
       Anyway, hopefully, this answer will get posted and stay (don't know what happened to previous)...(failure in submission or bit-rot).
    Astara

Maybe you are looking for