Make CLOB field as an textarea item and also provide update option

Hello,
Can anyone please help me out with this issue. I have clob field column in my table and I wanted to make this column as an Textarea item in my form so that the users can update this column item. Can anyone please provide a possible approach for this issue.
thanks,
orton

Hi Orton,
As far as I know it is a limitation of mod_plsql - variable size can't be more then 32K.
I think that you have to split the value of text area in javascript in chunks less then 32K in length and submit them
with AJAX one by one.
Regards,
Lev

Similar Messages

  • I changed my Apple ID, and i forgot the old one, and i created a new one, and when i tried to update my purchased items, and i cannot update my iphoto and imovie and garageBand, even i try to re purchase it, what can i do?

    I changed my Apple ID, and i forgot the old one, and i created a new one, and when i tried to update my purchased items, and i cannot update my iphoto and imovie and garageBand, even i try to re purchase it, what can i do?

    This is the iphone support forum. please ensure you post in the correct location

  • Can you sync your iPod touch with computer 1 for computer 1's iCal items and also sync the same iPod touch with computer 2 for computer 2's music, apps, etc. items?

    I have a MacBook Pro through my college, and I have all my iCal items on that computer, but I have all my music, apps, etc. on a PC desktop that is my personal home computer.  I am wondering if I can sync my iPod touch with my MacBook for the iCal items and also with my PC for the music and such without loosing either of the two when trying to sync with the other computer?

    Have a look Here  >  Managing content manually
    From Here  >  http://www.apple.com/support/iphone/syncing/

  • Since i updated my iphone to ios7, i can no longer download applications and also cannot update my apps. what happened? there is an alert popping and it tells that i should switch to Philippine store.

    since i updated my iphone to ios7, i can no longer download applications and also cannot update my apps. what happened? there is an alert popping and it tells that i should switch to Philippine store.

    Hi, sallymaesmag. 
    Thank you for visiting Apple Support Communities.
    If you are in the Philippines, check to see if the country is changed in the iTunes Store settings on the iOS device.  These steps will show you how to change the preference.
    Change your iTunes Store country
    Sign in to the account for the iTunes Store region you'd like to use. TapSettings > iTunes & App Stores > Apple ID: > View Apple ID > Country/Region.
    Follow the onscreen process to change your region, agree to the terms and conditions for the region if necessary, and then change your billing information.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/HT1311
    Once you make the change attempt to download applications again.
    Jason H.

  • Create additional field in sales order item and copy to purchase order item

    Dear SAP Gurus,
    I am hoping that someone could help me by providing me with how to implement the following 2 requirements in the SD order and in the purchase order.
    1. I am wanting to add a custom field to the SD sales order item copying a value from the vendor customer master.
    2. I then want to add a custom field to the purchase order item and copy the value from my custom field in 1. to this new custom field..
    Can you please advise how I would go about implementing the above requirements?  I am assuming that there are exits to allow me to implement these 2 requirements.
    Many thanks
    Henry

    Hi,
    For the first requirement you can use the USEREXIT_MOVE_FIELD_TO_VBAP in report MV45AFZZ.
    For the second, as I think that you will create a RFQ you can try to use the enhancement MEREQ001.
    Regards,
    Eduardo

  • My phone won't let me make a call, I have it activated and also used the 45 dollar plan and it still tells me to enter a phone number...What can I do to get it to work?

    If someone can please help me I am a new user to this phone and Verizon.  I got to so that I could call my son and mom long distance, but it won't let me make the call.  It is activated and has the 45 dollar plan on it.  I really want it to work and not be a waste of money. 

    I'm sorry you're having troubles making calls, cnasam. From the phone, please try dialing *228 [send], option 1 to program. When completed, restart phone. If this doesn't work, please reach out to PrePay directly at 888-294-6804 and select options 4,6,4 for prompt service.   Thank you, VanessaS_VZW Follow us on Twitter @VZWSupport If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • HTC RYHME screen capture and also facebook share option?????

    Does anyone know if there is a built in feature to capture the screen?  I used to have a blackberry, so I would do facebook A LOT and would like to know [1] how to share pictures or links through the facebook [either the HTC one or the internet explorer one] and [2] how to save images from the Internet.  I used to use screen munch with my blackberry but I can't seem to find it or anything similar through the Android Market...and I'm nervous to download some of their programs because there have been statements that some of them capture your personal information.
    << Content removed to comply with Verizon Community Terms of Service.  Thank you for your cooperation. >>
    Message was edited by: Verizon Moderator

    The phone does have the ability to screen shot! You press the power button as if locking the screen and hit the home button also and it'll pop up screenshot saved to confirm you were successful! As for sharing facebook links, it's been dependent on the website for me, and saving images, hard press on the image and it gives the option to view image, save image, etc. Hope this helps!    

  • After updating to mavericks i have problem downloading apps from store and also in updating the applications

    the download keeps interupted and cancelled after updating to mavericks

    Contact App Store support. There's a link on the right hand side of the App Store Window. They're the only ones who can sort out account issues.

  • ADD ITEMS TO DROPDOWN BOX FROM A TEXT FIELD(USER ENTERS THE ITEM) AND BOUND VALUE ALSO

    I WANT TO ADD ITEMS  THE DROPDOWN BOX FROM THE TEXT FIELD(ITEM NAME) WHERE USER ENTER'S THE ITEM DESCRIPTION
    AND BOUND VALUE ALSO SHOULD BE ADDED TO THE SAME ITEM.
    SAME WAY REMOVE ITEMS FROM DROPDOWN BOX
    PLEASE GIVE SAMPLE FORM OR JAVASCRIPT FOR THE ABOVE SCENARIO.....
    INDEED HELPFUL FOR MY PROJECT PLEASE SEND ATTACHED PDF FORM

    Hi Praveen,
    Your form is not shared so I have not been able to access it.  But I have updated mine.  There are now two approaches, one that follows on from the above method and updates each drop down list in each row.  The second updates a separate dataset that the drop down list is bound to.  This second approach requires the remerge() method which can cause problems if your code has updates some form properties like a borders color as these will be reset, but the code is simplier and you will only have one list to maintain.  The add button click code is;
    var particulars = xfa.datasets.resolveNode("particulars");
    if (particulars === null)
        particulars = xfa.datasets.createNode("dataGroup","particulars");
        xfa.datasets.nodes.append(particulars);    
    var particular = xfa.datasets.createNode("dataValue","particular");
    particular.value = ItemName.rawValue;
    var boundValue = xfa.datasets.createNode("dataValue","id");
    boundValue.value = BoundValue.rawValue;
    particular.nodes.append(boundValue);
    boundValue.contains = "metaData";
    // find sorted position to insert
    for (var i = 0; i < particulars.nodes.length; i++)
        p = particulars.nodes.item(i);
        if (p.value > particular.value)
          particulars.nodes.insert(particular, p);       
                 break;
    // add to end if greater than all existing items
    if (particular.parent === null)
        particulars.nodes.append(particular);
    // clear source fields
    ItemName.rawValue = null;
    BoundValue.rawValue = null;
    // remerge form data to pick up new item
    xfa.form.remerge();
    And the binding looks like;
    I have updated my sample to include both methods, https://workspaces.acrobat.com/?d=OwysfJa-Q3HhPtFlgRb62g
    Regards
    Bruce

  • Reinit/Reload for added/changed fields in PO line item and GL ODS

    Hi all,
    Probably this is usual process in SAP BW.
    I have changed 2Lis_item data source and added few fields in 0Pur_o1 ods.
    In ods there is data from 2006 to till date.
    Now I have to move my changes to Production system. I have to delete and reload compele data again then only I will get values for added fields.
    Similar way I have changed 0fi_gl datasource and added few new fields in GL field.
    What is the best approach I should follow to get all history data with all new values and start delta ?
    thanks

    Ok,
    Just do this:
    You've your GL ODS with data from 2006, 2007 and 2008.
    You've deltas running.
    Before transporting your changes to productive run all the deltas.
    Then transport your changes.
    After that if you want the history to be updated with your changes you should delete your delta and create a new one without any data (delta init without any data). That should mark the flag init from that point.
    This means the next delta will bring any changes created from that new init to front. To load the history you can do full repairs until you have load all your data.
    Diogo.

  • ITunes 10.5 Ratings fields broken in smart playlists and in Get Info - Options tab

    Installed 10.5 on Win XP and just discovered the Ratings fields are broken in both the Smart Playlist properties box and on the Options tab of the "Get Info" window.  By "broken" I mean -- just blank, can't be edited.  I can see and change the star ratings directly in the track list and by the right-click menu, but when I try to make edits the Info popup the field is blank (even if the track already has a rating) and can't be edited.  Same behavior on Smart Playlists, on both new smart playlists as well as smart playlists I created before the upgrade.  See screen shots...

    Well, I guess "never mind"... the problem went away "on its own" - I suppose a reboot fixed it, but who knows.

  • Im trying to make a poster size collage of pictures and also want to put a story in the middle of the poster. I just can't understand how to get multiple pictures and how to arrange them around the poster?

    Im trying to make a postersize picture collage and I don't know how to get multiple pictues arranged. Someone said I can use the layer option. But Im just not getting it. Please help!

    Click File >> Open and select all of your photos
    That will add them to the project bin
    Then select File >> New >> Blank File
    Select background color White (or whatever you prefer) and add your width and height for your final image (set resolution 72 for web usage or 240 to 300 for printing) then click OK
    In the project bin click your first photo and drag it up into the main window on top of your new background.
    Click on the move tool and click in the center of the photo and drag to arrange it where you want on the background - you can hold down the shift key to maintain original proportions whilst dragging the corner handles of the bounding box to get the size you want.
    Do the same with the next photo (drag it up into the main window) and use the move tool to position it. Then continue with each image.
    Finally Click Layer >>Flatten image and save as jpeg. (Save as PSD if you want to preserve the layers for editing again)
    N.B. as you add images they get dropped in the center. So you need to use the move tool to drag them apart. Click in the middle of one and move it around, and then the others until you get them positioned as you want.
    When you click again with the move tool a bounding box appears around the image and you can drag out the corner handles to re-size your photos. Hold down the shift key when dragging the corner handle and that will maintain the proportions of the original.
    Finally click Layer >>Flatten Image and save your collage - you may then want to use the crop tool to cut away any surplus white canvas, and then re-save. Click the T tool to add text.

  • HT4528 My Iphone4 is no longer opening in iTunes.  I have Windows 7.  I uninstalled and re-installed iTunes and also added updates to my iPhone.  What should I do?

    My iPhone used to work in iTunes but quit working.  I checked my USB portal and it works with other devices.  I also uninstalled and re-installed iTunes.  I added updates to my phone and re-booted it.   I am not sure what else to do.  My iPhone also locked in vertical position and no longer goes to horizontal. 

    diesel vdub wrote:
    Maybe it would have been a better idea to confirm that iTunes is supported in Windows 8 before buying a computer with that Operating System.
    There will be a new version of iTunes released this month... no one forced you to upgrade prior to a supported version of iTunes being released.
    Like the fact that you just called most of us stupid there

  • Camera RAW - freezing while editing image and also wont update to new version

    I moved from Mac 10.6.8 computer to a new Mac 10.10 computer. When I did, I transfer of all my files through data migration and it moved photoshop and bridge over for me without having to reinstall. Which was good because I do not have the disc anymore. My Adobe version is CS5. The problem I am having is that when I open large amounts of files within camera RAW (like anything over 15), the camera RAW program freezes. I then have to shut it down and reopen it again. I made sure to try other folders and files and it has happened over 6 times in different locations and different files and different amount of files opening. Any ideas? I noticed that maybe I needed to update my Adobe application because of the computer move, but when I went to the help menu and update, it goes through the entire process of updating all Adobe Applications and fails giving an error message only at the end saying, " There was an error downloading this update. Please quit and try again later."
    HELP!

    "Migrating", transferring or copying applications is not just asking for trouble, it's demanding trouble.
    Always install from scratch, from the original media, CD/DVD or download.

  • The icon of microsoft security essentials disappear and i can't scan or update my computer and also some updates for microsoft security essentials they fail to update

    I have xp system, and the icon of microsoft security essentials disappear and i can't scan or update my computer

    Same also occour in Windows 7, happened with more than
    one
    occasion, so it,s seems not to be related to faliur in installalation or Windows XP. Have
    also
    seen
    it
    on several
    different
    Windows
    7
    clients.
    It is
    common way
    for many, response on problems, that explain the
    errors/problems are not related to
    MS products.
    "Just Reboot
    and reinstall".
    General
    conclusion is, the
    problem
    has
    most likely not root in current
    product,
    but in the second
    circumstance. And there stop the respons, (Please remember to click “Mark as Answer” on the post that helps you)

Maybe you are looking for