Is it possible to have a link to delete a value in a SQL report?

Application Express 3.1.0.00.32
I have a simple table with a listing of names (project managers) and would like to have a link in a separate column that would have the pm removed (delete the pk_id from the table).
I have tried several things without success.
I created a column link with the 'delete' request and a page process (multi row delete) only triggering whenever the 'delete' request is sent. Whenever you click the link, the id is not removed from the table and the page refreshes.
For column link I have tried page in this application and URL. Whenever selecting URL, I am given the following command:
f?p=&APP_ID.:14:&SESSION.:delete:&DEBUG.::P14_PK_PROJMAN_ID:#ID#
:P14_PK_PROJMAN_ID is the page item and ID is the correct column that I wish to have removed.

Hello:
You can put the JS function into the HTML Header section of the Page defintion.
<script>
function doDelete(id) {
$x('P14_DEL_ID').value=id;
doSubmit('DELETE');
</script>Define a new page process whose process point is 'On Submit: After Computations and Validations'. For the Process Source specify
Delete from <table> where key_column=:p14_del_id;Under Conditional Processing select 'Request=Expression 1'. For Expression 1 specify 'DELETE'
Hope this helps.
Varad

Similar Messages

  • Is it possible to have a link/button inserted into the end of my flash video that makes up the first page of my web site

    i am not sure if this will make sense so please tell me if it
    doesn't. is it possible to have a link/button inserted into the end
    of my flash video that makes up the first page of my web site. the
    video plays showing the name of the site then fades to show the
    text "enter" which i want to make the link to the next page.

    > the video plays showing the name of the
    > site then fades to show the text "enter"
    in FLASH set a gotourl action on the last frame of the move.
    If this is a "splash page" and has a dancing company logo and
    a throbbing
    drumbeat- reconsider. Just make the homepage of the website
    the homepage.
    Don't make people wait to see some content.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Is it possible to have multiple links in single page?

    Is it possible to have multiple links in single page for
    linking in different slides like in a websites? My deadline is
    nearing in. Adobe folks please help me.

    > Is it possible to have multiple links in single page for
    linking in
    > different slides like in a websites? My deadline is
    nearing in. Adobe
    > folks please help me.
    >
    Add multiple click boxes to the page.
    Steve
    Adobe Community Expert: eLearning, Mobile and Devices
    European eLearning Summit - EeLS
    Adobe-sponsored eLearning conference.
    http://www.elearningsummit.eu

  • Possible to have clickable link in a compressed movie

    Hello forum readers,
    I have several QT movies that I'm compressing in Compressor 1.2.1.
    These movies will be offered free on the internet , and I would like to have my logo branding (bottom right corner) so when clicked - it would take them to the website in a browser.
    Is this possible?
    Thanks for any help you may offer,
    Luke Wonderly

    Greetings, 9mluke.
    While I've never done this, it is possible to have clickable urls in a Quicktime file. MacBreak Weekly does this. In fact, they have a video podcast which takes you step by step through the process. It requires a 3rd party program called LiveStage Pro to actually embed clickable links. All of that is described in their podcast which can be found via iTunes here:
    MacBreak 31: The Road To 1080p pt. 6

  • Line chart - possible to have an unbroken line through NULL values?

    Hi,
    I have a line chart. In the middle of my data are a few missing (NULL) values.
    Right now, if there is a null value in the data set, the line is broken. Is it possible to have the line connect through these null values without breaking?
    I appreciate your help.
    Here is an example:
    ###### DATASET (note the null value on 7/15)
    <DATA>
    <MY_ROW>
    <DT>2009-07-13T00:00:00.000+00:00</DT>
    <VAL>5</VAL>
    </MY_ROW>
    <MY_ROW>
    <DT>2009-07-14T00:00:00.000+00:00</DT>
    <VAL>10</VAL>
    </MY_ROW>
    <MY_ROW>
    <DT>2009-07-15T00:00:00.000+00:00</DT>
    <VAL/>
    </MY_ROW>
    <MY_ROW>
    <DT>2009-07-16T00:00:00.000+00:00</DT>
    <VAL>10</VAL>
    </MY_ROW>
    <MY_ROW>
    <DT>2009-07-17T00:00:00.000+00:00</DT>
    <VAL>15</VAL>
    </MY_ROW>
    <MY_ROW>
    <DT>2009-07-18T00:00:00.000+00:00</DT>
    <VAL>10</VAL>
    </MY_ROW>
    </DATA>
    ###### CHART CODE:
    <Graph graphType="LINE_VERT_ABS">
    <LegendArea visible="false" />
    <Title text="" visible="true" horizontalAlignment="CENTER" />
    <LocalGridData colCount="{count(xdoxslt:group(.//MY_ROW, 'DT'))}"
    rowCount="1">
    <ColLabels>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    select=".//MY_ROW" group-by="DT">
    <xsl:sort select="current-group()/DT" />
    <Label>
    <xsl:value-of select="current-group()/DT" />
    </Label>
    </xsl:for-each-group>
    </ColLabels>
    <DataValues>
    <RowData>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    select=".//MY_ROW" group-by="DT">
    <xsl:sort select="current-group()/DT" />
    <Cell>
    <xsl:value-of select="sum(current-group()/VAL)" />
    </Cell>
    </xsl:for-each-group>
    </RowData>
    </DataValues>
    </LocalGridData>
    </Graph>
    I would prefer that the line connect the two adjacent values - 7/14 and 7/16.
    Thanks!
    - Matt

    Hi Matt,
    Use this.
    But if you don't want to display the date which has null value, we can do that too.
    chart:
    <Graph depthAngle="50" depthRadius="8" pieDepth="30" pieTilt="20" seriesEffect="SE_AUTO_GRADIENT" graphType="LINE_VERT_ABS">
    <LegendArea visible="true" />
    <LocalGridData colCount="{count(xdoxslt:group(.//MY_ROW,  'DT'))}" rowCount="1">
    <RowLabels><Label>VAL</Label>
    </RowLabels><ColLabels>
    <xsl:for-each-group select=".//MY_ROW" group-by="DT" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:sort select="current-group()/DT" /><Label><xsl:value-of select="current-group()/DT" />
    </Label>
    </xsl:for-each-group></ColLabels>
    <DataValues>
    <RowData>
    <xsl:value-of select="xdoxslt:set_variable($_XDOCTX,'prev_group', number(0))"/>
    <xsl:for-each-group select=".//MY_ROW" group-by="DT" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:sort select="current-group()/DT" /><Cell>
    <xsl:variable name="curr_group" select="sum(current-group()/VAL)"/>
    <xsl:choose>
            <xsl:when test="$curr_group > 0">
              <xsl:value-of select="$curr_group"/>
            </xsl:when>
            <xsl:otherwise>
          <xsl:value-of select="xdoxslt:get_variable($_XDOCTX,'prev_group')"/>
            </xsl:otherwise>
          </xsl:choose></Cell>
          <xsl:value-of select="xdoxslt:set_variable($_XDOCTX,'prev_group', sum(current-group()/VAL))"/>
    </xsl:for-each-group></RowData></DataValues></LocalGridData></Graph>

  • Is it possible to have a link open as a pop-up window from an image map?

    Any help would be very appreciated! I'm new! Just point me in the right direction!

    Have a look here http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1956023
    Gramps

  • ICWC: Is it possible to create a link in a message in the error line

    Hi,
    after saving a service order in the IC WebClient the success message (including the object id) is shown in the persistent header area of the ICWC - in the error single line. 
    Is there a possibility to have a link in this area? I want to create a link onto the object id to directly get into this order again.
    Thanks for your help.
    Regards,
    Ben

    Hi,
    thanks for your response. Just for the understanding, in my case there are no error messages displayed in the error line. The only visible message is the success note "service ticket XYZ is saved successfully". After saving the ticket correctly we have to navigate to a different view. Changing this is not possible.
    So the new client requirement is to create a link at the "XYZ" (object id) in this error (success) message. But I think there is no possiblity to get a navigational link or a usual html-link at that place.
    Maybe you got some more ideas?
    Thanks and best regards,
    Ben

  • Can I have two Data Files in One control file of sql*loader tool

    hi,
    Can someone help me out. is it possible to have two Data Files in one control file of Sql*loader.
    And isit possible to run 10,000 records before lunch and 10,000 records before tea and 10,000 records before evening session by giving breaks after every 10,000 records.
    Thanks
    Ram

    Yes. You can specify two datafiles in one control file and can load using sql loader.
    I give you the sample control file.
    Load DATA
    INFILE 'TEST1.CSV'
    INFILE 'TEST2.CSV'
    TRUNCATE
    INTO TABLE TEST_P
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"'
    TRAILING NULLCOLS
    (COL_1,
    COL_2,
    COL_n)
    Hope It will help you.
    -Karthik

  • OK, I need to be able to have a linked TOC, and also have destinations created in FM10 that will not be lost when I 1. Save the book as a PDF. then 2.  need the PDF to be as small as possible, but without losing my destinations. Anyone know how to do that

    OK, I need to be able to have a linked TOC, and also have destinations created in FM10 that will not be lost when I 1. Save the book as a PDF; then 2. I need the PDF to be as small as possible, but without losing my destinations. Anyone know how to do that??
    I had been saving as a PDF and then reducing the size of the PDF by printing it as a PDF with a degree of image compression. I write manuals with a LOT of screen captures and line art that needs to be clear. So it is a balancing act between image clarity and PDF size. The PDFs on the web need to be smaller - sure you can undertsand.
    Anyway, when I print the PDF again, I lose both my destinations and bookmarks.
    Anyone know of any way to avoid that?

    Control the images by creating a custom PDF Job Options and then selecting it in the PDF Job Options drop-down of the PDF setup dialog box (File > Save as PDF...)
    Create the custom PDF Job Options file with Distiller. If you do not have Distiller, open the Printing Preferences of the Adobe PDF printer. Start with the Smallest File Size Job Options settings and Edit.

  • For any given Bookmarks folder, is it possible to have the subfolders appear *above* individual links?

    For any given Bookmarks folder, is it possible to have the subfolders all appear *above* the individual links (as they do in Internet Explorer), rather than mixed together alphabetically? (Or is there perhaps an add-on that will allow me to do this?)

    Provisional solution is to place one or more zeros in front of your folder names, that way they should always appear on top in their alphabetical order.

  • Possible to have a URL link to an Opportunity list?

    Is it possible to have a URL (that I can send to people) to link directly to an Opportuniy List in Siebel? I assume this is much the same method as linking a record or a report. I right click on the headings pane of the list and go to properties for the URL, open a new browser, paste it in, and I'm taken to the log in screen. From here, when I log in I want to be taken directly to the list, but it just loads my homepage. Now, if I post that same link into a browser where I am ALREADY logged in to Siebel, the link works fine, takes me right to the list, and does what I want. I have made this work with specific record links that I throw into an email, but I can't get it to work with lists. Is this possible?
    Edited by: user10885599 on Aug 6, 2009 7:18 AM

    Using the URL from the address bar doesn't work if you aren't in a browser that is already logged in to Siebel. If you are in the same browser and already logged in to Siebel, it will load the list. But if you are in a fresh browser where it hasn't regeistered you as logged in to Siebel, it will take you to the log in page and then direct you to your home page, not the list. I am wanting people to receive this link in an email and click it, be taken to the log in screen, then to the list after they sign on (whether logged in to Siebel or not, just like how a specific record link URL works). Thanks for the response, though!
    Edited by: user10885599 on Aug 6, 2009 7:20 AM

  • Is it possible to have a fixed column width and a URL link?

    I am trying to achieve having a popup link on a column within a SQL report but also have the report column a certain width. I can have either or however not at the same time.
    What I did was created a SQL report, edited a column and gave it a URL redirect (page in application) as normal.
    For the fixed column width, I used:
    <div style="width:250px; height:54px; overflow:hidden" title="#Comments#">#Comments#</div>On Column Formatting / HTML Expression
    And for the popup URL, I used:
    onclick="window.open(this.href,'_blank','resizable=0,scrollbars=0,width=650,height=300,menubar=0,location=0');return false;" title="Comments"On the Column Link / Link Attributes

    Andy thank you for your reply, however I either am not completly understanding or there is a problem elsewhere.
    I have changed to the code to fit the needs of the application as so:
    !http://i41.tinypic.com/2m6mrh4.jpg!
    App ID: 523
    Page: 23
    Item: P23_STATUS_COMMENT
    Column to select: Comments
    Whenever clicking on the link, the following error is given:
    Expecting p_company or wwv_flow_company cookie to contain security group id of application owner.
         Error      ERR-7620 Could not determine workspace for application ().{code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Is it possible to create a link on the content of a text annotation??

    Is it possible to create a link on the content of a annotation??? Like the content of an annotation is some notes as well as a link...
    content -
    this is my first annotation(notes)
    http://www.google.co.in/(link)
    is it possible to create a link for the url given in the content of an annotation??? On click on the url...it should get opened...
    please reply its really urgent....

    How/where do you want to accomplish it?
    Within the document? Using Acrobat? Using another application?
    Using Acrobat within the document would be possible using Acrobat JavaScript. You can access the annotation objects of your document, and you then can evaluate the properties of each of these objects. Have a closer look at the Annotation Object section in the Acrobat JavaScript documentation.
    You will look for the contents property, and evaluate its content. When you have found something looking like a URL, you can create a link (using the rect property of the annotation), and you have what you want; you might then think to destroy the annotation, as it may overlay the link.
    Hope this can help.
    Max Wyss.

  • I was wondering if it's possible to have a welcome package sent out to me?.. (More info inside)

    Hi there,
    We recently acquired the CC package for our team. I noticed, I did not fill in my address at the time of registration (done now) and so did not receive the welcome package that my colleagues got. I was wondering if it's possible to have one sent out for me too?
    Kind Regards,
    Chris

    http://forums.adobe.com/community/download_install_setup/creative_cloud_faq
    -has a link to manage your membership which may help

  • How can you have two link styles on one page?

    I have one style (formatted link style) for internal links in
    my footer but I want a different style for the external links in my
    mainContent. Is it possible to have two different "styles" of links
    on one page? I tried creating a new set for the mainContent links
    and being positioned underneath my footer link's styles, the "new"
    mainContent link styles overrode the footer link style. Is there
    another way of going about this?
    Thanks anyone, Julie

    Julie:
    > I'm just not code savvy.
    As long as you permit yourself to offer this argument, you
    will struggle
    with Dreamweaver. If you are serious and want to improve, you
    will have to
    overcome your code-phobia.
    What is in these two files?
    > <link href="css/area.css" rel="stylesheet"
    type="text/css" />
    > <link href="css/footlinks.css" rel="stylesheet"
    type="text/css"
    > media="screen"
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Rock Artist" <[email protected]> wrote in
    message
    news:[email protected]...
    > Murray, I was just looking over my code and noticed the
    links in my footer
    > are
    > styled, in the first place, by a class I created in my
    main.css (for all
    > of my
    > pages) called ".webdis" (nickname for webmaster and
    disclaimer). I do see
    > my
    > link format style in the head of this document but am I
    supposed to see it
    > where the footer is (in the code)?
    >
    > If you look at the first external link (the only one I
    have attached a
    > link to
    > so far):
    > </p>
    > <p class="contentlinx"><a href="
    http://www.hotsprings.org/">Hot
    > Springs
    > Convention &amp; Visitor's Bureau</a><br
    />
    >
    http://www.hotsprings.org/<br
    />
    > </p>
    >
    > It took on same style as my footer links. I'm a little
    frustrated, it just
    > seems like it should be so simple. I'm ready to launch
    this thing tonight
    > and
    > this is the only "little" thing I have left to do. I
    hate to cheat and
    > make
    > each one of these site links a graphic and link it as a
    graphic, but I am
    > so
    > ready to get this thing up.
    >
    > I'm just not code savvy. I am going to attach my code to
    this reply and
    > maybe
    > you can tell me what I'm doing wrong. Thanks, Julie
    >
    >
    >
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8" />
    > <title>Area Interests</title>
    >
    > <link href="css/main.css" rel="stylesheet"
    type="text/css" />
    > <style type="text/css">
    > <!--
    > .contentlinx {
    > font-family: Arial, Helvetica, sans-serif;
    > font-size: 14px;
    > color: #336600;
    > }
    > -->
    > </style>
    > <link href="css/area.css" rel="stylesheet"
    type="text/css" />
    > <link href="css/footlinks.css" rel="stylesheet"
    type="text/css"
    > media="screen"
    > />
    > </head>
    >
    > <body>
    >  <div id="wrapper">
    > <div id="header"></div>
    > <div id="sidebar">
    > <p align="center"><a
    href="index.html"><img
    > src="images/vert_nav_bar/home_button.jpg"
    alt="navigation button to home"
    > width="155" height="50" /></a><a
    href="property.html"><img
    > src="images/vert_nav_bar/property_button.jpg"
    alt="navigation button for
    > property" width="155" height="50" /></a><a
    href="maps.html"><img
    > src="images/vert_nav_bar/maps_button.jpg"
    alt="navigation button for maps"
    > width="155" height="50" /></a><a
    href="gallery.html"><img
    > src="images/vert_nav_bar/gallery_button.jpg"
    alt="navigation button for
    > photo
    > gallery" width="155" height="75" /></a><a
    href="gallery.html"><img
    > src="images/vert_nav_bar/area_button.jpg"
    alt="navigation button for area
    > interests" width="155" height="75" /></a><a
    href="contact.html"><img
    > src="images/vert_nav_bar/contact_button.jpg"
    alt="navigation button for
    > contact
    > us" width="155" height="75" /></a></p>
    > <div id="sidephoto"><img
    src="images/tree_flower.jpg" alt="garvan tree
    > flower" width="145" height="275" /></div>
    > </div>
    > <div id="header2">
    > <h2 class="style2">AREA INTERESTS</h2>
    > </div>
    > <div class="proptext" id="content">
    > <p>HOT SPRINGS NATIONAL PARK, ARKANSAS</p>
    > <div id="photofeature"><img
    src="images/garvin_stream.jpg" alt="garvan
    > gardens" width="275" height="218" /></div>
    > <p align="left">America's first resort, also
    referred to as &quot;The
    > Spa
    > City&quot;, Hot Springs definitely has a pulse
    > of its own. Visit the sites below to find out why this
    is one of
    > the
    > most popular vacation destinations in the South.
    Featuring world famous
    > natural
    > hot springs, historic bathhouse row, and thoroughbred
    horse racing at
    > Oaklawn
    > Park. The perfect place to relax, the perfect place for
    adventure, Hot
    > Springs
    > provides a year-round opportunity for outdoor
    recreation, world-class bass
    > fishing and fabulous water sport activities, hiking,
    horseback riding and
    > quartz crystal hunting. In fact, take a day trip to
    Murfreesboro to the
    > Crater
    > of Diamonds State Park, the only diamond-producing site
    in the world that
    > is
    > open to the public and try your hand at diamond hunting
    or searching for
    > 40
    > other types of semi-precious stones, rocks and minerals.
    Garvan Woodland
    > Gardens, a 210 acre forested peninsula jutting into Lake
    Hamilton with a
    > showcase of floral landscapes, streams and waterfalls,
    is a &quot;must
    > see&quot;. Hot Springs has a strong art community as
    well. Enjoy artist's
    > galleries, film-making events and musical venues all
    over town. Did I
    > mention
    > historical architecture? There is too much to mention
    here about this
    > wonderful
    > city, please see for yourself by visiting the local
    sites below to see
    > what's
    > happening in and around town.<br />
    > </p>
    > <p class="contentlinx"><a href="
    http://www.hotsprings.org/">Hot
    > Springs
    > Convention &amp; Visitor's Bureau</a><br
    />
    >
    http://www.hotsprings.org/<br
    />
    > </p>
    > <p class="contentlinx">Facts About Hot
    Springs<br />
    >
    http://www.hotsprings.org/media_room/news-detail.asp?news_id=9</p>
    > <p class="contentlinx">City of Hot Springs<br
    />
    >
    http://cityhs.net/</p>
    > <p><span class="contentlinx">The Greater Hot
    Springs Chamber of
    > Commerce<br />
    >
    http://www.hotspringschamber.com/</span><br
    />
    > </p>
    > </div>
    > <div id="footer">
    > <p><span
    >
    class="webdis">WEBMASTER     |    &
    > nbsp;<a
    href="disclaimer.html">DISCLAIMER</a></span></p>
    > </div>
    > </div>
    > </body>
    > </html>
    >

Maybe you are looking for

  • Loop plays in the loop browser but not on the track

    Hi, I've been having this problem for a while and reinstalling the whole program doesn't help either. I am running Logic Pro 8.02 and when I click on the loop such as "RnB beat 01" in the loop browser, it plays fine but when I drag it into the track

  • Error using dbms_redefinition package

    Hi, I am trying to use dbms_redefinition package to add a column to a table using primary key method SQL> conn / as sysdba Connected. SQL> grant execute on sys.dbms_redefinition to hr; Grant succeeded. SQL> grant dba to hr; Grant succeeded. SQL> conn

  • BADI - WORKORDER_GOODSMVT - check for BATCH management

    Hi there, I have implemented WORKORDER_GOODSMVT BADI (Backflush method) to fill the batch number with a default value for a given plant. This is working fine. However, I only want to fill this if the Material in the Production Order is "batch managed

  • Access denied security policy file

    All i a simple client which is trying to talk to a remote EJB. When i try and startup the client i get the following error. java.security.AccessControlException: access denied (java.util.PropertyPermission java.security.policy write)      at java.sec

  • Mexico Digital Invoice Implementation without XI.

    Hi All, We are in the process of generating Digital invoice for Mexico. Is it possible to generate the Digital invoice without the XI system? If possible then what are the hurdles and challenges in achieving this. I did go through the list of Notes m