Editing Image database columns From Apex front End

Hello,
How is it possible to edit an image datatype in Application express. Suppose if i want to edit an existing i mage and replace it with an edited version and save the newly edited verison in the database.
Is it possible to edit and image from the front end itself.

Hello,
It depends exactly what sort of functionality you mean by 'edit', if you mean resize/scale and things like that then read the previous links I supplied.
If you mean duplicating the sort of functionality that Photoshop et al provide then yes it's probably possible, however it sounds like a huge amount of work to me (as in it would be a 'product' in it's own right).
If you can start defining limits as to what editing features you want to provide then I think it will help to define the scale of your task, otherwise if you're just saying 'edit' as a catch-all phrase then I think you have a lot of work ahead of you (interesting work...but a lot of it ;).
John.
Blog: http://jes.blogs.shellprompt.net
Work: http://www.apex-evangelists.com
Author of Pro Application Express: http://tinyurl.com/3gu7cd
REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

Similar Messages

  • How to Edit the xml node value using flex from the front end UI

    Hi All,
    I am having a use case with flex 4.6
    1> To read the external xml file
    2> Display the tree structure in the front end UI
    3> Edit the node values of the xml file from the front end UI and save it back
    How to go about the above use case, any blogs or links on the above case will be help
    Thanks,
    Alok

    Check this is example:
    http://blog.flexexamples.com/2009/07/23/deleting-nodes-from-an-xml-object-in-flex/

  • To avoid writing database code in the front end

    Hello,
    I am working on a database application using 10g database as backend and dotnet as front end. I wish to execute only oracle stored procedure for all the select (to avoid hard parse and use of bind variable), DDL and DML operations; just to avoid writing database code in the front end. Can anyone please give me a little examples of :
    1.Select query's output to be return as resultset by stored procedure.
    2.DML example by stored procedure.
    3.Any DDL example by stored procedure.
    using scott.emp, so that i would just call the stored procedure, rather than giving select,DML and/or DDL commands in the front end. Even though i have read in the documentation, but a clear cut examples will help me to get into clear concept as well.
    Thanks & Regards
    Girish Sharma

    Hi...
    -->Select example
    create or replace procedure get_emp(rc out sys_refcursor)
    is
    begin
    open rc for select * from emp;
    end;
    -->DML example
    create or replace procedure do_dml_emp(pempid in number,
    pempname varchar2,
    result out number)
    is
    begin
    insert into emp(empid,empname) values(pempid,pempname) returning empid into result;
    exception
    when others then
    result:=-1;
    end;
    -->DDL example
    create or replace procedure ddl_emp(colname varchar2,
    coltype varchar2,
    result out number)
    is
    begin
    result:=-1;
    execute immediate 'alter table emp add column ' || colname || ' ' || coltype ;
    result:=1;
    end;

  • How To Hide the Record after Update from ADF Front End

    Hi Every One,
    I have done the Scenario of Database Table rows displayed in ADF front end. It is editing and updating also. My Query is after update the record, how to hide that record from adf front end.
    Could any one please help me.
    Thanks,
    Narasimhulu.S

    hi you can create transient field in view object indicate to visibility of row (boolean ) and create view criteria that show only rows that are able to be visible according to transient attribute and at the update process set the attribute to true inside entityImpl class

  • How to view logs from browser/front-end without using Visual Admin

    Hi,
    Is there a way to view logs from the front-end computer without looging into the Visual Admin tool either in the browser or using some stand-alone application.
    Thanks,
    CD

    Hi,
    You can use http://ipaddress (or) fqdn :5xx00/NWA
    use monitoring and logs option you will view logs.
    Regards,
    Vamshi.

  • LOV query attached to fields from EBS front end

    Can anyone please tell me, is there any way to find the query of dynamically attached LOV to corresponding field from EBS front end without using corresponding .fmb of form. I read posted threads and got the option of trace with binds (for finding the queries of LOV) from Help -> Diagnostics -> Trace ->Trace with Binds -> trc file
    ,But the problem is, it is not specified in the trace file that which field is having which query.
    Or is there any other way regarding this issue
    Versoins are
    RDBMS : 11.1.0.7.0
    Oracle Applications : 12.1.1
    Please correct me if I am wrong
    Regards
    Trupti

    You can open the form using forms builder and get the code.
    How To Bring Up 10G Forms Builder In R12 Environment? [ID 579318.1]
    Using the OracleAS 10.1.2 Forms and Reports Builders with Oracle Applications Release 12 [ID 444248.1]
    Thanks,
    Hussein

  • How can I edit the SamAccountName column from the list or be able to edit it?

    Hello,
    In my view for a SharePoint list, I see three columns for SamAccountName.  This list is for listing staff as a directory, so there are phone numbers, names, emails addresses, division, department and such.  The  SamAccountName
    column for some people has incorrect username or is blank.  When I edit a record in the list, the SamAccountName column is not available to edit. 
    How can I edit the SamAccountName column from the list or be able to edit it?
    I do have user profiles working and importing profiles from AD, but the list still shows empty or incorrect SamAccountName for some records.
    Paul

    If the user does not remember the encryption password there is no way to use the backup.
    The password cannot be removed or reset.
    Delete the backup, restore as new.  Sync the desired content to the device.

  • Hiding columns in the front end i.e. Oracle Answers

    Hello,
    I wonder if it is possible to hide the non-essential reporting colums such as ID from Answers so the front-end users only see the column that should
    be exposed for reporting.
    Thanks,

    You should be ok as long as the joins and relationships are properly setup in the Business Layer.
    It's also possible to 'secure/hide' specific columns within a Presentation Column in the repository by setting permissions to specific repository groups. This way some Answers users could see the columns while others would not.
    JES

  • How do I create data-driven linkbuttons whose visibility is controlled from the front end?

    I've made a component based on a mx:TitleWindow that contains linkbuttons that I'm using as a context-menu.
    The TitleWindow component contains link buttons like this:
    [Bindable]
    private var _showEmailThis:Boolean = false;
    [Bindable]
    private var _showApproveThis:Boolean = false;
    [Bindable]
    private var _showReviewThis:Boolean = false;
    <mx:LinkButton id="lnkEmailThis" 
                   visible="{_showEmailThis}" 
                   includeInLayout="{_showEmailThis}" 
                   click="lnkEmailThis_click()" 
                   label="Email this!" />
    <mx:LinkButton id="lnkApproveThis" 
                   visible="{_showApproveThis}" 
                   includeInLayout="{_showApproveThis}" 
                   click="lnkApproveThis_click()" 
                   label="Approve this!" />
    <mx:LinkButton id="lnkReviewThis" 
                   visible="{_showReviewThis}" 
                   includeInLayout="{_showReviewThis}" 
                   click="lnkReviewThis_click()" 
                   label="Review this!" />
    This component contains a large number of links and is re-used by multiple modules in the same application.
    Within each module, this component is used when a user clicks on a row in a datagrid.
    The code looks like this:
    In "Requests" module:
    private function dgRequests_click(event:MouseEvent):void
        menu.showApproveThis = true;
        menu.showReviewThis = true;
    In "Performance" module:
    private function dgPerformance_click(event:MouseEvent):void
        menu.showEmailThis = true;
        menu.showReviewThis = true;
    As you can see, the visibility of individual linkbuttons is controlled within each module by setting boolean properties.
    If I alter this component to use a renderer, how can I control the visibility of the linkbuttons from the code in each module (there are over a hundred links with different functionality - not every link will be used in each module)? Note: it is not known from the back-end which grid within which module uses which link. This is set in the front end within each module's actionscript file.
    e.g., if the XML looks like this:
    <links>
       <link>
          <label>Email This</label>
          <visible>_showEmailThis</visible>
       </link>
       <link>
          <label>Approve This</label>
          <visible>_showApproveThis</visible>
       </link>
       <link>
          <label>Review This</label>
          <visible>_showReviewThis</visible>
       </link>
    </links>
    and I set the Email link to show in the module like this:
    private function dgPerformance_click(event:MouseEvent):void
        menu.showEmailThis = true;
    How do I make it take effect? Is there a way to control the visibility of a linkbutton within an item renderer in a component from the module that uses that component? Is there something like reflection in the Flex framework?

    Put a single frame sequence structure around your stop button and then wire from the error cluster going into the error handler to the edge of the sequence structure. Now your code will stop at the end of the current iteration. To see why this works, watch you code execute with execution highlighting turned on and review the section of the manual talking about "Dataflow".
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How to create a master catalog of edited images without exporting from client catalog (in DNG or JPEG).

    I create a LR catalog for each client which works great as I have many repeat clients and can easily access all of their images. However, I want to have a master studio catalog that includes the edited images from all of the
    jobs.  When I have imported these images into the master, the lightroom adjustments are lost. How can I import import the edited images showing LR adjustments?

    I can answer your question literally, exactly what you have asked.
    Or I could suggest something else, more elegant, which may address your real needs better.
    Let me do the first:
    Use the command "export as catalog" for the new delta of the current job of that repeat client. For the first job you do not need this, as the total catalog is just about the portion you want to have in your master catalog.
    Then open your master catalog and use the command "import from another catalog", select this exported portion, and you are done. But caveat: now the same image file is referenced by 2 catalogs, which may lead to,problems, e.g. If you move the image within Lightroom.
    Alternative suggestion: just work with 1 master catalog and use a collection set per each of your clients, one collection per job underneath. If appropriate, create more collections in that client's set, e.g. only for images he/she bought actually.
    So far I have not understood what an individual catalog per client gives you, what a collection (set) would not?
    Cornelia

  • Issues in editing a PK column from FORM page

    Hi
    I am creating interactive report and a form on a table T1 with columns A (this is the PK column),B,C, etc.. In the creation wizard I chose "Existing Trigger" for populating my PK column values for both the pages as in my case, USER will be giving/populating these values. Now in the form page, I change the 'Display type' of PK column A from 'Hidden and Protected' to 'Text field' because user has to use this column in form page, for creation and editing jobs.
    Now, while creating a record, I have no issues, but while 'editing' the 'A' item from form page, the form gives errors like (ORA-20505: Error in DML) and (ORA-01403: no data found) and does not allow to edit this PK column. Any workaround? Please help.
    Thanks
    Bhavesh

    On edit page, under processes region you will find various processes active on this page. Edit process which do DML operation on table T. On edit process page you will find 3 check boxes: Insert, Update and Delete. de-select the update checkbox and create ur own process. As the PK is editable, create one hidden item (say PX_A) on page which will preserve the value of the column A before editing. This will help editing the table row which is identified uniquely by column A only.

  • Edit image in PS6 from LR4, back to LRoom and image is a mess.

    When I edit an image from lightroom 4 in photoshop and get evrything as I want I then save as tif and then when viewed in Lightroom 4 again you would think some one had moved the exposure about 3 stops to the right, HELP.
    Have checked color spaces, is there some sort of dedvelopment on return to lightroom I have overlooked.

    Do you use the LR command "Edit In..." to send the photo to Photoshop; or do you export the photo from LR, and then when you are done in Photoshop you import it into LR?

  • Editing Image in Photoshop from Illustrator when there is no link.

    We recieve PDFs from clients that routinely need corrections made to their images.
    We have found Illustrator very helpful in allowing us to choose images with the hassles of all of the layering associated with the original PDF.
    It also keeps vector elements vector elements.
    But we cannot come up with a way to open images in PS because these elements are embedded & not linked.
    Is there a way to do this that we have not thought of?

    Embedded pixel images are raster elements. You will have to change to "Images" in the Open dialog in Photoshop. There you can access all of the embedded images. You will have to place them again in Illustrator afterwards.

  • Taking payments via Apex front end?

    I understand Apex allows Paypal payments to be made but does it allow debit / credit card payments over the web and have custom tables for this purpose to store user payment information?
    This is really needed for anyone wanting a shopping cart aspect to their reporting site but not sure if Apex provides anything like this currently?

    Hi,
    I do have some experience of using Paypal with Apex, but only with Paypal Standard not Pro.
    I have an online store built in apex where I'm selling my old vinyl albums (www.genghisvinvyl.co.uk). The user add's items to their basket, completes their personal info and delivery info, then submits the order. The order details are then stored in my tables. They are then presented with a Paypal button which takes them to the Paypal site to make payment. I then receive their order details via email (produced by the Apex app) and an email from Paypal confirming payment. I then marry the two and ship the items.
    I was going to refine this so the order is only 'accepted' once payment has been made via Paypal but haven't had the time.
    For your requirements, I would use two applications, a public app for promoting and selling, and a secure app for registered users.
    I hope this helps.
    Andrew.
    http://www.apexskins.com

  • SharePoint Search is failed when request comes from one front end server

    Hello colleagues!
    I have a SharePoint 2013 farm with 3 server: batch, wfe 1, wfe 2
    Search topology includes batch and wfe 1 servers.
    So when search request comes from wfe 1 search service works fine. When search request comes from wfe 2 search service is failed.
    In logs there is an error:
    A failure was reported when trying to invoke a service application: EndpointFailure Process Name: w3wp Process ID: 16556 AppDomain Name: /LM/W3SVC/234569039/ROOT-4-130544984716198913 AppDomain ID: 6 Service Application Uri: urn:schemas-microsoft-com:sharepoint:service:9d3cd1b87fc848c0b7bbbfb95a7fd7a0#authority=urn:uuid:08a793bc71b54dfcb7f0cf2d6cc35c4f&authority=https://wfe2:32844/Topology/topology.svc
    Active Endpoints: 1 Failed Endpoints:1 Affected Endpoint:
    http://batch:32843/9d3cd1b87fc848c0b7bbbfb95a7fd7a0/SearchService.svc
    I have gone through the link
    http://batch:32843/9d3cd1b87fc848c0b7bbbfb95a7fd7a0/SearchService.svc It works from any server and any workstation except wf2
    When I open the link on server wfe2 I get:
    HTTP Error 503. The service is unavailable.
    Please help to understand what is wrong.
    Thank you for your help

    Hi Anna,
    Is this issue resolved?
    Is there anything update about this issue?
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

Maybe you are looking for

  • ICloud Mail no longer working

    When upgrading to Mountain Lion, I got this message "enter the Apple ID password for [email protected] to use Back to Mac". I put in my password and it said it wasn't valid. So I clicked to change the password. After changing the password successfull

  • Trex search E-recruitment

    Hello all, I have a question regarding a service in an abap engine: I have configured a trex engine for e-recruitment and I am getting an error code 8002. if it happens in a java engine I now that you have to configure a java service called URL Gener

  • [HELP]Recover database from NOarchivelog

    HAi all... I run oracle 9.2.0.4 on linux, NOARCHIVELOG I got this error when I tried to restore from my backup with create new control file. SQL> Alter database open resetlogs ORA-01113: file 1 need media recovery ORA-01110: datafile 1: '/home/oracle

  • Time Recording in Brazil

    Hello My customer has an operation in Brazil. They are telling me that the Brazilian ministry of labour has requirements around time recording i.e. a time recording sytem must be in place for certain employees to meet statutory requirements. Does any

  • I usually remove my earphones and shut down the nano.  When I attached the earphones it automatically turns on. Any solution?

    I usually remove my earphones and shut down the nano.  When I attached the earphones it automatically turns on. Any solution?