Conversion of milloin into Laks(in words) on checks

Hi Experts,
My client wants amount of laks in words on checks. in standard B1 it prints on check in million e.g. 15,12,225( One million five hundred and twelve thousand two hundred twenty-five Indian Rupee). But my client wants it as 15,12,225 ( fifteen laks, twelve thousands and two hundreds twenty five rupee). They want  that it should print automatically on the checks and they should not provide any UDF's for this. so pls tell me how it is possible?
Thanks & Regards,
Pankaj Sharma.

Hi Sharma,
Try this,
->> Create 1 UDF in Header on Outgoing Payments.
->> Create 3 Function in MSSQL Server Management.
->> Create 1 FMS in Query Generator and save as Query Manager then Assign to UDF for Amount in Words.
Create UDF in Header on Outgoing Payments.
->> Choose Tools on Top menu.
->> User - Defined Fields. -> User Manage Fields.
->> Open the User Manage Fields Widnow.
->> Payments. -> Title.
->> Select Title and Click Add button in Bottom on User Manage Fields Window.
->> Create Amount in Words UDF(Code, Discription and Type - Character) and Add the UDF.
Create Function in MSSQL Server Management.
Check this Link, (have 3 Functions in Link).
http://techcreeze.blogspot.com/2008/11/convert-amount-into-words-according-to_15.html
1st Funciton - to Convert one Digit Number to words
2nd Funciton - to convert 2 digit number to words.
3rd Funciton - to convert amt in numbers to words.
->> Open the MSSQL Server Management Window.
->> Choose your Company database and Create NEW Query.
->> Create 3 Function Queries one by one.
->> Create 3 NEW Query Tab and 1st one put the 1st Function then Run the Function. and
2nd New Query tab put the 2nd Function then Run the Function.
3rd New Query tab put the 3rd Function then Run the Function.
Create FMS in Query Generator and Save as Query Manager.
->> Adminstration.
->> Reports. -> Query Generator.
->> Open the Query Generator and put the below FMS query.
SELECT dbo.fNumToWords($[OVPM.CheckSum])
->> Assign the FMS in UDF on Outgoing Payments.
->> Auto Refresh of REMARKS.
Ex.
1. Goto the UDF and Clcik ShiftAltF2.
2. Select the SEARCH BY SAVED QUERY.
3. Assign the FMS Query.
4. Select the AUTO REFRESH WHEN FIELD CHENGES.
5. Select REMARKS.
6. Check the Display Saved Values.
Note: Check Payments should need the Remarks in Comments field because Remarks field is AutoRefresh field.
IF You will not put the Remarks in Comments field. Amount in Words will not Retrieve(Display) in UDF
Regards,
Madhan.

Similar Messages

  • The online conversion of my pdf file to word did not correctly convert the tables and certain other formatting.  I wish to obtain a refund.

    The online conversion of my pdf file to word did not correctly convert the tables and certain other formatting.  I wish to obtain a refund.

    Hi yammyamm,
    I'm sorry that your conversion didn't work out for you. Please contact Adobe Customer Support via phone or chat, and an agent will be able to process that cancellation/refund for you. Here is the contact information: Contact Customer Care
    Best,
    Sara

  • Read Write Data into a MS Word document

    The requirement I am fullfilling directly specifies the need to write data into a Microsoft Word Document and if Necessary, Read Back data from a Microsoft Word Document. The data will be simple text but as time goes on I anticipate the systems engineers may expand the requirement. I want to cross one bridge at a time so I am just concentrating on the text issue. I must do it from within a stand-alone application. Not through a server, not through ASP, not through a browser, just a stand alone application. It appears from my own investigation of the JAVA API that this is not possible. Regrettably, I am only a day or so away from switching to C# or VB to get this job done. My first question is
    1. Can Java Do this?
    2. If not, does Sun Microsystems have any plans to add this capabiliy?
    3. Can we make recommendations to Sun to add this capability to JAVA?

    1. Can Java Do this?Java can do anything but there is no built-in ability to do just that.
    2. If not, does Sun Microsystems have any plans to add
    this capabiliy?
    3. Can we make recommendations to Sun to add this
    capability to JAVA?Very doubtful! MS Office document formats are not completely open to the public - and they are weird! Supporting this capability would probably require an agreement with Microsoft and it would mean you had to change the API for every time Microsoft chooses to change the document formats.
    But there are some open source tools that claim to be rather good at reading and writing MS Office files. Take a look at this one:
    http://jakarta.apache.org/poi/index.html

  • How can I convert a pdf document written in the Cyrillic (Russian) script into a MS Word document in the Cyrillic script?

    I wish to convert a pdf document using a very small font from Cyrillic script into an MS Word document likewise using Cyrillic script. Then I could zoom up the size of the pdf document's script. Is there any way  this can be done?
    Julyan Watts, Hungary

    Why can't you just zoom in Adobe Reader?

  • Direct Conversion of smartform into PDF system has to take spool request ?

    does anybody know:
    Direct Conversion of smartform into PDF, system has to take spool request dynamically..
    i don't mean to use the SE38 calling PRG RSTXPDFT4 to transfer SAP sript into PDF.
    thanks
    SRIDHAR

    --strike Yes this is what I understood.
    In the structure job_output_info of your function you'll find your OTF data :
    st_ssfcrescl-otfdata --
      CALL FUNCTION smartform_fonction_name
            EXPORTING
    *     ARCHIVE_INDEX              =
    *     ARCHIVE_INDEX_TAB          =
    *     ARCHIVE_PARAMETERS         =
          control_parameters         = st_ssfctrlop
    *     MAIL_APPL_OBJ              =
    *     MAIL_RECIPIENT             =
    *     MAIL_SENDER                =
          output_options             = st_ssfcompop
          user_settings              = ' '
        IMPORTING
         document_output_info        = st_ssfcrespd
         job_output_info             = st_ssfcrescl " This is the one which contains OTF data
         job_output_options          = st_ssfcresop
        TABLES
       EXCEPTIONS
         formatting_error           = 1
         internal_error             = 2
         send_error                 = 3
         user_canceled              = 4
         OTHERS                     = 5.
    -- Then you just have to convert, using something like that : --
    * Convert OTF to PDF
      LOOP AT otf_data INTO w_otf.
        CONCATENATE w_otf-tdprintcom w_otf-tdprintpar
        INTO w_pdf.
        APPEND w_pdf TO i_content_txt.
      ENDLOOP.
      CALL FUNCTION 'SX_OBJECT_CONVERT_OTF_PDF'
        EXPORTING
          format_src      = 'OTF'
          format_dst      = 'PDF'
        CHANGING
          transfer_bin    = w_transfer_bin
          content_txt     = i_content_txt
          content_bin     = i_content_bin
          objhead         = i_objhead
          len             = v_len_in
        EXCEPTIONS
          err_conv_failed = 1
          OTHERS          = 2.
      v_size = v_len_in.
      pdf_itab_size = v_size.
      it_pdfout[] = it_pdf[].
    * Create the PDF File
      CLEAR it_pdfdata.
      REFRESH it_pdfdata.
    *  it_pdfdata[] = it_pdfout[].
      LOOP AT it_pdfout.
        MOVE it_pdfout-tline TO it_pdfdata-line.
        APPEND it_pdfdata.
        CLEAR it_pdfdata.
      ENDLOOP.
    -- The smartform creation and the PDF creation are done in the same time...--
    OK, So what do'nt you want to use the RSTXPDFT4 program ?
    Hope this helps,
    Erwan
    Edited by: Erwan LE BRUN on Aug 28, 2008 12:02 PM
    Edited by: Erwan LE BRUN on Aug 28, 2008 12:03 PM

  • Conversion of FG into Scrap

    Dear All,
    Conversion of FG into Scrap.
    one step process (mvt. type 309)
    Accounting entry   
    scrap inventory a/c dr
    gain /loss on scrapping a/c dr.
    To, FG inventory a/c cr.
    two step process
    scrapping through 551 movt type -
    gain/loss on scrapping a/c dr.
    To, FG inventory a/c cr.
    generating scrap 902 movt. type  (customized) -
    scrap inventory a/c dr
    to gain/loss on scrapping cr.
    my question is our client is following two step proces is it correct. moreover gl getting hit is price difference instead of loss on scrapping. what is the correct scenario and which movement type should be involved.
    Regards,
    Divraj

    Hi Divraj,
    We follow the first step and i personally feel that this is the best method of scrapping of Finish Good.
    As the difference between the cost of FG and Scrap is going in Gain and Loss Account. IT IS NOT A PRICE DIFFERENCE.
    Regards,
    Shayam

  • Conversions de fichiers PDF en documents Word

    Bonjour
    Je n'arrive pas a faire  de conversions de fichiers PDF en documents Word
    Merci
    Cordialement
    Mme VERDIER
    Tél 0450472196

    How are you trying to make the PDFs? What products are you using (version numbers important) and OS? What errors are you getting? Without information, it is impossible to help you further.

  • Dropped 3gs into lake for 2 hours.  Found and put in rice for sev. days.  Will come on when connected to power, but not pc.  Goes out after min. or so.  Will it likely work again without service or am I dreaming?

    As mentioned above, I dropped my Iphone 3gs into lake and it took me about two hours to fish it out.  I put it in a jar of rice for over a week.  It will now come on only if I plug it into the electrical oulet.  It will not come on using the usb connection on the pc.  It also cuts out after a short time - usually about a minute or so.  Will this phone likely work correctly again without major service or should I just forget it?  I have aready bought a replacement to use, but I hate to just toss it if it may work again.  Also, is there anything else I can do short of taking it in to the Apple store?  I suspect the cost of service will not be justified.

    You are welcome.  There are always suggestions of things to try, but in the end you just get frustrated and end up taking it in anyway...save yourself the trouble and visit the Apple store genius bar.

  • Every pdf file in my laptop has been converted into an unreadable Word file. Help!

    Every pdf file in my laptop has been converted into an unreadable Word file.
    This happened while I was trying to convert a large pdf file to Word using Adobe export pdf, which I purchased recently. When I try to export a large pdf file, I get a message "An error occurred while trying to access the service."
    The inability to convert a file from pdf to Word is an annoyance after I spent $19.95 for export pdf. But the making of all my pdf files unreadable is a disaster.

    I suspect that isn't connected. Start Adobe Reader, use File > Open for these PDFs. Do they open?  (I suspect it's just double clicking that does it, which isn't the only way or best way to open files).

  • Using Forms OLE builtin to access word spell check

    I am trying to find a way to utilize the Forms OLE built in for using MS Word spell check. We are upgrading our forms from 6 to 10g. In version 6 we were able to use OLE to open word and use it to pass in our string we wanted spell checked.
    Is there a similiar feature in forms 10g?

    Jim,
    the Forms9i demos have a PJC solution that does spell checking (http://download.oracle.com/otn/other/general/forms9iDemos9_0_0_1.zip). The Forms 10g version of the demo is not yet avaiable but will be soon. If time is short, then you can make the 9i sources work in Forms 10g with no extra work required.
    A viewlet demo can be accessed through the following link
    http://otn.oracle.com/sample_code/products/forms/demo/9i/javabeans_pjc_samples/spellcheck/viewlet/pjc_jspell_viewlet.html
    Frank

  • How do get into my iTunes account to check purchases

    How do I get into my iTunes account to check my purchases?

    See "More Like This ..." over here --->
    Many of the answers refer to going there from iTunes on your computer.

  • Programmatic access to the Word Accessibility Checker

    Hi,
    I'm attempting to find a way to launch the Word Accessibility Checker from VBA or .NET code, manipulate which rules it is using and ideally have a collection of all the issues discovered.
    I know the rules can be manipulated via group policy (see https://technet.microsoft.com/en-us/library/ff602182.aspx) but this is not appropriate to our situation.
    Any help or direction will be greatly appreciated.
    thanks, Mark

    Hi Mark,
    Based on the description, you want to launch the Word Accessiblity Checker from code.
    As far as I know, the Word object model doesn't expose this function at present. You can get more detail about it from link below:
    Object model reference (Word 2013 developer reference)
    If you want to the Word object model to expose this function, I suggest that you submit the feedback from link below:
    Submit Feedback - Microsoft Support
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • My PDF -- Word conversion made everything into an "image" and not text

    I recently got the Acrobat exporter in order to work on an assignment, the PDF file was originally a word document (not mine!) with text boxes around an image.  Now, exported back into a word document, I cannot edit the text boxes.
    What do I do?

    I recently got the Acrobat exporter in order to work on an assignment, the PDF file was originally a word document (not mine!) with text boxes around an image.  Now, exported back into a word document, I cannot edit the text boxes.
    What do I do?

  • Exporting a pdf into an editable word doc on iPad

    I need someone to walk me thru the process to export a pdf into a word doc for editing on an iPad.  Please?

    The OCR is very dependent on the quality of the scan. You might try testing with various scanning options on a sample page. Typically 300 dpi is the minimum for OCR, but some folks like 600 dpi. If the page is clean, with no dust or other imperfections and the text is crisp, you should be able to do reasonably well. It is probably best to run the corrections steps after the OCR (looking at suspects) and editing appropriately.
    The conversion to WORD should not be expected to be real clean in terms of retaining format. You need to look to using style sheets in WORD to simplify the format fixes. Then run the spell check and grammer checker (you might end up with a better document than you started with). There is not a lot more you can do with Acrobat.
    You do have the options of ClearScan and Searchable Text. In one version of Acrobat, ClearScan used some strange fonts (not system fonts) that did not convert well to WORD. I was able to get a better result with Searchable Text in that case. I have not played with OCR that much, and so am just giving some comments of things I have run into.

  • Conversion of 89 MB files to word fails continuous, but 22 MB files succeeds. Why?

    I can convert 22 MB pdf files to Word without problems, but conversion of 89 MB pdf-files with same origin (ie NOT scanned) continue failing. The error message is “Conversion failed” when trying by the Web Browser method and “An error occurred when trying to access the service” when converting directly from Adobe Reader.The file size does not exceed Adobes limit 100 MB, so what is the problem and how can it be solved?

    Hi,
    Here is a blog regarding how to fix WMI issue might be useful to you:
    Fixing WMI issues Using Batch Script
    http://social.technet.microsoft.com/wiki/contents/articles/6887.fixing-wmi-issues-using-batch-script.aspx
    In addition, you mentioned Remote Desktop Servers are in a cluster setup, would you tell us how did you create the cluster?
    As far as I know, with RD Connection Broker, we don’t need to create a cluster but just add multiple RD session hosts into one collection, then RD connection Broker would redirect sessions automatically.
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Maybe you are looking for

  • MRB Viewer (Multiple Resolution Bitmap)

    I have some MRB file I need to open, I have no problem opening with windows. Where can I find a way to open it in my mac?

  • Sap smart form printing error

    hi! I am trying to print one smart from through print program. the name of smart form is ztestform. and the name of the function module is /1BCDWB/SF00000099 I am writing following print program. REPORT  ZSMARTFORM. data fname(30). CALL FUNCTION '/1B

  • Can I run CP6 in an old PC?

    Hi! I need to record simulations about some process in softwares that requires a big part of the functionality of the computer. The PC´s are "old" they have WinXP, 4GB RAM, Pentium 2. There are a some things that I would like to know: 1. Can Captivat

  • Webloc File Set to Open in Safari Doesn't

    This is a small problem that seems like it shouldn't exist.  Firefox is my default browser (set as default within Safari preferences).  I also keep current versions of Safari and Chrome on my computer.  I work at a college and, in order to access thi

  • I want to delete all my available.

    So I keep trying to download a few apps and then it automaticaly starts to download 200 songs i alredy have...