I can not put the data of a field(LONG RAW) consulted into a item of a data block

I want to query a field that is LONG RAW(it's a image) and put the data into a item of a data block (in Forms Builder), when i write ":BLOCK.FOTO:=vfoto" i recieve this errors: "bad bind variable ....". How can i put the data of field of my DB and put the data in a item of a data block(in Forms Builder)?.
I can store a image in a table of my DB, but i want to query a image stored in my DB and put it into anothers table, all this on FORMS BUILDER.

You have to base the image item on a base table and use EXECUTE_QUERY on that block. You can't do a direct select in PL/SQL into the item

Similar Messages

  • Can I put the 2Gb RAM (X2) from my MacBook Pro into my MacBook 5,1? The intel is different (2Ghz not 2.3) and the speed is 1067 not 1333. But they are both DDR3.

    Can I put the 2Gb RAM (X2) from my MacBook Pro into my MacBook? The intel is different (2Ghz not 2.3) and the speed is 2000 not 1333. But they are both DDR3.
    I have just upgraded the Pro to 16Gb and the MacBook is SO slow. Just wondering if I could use the old RAM.

    Full specification of MB5.1 RAM;
    204-pin PC3-8500 (1066 MHz) DDR3 SO-DIMM, non-ECC (non parity), unbuffered.
    MBP8.1, 8.2 or 8.3;
    204-pin PC3-10600 (1333 MHz) DDR3 SO-DIMM, non-ECC (non parity), unbuffered.
    PC3 is the same as DDR3. the number is peak transfer rate (approximated).
    Further reading suggests your swap may work, but it's not guaranteed. If you get 3 beeps on start up (or the sleep light flashing in bursts of 3), first check it's correctly seated, but be prepared to swap them back.
    If you encounter any instability or kernel panics, change them back.

  • In the restrictions you can not put the call to voicemail?

    with the next update, in the restrictions you can not put the call to voicemail?

    so I have to delete the message?

  • I can not put the updated IOS 7 because my ipod says my ipod is already updated, but it is not.

    I can not put the updated IOS 7 because my ipod says my ipod is already updated, but it is not.

    WHAT GENERATION IS YOUR IPOD? IF IT IS THE FOURTH GENERATION U WONT BE ABLE TO BECAUSE IOS7 IS ONLY AVAILABLE FOR IPOD TOUCH 5TH GENERATION.

  • HT5312 what if i can not remember the security questions and no longer have access to the rescue email address?

    Hi
    I can not remember my security questions and no longer have access to the email account that i used for my rescue email.
    I have a new ipad and can not buy anything on the app store until i can resolve this.

    On your computer or safari on your iOS device navigate to:
              For Canada - https://appleid.apple.com/ca.
              For United States - https://appleid.apple.com/us/.
    Click the "Manage your Apple ID" button, and sign in to your iCloud account.  Once in, on the left side select "Password and Security", and this will populate our options on the right side.  You should see an option to reset your security questions. 
    Also see this article - http://support.apple.com/kb/HT5312. 
    If for any reason you can not reset these security questions, or get an error, then you may need to contact Apple directly at 1 800 692 7753.  Explain the issue, and they can get your to a "Account Security" agent, who will be able to verify your identity, and assist in resetting the security questions.

  • I have an ipod classic and I can not put the muisc on my ipod classic from an external hard drive

    I have a PC, and all my music is on the external hard drive.  My ipod will not sync.  At the present time I have nothing on my ipod classic.  I want to put the music on my ipod and keep the music on the external hard drive.  When I open itunes I see all my music, and I can play the music. The music will not synch with my ipod.    Any suggestions?  Thanks for the help.

    Have you checked to makes sure that the Sync Music option has been selected?
    Connect the iPod to your iTunes and look on the Device/Music pane:

  • Can I put the hard drive from my Lacie External HD into my 1.25 G4?

    I have a 1.25 GHZ G4 and would like to increase it's internal storage. If I can I would like to put my Lacie External HD into my machine (120 GB) and then purchase a new larger HD to place in the Lacie box. I'm not sure if this is possible? What do I need to check when looking for a new HD for my machine? Any help would be appreciated.

    Assuming that the hard drive in your external case is a 3.5 inch unit, it will work just fine. The only thing you have to do is make sure that your jumpers are set properly (master on your OS drive, slave on your secondary drive). There is a possibility that you will have to purchase a different hard drive cable, unless your machine is already setup with a dual cable & the stack bracket (you also have to make sure that the 'master' drive is plugged into the end of the cable & the 'slave' drive is plugged into the middle of the cable). I have never had a problem putting a larger hard drive into an external case (all of mine have been firewire). I hope this helps.

  • Adding Email Queue Item to Queue from Contact - How can i put the Contact in From Field?

    Hi Guys,
    A contact completes our webform on our website. The comments box text on the webform goes into a hidden comments box on the contact form which in turn triggers a workflow to create an email message and queue item which adds the email message to a queue for
    a response from one of the sales team. I am unable to populate the 'From' field on the email message with the Regarding Contact or Contact details in order for me to be able to just hit reply to answer the query.
    Any ideas on how i can acheive this?
    Thanks
    Dave
    David Kelly

    Hi  David using Custom Workflow you can achieve this . Below is the sample code.
    protected override void Execute(CodeActivityContext executionContext)
    //Create the tracing service
    try
    //Create the context
    IExecutionContext context = executionContext.GetExtension<IExecutionContext>();
    IOrganizationServiceFactory serviceFactory = executionContext.GetExtension<IOrganizationServiceFactory>();
    IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);
    ITracingService tracer = executionContext.GetExtension<ITracingService>();
    bool isEmailmatches = false;
    EntityReference incident = EmailActivityLookup.Get(executionContext);
    RetrieveRequest request = new RetrieveRequest();
    request.ColumnSet = new ColumnSet(new string[] { "from", "description", "subject" });
    request.Target = new EntityReference("email", incident.Id);
    string email = string.Empty;
    string senderqueue = string.Empty;
    string senderqueueFOC = string.Empty;
    bool senderqueueOutput = false;
    bool senderqueueOutputFOC = false;
    Guid SenderQueueId = Guid.Empty;
    Entity entity = (Entity)((RetrieveResponse)service.Execute(request)).Entity;
    EntityCollection IncommingParty = null;
    IncommingParty = (EntityCollection)entity["from"];
    for (int i = 0; i < IncommingParty.Entities.Count; i++)
    if (IncommingParty != null && IncommingParty[i].LogicalName
    == "activityparty")
    EntityReference PartyReference =
    (EntityReference)IncommingParty[i]["partyid"];
    // Checking if email is sent by CRM Account
    if (PartyReference.LogicalName == "systemuser")
    // Retrieve sender Account record
    Entity User = service.Retrieve("systemuser",
    PartyReference.Id, new ColumnSet(true));
    // wod_Account = new Entity("account");
    email = User.Attributes["internalemailaddress"].ToString();
    if (email.Contains("[email protected]") == true)
    senderqueue = "Tier 1 Email";
    if (email.Contains("ford.com") == true)
    senderqueue = "Tier 1 Email";
    if (email.Contains(".ca") == true)
    senderqueueFOC = "FOC Tier 1 Email - English ";
    if (email.Contains("icollection.com") == true)
    senderqueue = "Tier 1 Email";
    QueryByAttribute querybyattribute2 = new QueryByAttribute("queue");
    querybyattribute2.ColumnSet = new ColumnSet("name", "queueid");
    querybyattribute2.Attributes.AddRange("name");
    // Value of queried attribute to return.
    querybyattribute2.Values.AddRange(senderqueue);
    EntityCollection retrieved2 = service.RetrieveMultiple(querybyattribute2);
    foreach (var c in retrieved2.Entities)
    // string Queueid = c.Attributes.Contains("queueid").ToString();
    SenderQueueId = c.GetAttributeValue<System.Guid>("queueid");
    if (senderqueue != null && senderqueue != string.Empty)
    senderqueueOutput = true;
    if (senderqueueFOC != null && senderqueueFOC != string.Empty)
    senderqueueOutputFOC = true;
    this.OutSenderSearchFOC.Set(executionContext, senderqueueOutputFOC);
    this.OutSenderSearch.Set(executionContext, senderqueueOutput);
    catch (Exception ex)
    Helpers.Throw(String.Format("An error occurred in the {0} Workflow.",
    this.GetType().ToString()),
    ex);
    [ReferenceTarget("email")]
    [Input("EmailActivity")]
    public InArgument<EntityReference> EmailActivityLookup { get; set; }
    [Output("OutSenderSearch")]
    public OutArgument<bool> OutSenderSearch { get; set; }
    [Output("OutSenderSearchFOC")]
    public OutArgument<bool> OutSenderSearchFOC { get; set; }
    Here i am doing many things but you can see how to rerieve data from  activity party. Please let me know for any clarification.
    Abhishek

  • Epub books show up in ipad on itunes but do not show up on ipad. Also can not delete the books from ipad in itunes

    epub books show up in ipad on itunes but do not show up on ipad. Also can not delete the books from ipad in itunes

    You have no choice but to lose your data back to the last backup you made.
    Here's how to do the recovery.  Note you may have to try to get into recovery mode more than once to succeed:
    HT1808
    I'm sure next time, you'll be more vigilant about keeping current backups.

  • My iPhoto library want open. it says "you can not open the application iPhoto because it may be damaged or incomplete., my iPhoto library want open. it says "you can not open the application iPhoto because it may be damaged or incomplete.

    my iPhoto library want open. it says "you can not open the application iPhoto because it may be damaged or incomplete., my iPhoto library want open. it says "you can not open the application iPhoto because it may be damaged or incomplete.

    Back up all data. Delete the iPhoto application and download it again from the App Store.

  • HT5312 I DO remember them but Apple chose to put them in Japanese and I can not change the language on Manage my Apple ID so I do not know if I made an error ,it threw me off , it was the wrong question Where did you fly to on your first Aiplane trip ? th

    I DO remember them but Apple chose to put them in Japanese and I can not change the language on Manage my Apple ID so I do not know if I made an error ,it threw me off , it was the wrong question Where did you fly to on your first Aiplane trip ? then I was unable to enter until 8 hours then called Apple Japan 4 times each time threy asked me would you like to speak with an English speaker,I said yes then they told me sorry today is Sunday no English speakers ,but they refused to speak Japanese, then I called 5th time and a kind guy could speak English we were on 1and 1/2 hours he got me to log in but the reset key chain could not be completed still pending.
    He said do not mess with that ! then I got a text from somewhere to reset 4 pins suddenly it was very strange I said to him that I got this pin this morning but it said you can use maximum 3 hours it had a UK number and I told him I do not like this and will not enter the code he said do not do it if it is from the UK and then I said to him ok you did a lot to help but we can not go any further ! and we cut of I went back to my computer to re do the ID but I found everything a mess so I call and a stupid sounding Japanese women with a squeaky voice came on I was calm at first and they want your phone number your IMEI number your iPhone serial number date of birth Address email address it takes 10 munutes to check then they ask what are you caling about so I try to explain my keychain is broken or problems with language security questions and can not change my pasword because the security question have failed me so it is ONE BIG HEADACHE AND I START I GET STRESSED she says Do want an ENGLISH speaker ,I say yes ,that guy i talked to earlier but I never got his name and first time I ever talked to him but they said he is not here so I said ok and then she said today is sunday so call back in the morning ,I said ,well ok in Japanese but they make you feel stupid because they do not want to speak Jap@anese with none natives and they are to busy,And they feel that I should not bother them ,then I say that Apple Japan is trying to refuse Apple foreign customers and then she wants to hang up and ask me to visit the shop ,but they are the same I have a very bad time with Apple Japan since they do not discuss software problems or security with customer meaning if you have a problem they ask you to come on a time 20 minutes max so they do hardware test and say you phone is fine then I say no I can not reset my ID they say you must call call centre so I am going around in circles ,When I call English it is usually Australia so if my problem is in Japan surely if do not want me to talk to them in Japanese and they ask me to call Australia but every time my call charge is expensive after asking them is this free because I have Apple care they say yes but when the call goes to Australia 0120 277 535 it might change to paid call so I call then I have to ask is this charging they say we can not give you that information ! so what can I do I have have been at the computer and phone all day on my day off work and in tre week I am so busy and can not use my phone I can not work without it ,this new technology for you ,they can not cope with the fact that the customer have problems yet they do not want to deal with us because they can not solve it and so it shows them to be useless they like to walk around in their cool tee shirts and retro shop but when it comes to functionality we are unwelcome they got the money so do not return because apple is perfect that nothing should go wrong .
    But it does somehow my English security answers do not work on a Japanese Question especialy if I did not choose that question I set  up the multiple choice In English and wrote the answers in English or Roman and set them langauge preferences in English, do you really think you can correctly write english name or word in Japanese they write a police patrol car  pato caa パトカア they do not have r and l .So it is my choice to make my security easy for me and as difficult for others to hack.But they also have patororoo choo meaning ' now patrolling ' so why they have pato caa patrol car and patoro patrol and have thousands of Chinese words kanji they can find patrol.
    I am getting off the topic but I am at a loss to fix this problem when they hold the keys and i have all the info to verify my ID.

    You have to enter the Apple ID and password. You are running into the Activation Lock
    iCloud: Find My iPhone Activation Lock in iOS 7
    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.

  • How Can I put an Artists Live Albums in a separate folder, so they sort by "Concert Date" in iTunes and do not "intermingle" so to speak with Studio Albums?  Is this possible?

    How Can I put an Artists Live Albums in a separate folder, so they sort by "Concert Date" in iTunes and do not "intermingle" so to speak with Studio Albums?  Is this possible?
    That is about the best way I can phrase my question.
    I put year/month/date at the beginning of a show, hoping for them to sort by date and I get mixed results.
    Would creating a Folder within the Artists' existing folder  that said "Pearl Jam Live", inside the "Pearl Jam" folder in iTunes Media help this "Date Sorting Issue"?
    Thank you.

    Or is there a way to go through aperture to make a new reference library that I can move the masters into later?
    you do not move the masters into a references library - you turn your current library into a referenced library.  As Terence Devlin said:
    File -> Relocate Masters
    What you should set up:
    Select a folder, where you want to store your referenced files - probably on an external drive.
    Decide on a hierarchical folder structure inside this folder - that is completely up to you.
    Select a project from your library and use the command "File -> Relocate Masters/Originals" to move the original image files to the folder where you want to go them to. Only take care not to send two projects to the same folder.
    Alternatively, if you do not care about the folder structure Aperture will use, select all images at once from the "Photos" view and let Aperture decide how to assing the folders - in the "Relocate Originals" dialoge you can specify a subfolder format.
    Regards
    Léonie

  • Kids have disabled iPad now I can't put the right passcode in.I do not have a laptop anymore.

    Kids have disabled iPad and I can't put the right passcode in.I don't have laptop anymore.Will it give me chance to put it in?

    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    Saw this solution on another post about an iPad in a school enviroment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just cancelling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • I cant drag musin off of my laptop into my itunes an red circle with an slanted in the middle line pops up im so very frustrated i can not put any music on my phone

    I cant drag musin off of my laptop into my itunes an red circle with an slanted in the middle line pops up im so very frustrated i can not put any music on my phone

    Hi Darray123,
    If you are having issues moving music to your iPhone, you may find the following articles helpful:
    iOS: Syncing your data with iTunes
    http://support.apple.com/kb/HT1386
    Apple Support: Managing content manually on iPhone, iPad, and iPod
    http://support.apple.com/kb/HT1535
    Regards,
    - Brenden

  • Data blocks in forms 6i, can not see the data

    i have built an application in forms with some data blocks. the blocks a connect to some tables in the db. i have built them connectd as "system". but when i run the applicatio as user x i can do select, insert, update, delete, but i can not se the records in the datablocks (they are empty), but i can do all transactios. why?

    First of all, developing from the System schema is not a good idea.
    Who owns the tables your form is connecting to? The table owner should create a public synonym for each table name, and also needs to grant user x access to the table.

Maybe you are looking for

  • Invocation of SOAP Sender Adapter using Apache SOAP

    Hi, I'm trying to invoke the XI SOAP Sender Adapter using the Apache SOAP API. It seems that my message header is missing a few parameters (see exception below). Does anybody know which to set? Regards, Heiko ========== Exception: <?xml version='1.0'

  • Can automator be set to always open certain files types?...

    Since screenshots (command/shift/4) always save as PNG files and these are not readable by most email programs, I am always manually converting these to JPGs in order to email the pic. I would like to create a workflow in Automator that would automat

  • R12 Accounts Payable Manager

    Hi, I am using Oracle R12 Accounts Payable Manager.  Currently when a payment is made to our suppliers a remittance file is produced in PDF format.  I would still like to have this but at the same time I would really like to be able to set up e-mail

  • Excise Error while GR

    Hi, Error while  doing GR Please check excise base for the item is zero ! Plz suggest where i went wrong

  • Flip4mac exports out of sync

    Hi all, Suddenly, when I export WMVs using QT Converter (flip4mac) my clips end up out of sync. Any help would be appreciated - Steve