Any way to Convert CHAR(8)  field to QUAN(8)?

Any way to Convert CHAR(8)  field to QUAN(8)?
Thank-You.

Hi
The MOVE statament automatically converts the data format
DATA: VAR_IN(8) TYPE C,
      VAR_OUT   TYPE P.
MOVE VAR_IN TO VAR_OUT.
It's important your char has only number and the point as separator of decimal part.
Max

Similar Messages

  • Any way to validate the Mandatory field in the XML file

    Hi,
    Is there any way to validate the Mandatory field in the XML file. I created an xml type table xml_validate based on the schema and insert the XML files with statement.
    INSERT INTO xml_validate(warehouse_id,xml_file_name,warehouse_spec)
    Values (agreementid,p_filename,XMLTYPE.createXML(l_clob));
    It is validating the data types, extra tags etc but not validating the missing of the manadatory tag/value.
    Thanks in advance
    Rizly

    Hi Ants,
    Yes, I was not doing the strict validation, after searching the forum i understood that was the reason. So i did this way,
    begin
    for x in (select myColumn from myTable where WAREHOUSE_ID=41) loop
    x.myColumn .schemaValidate();
    end loop;
    end;
    The out put is:
    ORA-31154: invalid XML document
    ORA-19202: Error occurred in XML processing
    LSX-00011: internal error: LsxvPushCandidate array overflow
    ORA-06512: at "SYS.XMLTYPE", line 345
    ORA-06512: at line 3
    My i know more information about this error, especially
    LSX-00011: internal error: LsxvPushCandidate array overflow
    Thanks in advance
    Rizly

  • Any way to convert PDF document in to Tiff format with inbuilt IBR features

    Is there any way to convert PDF document in to Tiff format with inbuilt IBR features?
    In our Webcenter Portal app, we create the PDF document with the content of ADF pages and check it in UCM using RIDC api.
    There will some batch job which will retrieve the documents from UCM and send them to client internal Document management system. The client / batch job will only process TIFF files. So we need a way to convert the PDF into TIFF. We are okie to have both PDF and TIFF stored in UCM.
    When i have done research, i could only see components like PDFexport or TIFFConverter which only converts the other formats into PDF. But i am expecting a reverse conversion. Is it possible ? Thanks

    949767 wrote:
    Is there any way to convert PDF document in to Tiff format with inbuilt IBR features?
    In our Webcenter Portal app, we create the PDF document with the content of ADF pages and check it in UCM using RIDC api.
    There will some batch job which will retrieve the documents from UCM and send them to client internal Document management system. The client / batch job will only process TIFF files. So we need a way to convert the PDF into TIFF. We are okie to have both PDF and TIFF stored in UCM.
    When i have done research, i could only see components like PDFexport or TIFFConverter which only converts the other formats into PDF. But i am expecting a reverse conversion. Is it possible ? ThanksYa actually I got a tool that could [convert pdf | http://www.allbestapp.com/products/pdf-converter.html] to other formats, including jpg and tiff. that may fit your need.
    You could take a shot through the link above.
    Edited by: user13548958 on 2012-8-23 上午10:49
    Edited by: user13548958 on 2012-8-23 上午10:52

  • Any way to convert CLOB to string in DB2?

    I'm trying to provide report names in audit reports.
    Is there any way to convert CLOB (AUDIT_DETAL.DETAIL_TEXT) to string?
    We use BO XI R3 on DB2 v.9.
    Thank you.

    949767 wrote:
    Is there any way to convert PDF document in to Tiff format with inbuilt IBR features?
    In our Webcenter Portal app, we create the PDF document with the content of ADF pages and check it in UCM using RIDC api.
    There will some batch job which will retrieve the documents from UCM and send them to client internal Document management system. The client / batch job will only process TIFF files. So we need a way to convert the PDF into TIFF. We are okie to have both PDF and TIFF stored in UCM.
    When i have done research, i could only see components like PDFexport or TIFFConverter which only converts the other formats into PDF. But i am expecting a reverse conversion. Is it possible ? ThanksYa actually I got a tool that could [convert pdf | http://www.allbestapp.com/products/pdf-converter.html] to other formats, including jpg and tiff. that may fit your need.
    You could take a shot through the link above.
    Edited by: user13548958 on 2012-8-23 上午10:49
    Edited by: user13548958 on 2012-8-23 上午10:52

  • I have an iMac running Mavericks 10.9.4 I also have about 30 Kodack photo CDs that I wish to convert from PCD to Jpeg but Mavericks will not see the files, they are grey.  Is there any way to convert them?

    I have an iMac running Mavericks 10.9.4 I also have about 30 Kodack photo CDs that I wish to convert from PCD to Jpeg but Mavericks will not see the files, they are grey.  Is there any way to convert them or must I do it on another machine?
    Kaibil

    iPhoto used to support the PCD format up to a few years ago. It's extremely frustrating that Apple decided to no longer support this format and now I'm directed to pay nearly $40 for an app that will (GraphicConverter 9). Did Lemke Software make a deal with Apple so we'd have to pay a premium for a very overpriced converter? And, how are decisions like this supposed to encourage the use of iPhoto?
    Apple users already pay a premium to use a Mac. Obstacles like these eventually destroy loyalty to the Apple brand. Just ask Microsoft how their back room deals that exploited their customer base worked out for them.

  • Is there any way to convert the selected rows to text in javascript??

    Hi All,
    I have place some word file to indesign cs 5.5 it is almost in one table, i need to separate the text from the real tables, Is there any way to convert the selected rows to text in javascript??
    If there is no way to make that, any one can help me to make a script to cut the selected rows and place it in privies pointer of the table to make it independent table and after that convert it to text ?

    This insert the rows contents after the table instead of being before:
    for (var r = app.selection.length - 1; r >= 0; r--) {
        for (var t = app.selection[r].rows.length - 1; t >= 0; t--) {
            for (var u = app.selection[r].rows[t].cells.length - 1; u >= 0; u--) {
                for (var c = app.selection[r].rows[t].cells[u].paragraphs.length - 1; c >= 0; c--) {
                    app.selection[r].rows[t].cells[u].paragraphs[0].move (LocationOptions.AFTER, app.selection[r].rows[t].parent.parent.storyOffset.parent.insertionPoints.nextItem(app.se lection[r].rows[t].parent.parent.storyOffset));
                    if (c != 0)
                        app.selection[r].rows[t].parent.parent.storyOffset.parent.insertionPoints.nextItem(app.se lection[r].rows[t].parent.parent.storyOffset).contents += "\r";
                if (u != 0) {
                    app.selection[r].rows[t].parent.parent.storyOffset.parent.insertionPoints.nextItem(app.se lection[r].rows[t].parent.parent.storyOffset).contents += "\t";
                else {
                    app.selection[r].rows[t].parent.parent.storyOffset.parent.insertionPoints.nextItem(app.se lection[r].rows[t].parent.parent.storyOffset).contents += "\r";
    for (var r = 0; r < app.selection.length; r++) {
        for (var t = app.selection[r].rows.length - 1; t >= 0; t--) {
            app.selection[r].rows[t].remove ();

  • Is there any way to convert the ImportObject into an image file ?

    I have converted a FM document into MIF file format. FM has a grapic imported by copying into the document. In the MIF file I can see the image like the following,
    <ImportObject
      <Unique 1001019>
      <Pen 15>
      <Fill 7>
      <PenWidth  1.0 pt>
    =TIFF
    &%v
    &II*\x00080000001000FE000400010000000000000000010300010000006009000001010300010000…..
    Is there any way to convert the ImportObject inside the mif file into an image file ?

    Error 7103,
    Regarding Note A and Note B... The Downsample dropdowns list three variations of Downsampling TO, each corresponding to a different downsampling method. When you select one of the Downsampling TO options, then the pixels per inch box allow you to specify the dpi of the downsampled image, the one after the downsampling.
    When you select Off, which means do NOT downsample, then the pixels per inch box is meaningless. Maybe it would be a nice interface feature to disable it, but that is another issue. In any event, OFF ignores any value in pixels per inch.
    Whenever you import an image into your publishing program (FrameMaker, InDesign, or whatever) and scale it, one can think of the scaled image as having a physical dpi, the number of pixels per physical inch on the "paper." When you specify downsampling in Distiller, the number you specify is most likely less than the physical dpi of the image in the document. It is probably meaningless to specify a number that is larger. I am guessing (and this is a guess) that Distiller does not UPsample images. I have never tested it.
    I use 1200 for image recovery.
    I assume you are talking about recoverying an image embedded in (copied into) the publishing document. I believe it is sufficient simply to turn downsampling off to create a PDF with the image at the resolution as embedded in the document.
    No, one of the settings is to Determine Automatically, which uses the resolution of the image IN the PDF.
    Where is that found?
    It is NOT in Distiller. It is in Acrobat Professional. (It may or may not be in Acrobat Standard or Acrobat Reader; I do not have them, so do not know.)
    The original poster wanted to recover an image copied into a Frame document file. My method is to create a PDF using a Distiller joboption with ALL downsampling and ALL compression OFF. Presumably the image is put into the PDF with all the pixels it has in the Frame file.
    THEN in Acrobat PROFESSIONAL, export the image with the setting Determine Automatically. I am presuming (never tested it) this exports ALL the pixels that the image has in the PDF file.
    Van

  • I have the iphone 4s and i received a video but its in slow motion now is there any way to convert the slow motion to regular speed with my 4s

    i have the iphone 4s and i received a video but its in slow motion now is there any way to convert the slow motion to regular speed with my 4s

    Only your service provider can unlock the phone. Check with the provided.

  • Is there any way to convert to MPEG1 with any adobe product?

    Is there any way to convert to MPEG1 with any adobe product?

    This forum is actually about the Cloud, not about using individual programs
    Once your program downloads and installs with no errors, you need the program forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll
    Since you have all current products, you might check the forums for Media Encoder or Premiere Pro
    http://forums.adobe.com/community/ame
    http://forums.adobe.com/community/premiere

  • Is there any way to convert video files and keep my project in Final Cut Pro 7?

    I am currently editing a project, and have been having multiple issues with freezing while editing. Upon doing some quick research, I learned it is bcause my clips are in the h.264 format, which is not a good editing codec. Is there any way to change the codec of the videos and keep the project I have?

    You might need to relink the timeline to the new media. Just take the H.264 files offline, and reconnect to the new media. If you media managed the sequence, it'd relink. But then you are only converting the files used in the sequence, not all your media.

  • Is there any way to convert psd to html through dreamweaver

    I am very new in websites and i want to know if is there any way to create themes for wordpres or convert psd to html with adobe dreamweaver?
    i have this website but i would like to create a new one.
    lajme

    With all the folks using mobile devices on the web now, the web trend has shifted significantly from heavy use of graphics to the power of CSS3 rgba, linear-gradients, border-radius, box- / text-shadows, transitions,  and SVG graphics.  
    CSS3 Generator
    http://css3generator.com/
    Ultimate CSS Gradient Generator
    http://www.colorzilla.com/gradient-editor/
    The upshot to all this is faster page loads with less bandwidth.  Of course, you must build to your target audience.  If that includes older, inferior browsers like IE8, then images might be a better choice for you.
    PSD to WordPress?  I'm not aware of any software that can do this for you.  It requires good coding skills and experience with WordPress Theme Development.
    http://codex.wordpress.org/Theme_Development
    Nancy O.

  • Is there any way to convert 27 cinema to dvi?

    is there any way to do this? driving me nuts trying to google a way. have a non thunderbolt 27 in (looks like the thunderbolt one)

    So just to be clear that the kanexlive thing works. I have a PC with dual DVI and mini HDMI and I need to get a Cinema display 27" to work with it. This thing will work for me? I have just bought a 27" thunderbolt and a 27" cinema display and neither is working, im a bit hesitant to buy more stuff that doesnt work.
    I must say apple really fckd up with this. Have displayport and dont even sell a converter. So much work to find a way to make it work and now i have to spend another $150 for it after spending twice as much for the apple screens as other brands Last ******* time I buy apple stuff and I have 1 iphone (second one), 2 macbook pro, 1 cinema display 30", 1 thunder bolt 27" (this one im getting rid of though), cinema display 27"  and an ipad. Hope you are happy, Apple.

  • Is there any way to include excluding one field

    hi all,
    is there any way to include a structure or type in another structure or type by excluding one field?
    regards
    hyma

    I think you are trying to include 2 structures but it is giving error that some fields are common
    you can overcome that like this , these are the 2 additions
    INCLUDE STRUCTURE ZTAB AS name1.
    INCLUDE STRUCTURE ZTAB AS name1 RENAMING WITH SUFFIX name2
    for more info check the help for INCLUDE STRUCTURE

  • Mid-2010 Mac Mini: Any way to convert Firewire connection?

    My USB ports are crowded but I have no use for the Firewire port.
    Is there any way to repurpose the Firewire connection? Adapters, cables, connectors, cards?
    It would be handy if it could be converted into a USB port.

    They are different specifications with different features & requirements.
    See this for a discussion on a similar topic…
    http://superuser.com/questions/306437/converting-firewire-to-usb-3-is-it-theoret ically-possible
    I don't believe that they can be converted.
    Get a USB hub and/ or consider getting a Firewire case to install your disks into. Firewire can be 'daisy chained' so a single port can have many devices attached to it.

  • Is there any way of converting a jpeg image into a vector in Fireworks? Deity Babbage, where be thee?

    I am hoping for a quick way of converting images (jpeg etc) into a vector.
    Is this possible?
    Thanks
    Eddie

    Try this:
    http://vectormagic.com/home
    It won't work with really complex images or photos, but if you have something like a logo, it can work well. You'll need to edit the vectors it generates to smooth out some bumps and incorrect nodes, but editing a vector is much easier than drawing the whole thing from scratch.
    Hope this helps!

Maybe you are looking for

  • Apple TV no longer (1) connects to network, (2) appears in iTunes

    Never had a problem until two days ago. Suddenly, my Apple TV: (1) cannot connect to any of the wireless networks in my building. Each gives a different error: "cannot host any more devices (-14)" (which is a crock), and also errors -7, -6, and 0. (2

  • Problem in saving project frm labview 8.5 to 8.2

    i m facing problem while saving the project frm 8.5 to 8.2 while doing this i recieve message of following Vis missing 1 Teststand-ExecuteMenu Command.vi 2.Teststand-Insert Command in Menu(Execution View Manager.Vi 3.Teststand-Insertcommand in Menu (

  • Copying Contacts

    I apologize in advance for the length of this post, but I can find no other way to describe my issue. I hope it is understandable. I have been trying to copy my contacts from either my iPhone 4S or MBP to the Snow Leopard partition on my Mac Pro. I h

  • Active transactional datasources not listed in business content collection

    Dear experts, for SRM bidding engine i have activated the extractors in SRM through transaction RSA5 and put them on a transport. Replicated them in BW and their they are appearing correctly, activated them and provided infopackages. Now when i want

  • Incompatibility between Apps, case open 331650255

    Hi there i bough a brand new ipad 3 for my work and i am having the worse experience ever! i am a Apple products maniac...but there i am disappointed after less that 30 days having it, i started to experience some issue with my ipad the screen starte