Delete options

Hi Experts,
I have report program. In selection screen I have a text box. whenever user enters value in that and click on Delete from CustoTable pushbutton the table entries should delete from that table.
But before deleting the table entries I should include a query that asks before the deletion values. whenever user says OK the table entries should be deleted. Whenever user says CANCEL it shouldn't deleted from the table.
Regards,
Ramesh.

They are all yours..
WS_MSG
Desc. Create a dialog box in which you display an one-line message.
POPUP_TO_CONFIRM_STEP
Desc. Create a dialog box in which you make a question whether the user wishes to perform the step.
POPUP_TO_CONFIRM_WITH_MESSAGE
Desc. Create a dialog box in which you inform the user about a specific decision point during an action.
POPUP_TO_CONFIRM_WITH_VALUE
Desc. Create a dialog box in which you make a question whether the user wishes to perform a processing step with a particular object.
POPUP_TO_DECIDE
Desc. Provide user with several choices as radio buttons
POPUP_TO_DECIDE_WITH_MESSAGE
Desc. Create a dialog box in which you inform the user about a specific decision point via a diagnosis text.
POPUP_TO_DISPLAY_TEXT
Desc. Create a dialog box in which you display a two-line message.
POPUP_TO_SELECT_MONTH
Desc. Popup to choose a month
POPUP_WITH_TABLE_DISPLAY
Desc. Provide a display of a table for user to select one, with the value of the table line returned when selected.
POPUP_TO_CONFIRM
Desc. Pop-up dialog confirm an action before it is carried out.
POPUP_TO_DISPLAY_TEXT
Desc. Displays a text in a modal screen
POPUP_TO_INFORM
Desc. Displays several lines of text. No OK or Cancel buttons.
POPUP_TO_CONFIRM/POPUP_TO_DISPLAY_TEXT
TH_POPUP  Good One!
Desc. Display a popup system message on a specific users screen.
POPUP_TO_CONFIRM_LOSS_OF_DATA
Desc. Create a dialog box in which you make a question whether the user wishes to perform a processing step with loss of data.
POPUP_TO_CONFIRM_STEP
Desc. Create a dialog box in which you make a question whether the user wishes to perform the step.
POPUP_TO_CONFIRM_WITH_MESSAGE
Desc. Create a dialog box in which you inform the user about a specific decision point during an action.
POPUP_TO_CONFIRM_WITH_VALUE
Desc. Create a dialog box in which you make a question whether the user wishes to perform a processing step with a particular object.
POPUP_TO_DECIDE
Desc. Provide user with several choices as radio buttons
POPUP_TO_DECIDE_WITH_MESSAGE
Desc. Create a dialog box in which you inform the user about a specific decision point via a diagnosis text.
POPUP_TO_DISPLAY_TEXT
Desc. Create a dialog box in which you display a two-line message.
POPUP_WITH_TABLE_DISPLAY
Desc. Provide a display of a table for user to select one, with the value of the table line returned when selected.
Regards.
Sumit Nene.

Similar Messages

  • Can not find delete option in IOS email Inbox ( gmail)

    Hi there,
    i can not delele emails  in IOS iphone5s inbox.
    However, the delete option is available when i go to ALL mail under gmail in my iPhone5s.
    Any advise how to delete emails directly from iPhone5s inbox ( under gMail)
    Note: the delete option is available in ipad ( under email Inbox).
    Many Thanks
    Arif

    In GMail Inbox, tap Edit (top right), mark email from the list you want then tap the Trash (bottom right)

  • How do I delete my iCloud account on my iPad when there is no 'delete' option

    My iPad iCloud account does not have a 'delete' option though my iPhone does. How canI delete the account on my iPad so that I can set u a new Apple ID?

    From what you are saying, I gather that you are the original owner of the iPad but you forgot the password to an account that no longer exists, so you cannot retrieve the password, since the email account that you used for the iCloud account no longer exists. If that is correct, you should probably contact Apple and ask for their help.
    Gohere, find the site for your country and start a dialog with Apple.
    Apple ID: Contacting Apple for help with Apple ID account security - Apple Support

  • How to specify custom SQL in polling db adapter with logical delete option

    Hi all,
    I am writing a SOA composite app using JDeveloper SOA Suite 11.1.1.4 connecting to a SQL Server db using a polling DB Adapter with the logical delete option to send data to a BPEL process.
    I have requirements which go beyond what is supported in the JDeveloper UI for DB Adapter polling options, namely:
    * update more than one column to mark each row read, and
    * specify different SQL for the logical delete operation based on whether bpel processing of the data polled was successful or not.
    A complicating factor is that the polling involves two tables. Here is my full use-case:
    1) Polling will select data derived from two tables: e.g. 'headers' and 'details' simplified for this example:
    table: headers
    hid - primary key
    name - data label
    status - 'unprocessed', 'processed', or 'error'
    processedDate - null when data is loaded, set to current datetime when row is processed
    table: details
    hid - foreign key pointed at header.hid
    attr - data attribute name
    value - value of data attribute
    2) There is a many:1 relationship between detail and header rows through the hid columns. The db adapter polling SELECT shall return results from an outer join consisting of one header row and the associated detail rows where header.status = 'unprocessed' and header.hid = details.hid. (This is supported by the Jdeveloper UI)
    3) The polled data will be sent to be processed by a bpel process:
    3.1) If the bpel processing succeeds, the logical delete (UPDATE) operation shall set header.status = 'processed', and header.processedDate = 'getdate()'.
    3.2) If bpel processing fails (e.g. hits a data error while processing the selected data) the logical delete (UPDATE) operation shall set header.status = 'failed', header.processedDate = 'getdate()', and header.errorMsg = '{some text returned from bpel}'.
    Several parts of #3 are not supported by the JDeveloper UI: updating multiple columns to mark the row processed, using getdate() to populate a value of one of those column updates, doing different update operations based on the results of the BPEL processing of the data (success or error), and using data obtained from BPEL processing as a value of those column updates (error message).
    I have found examples which describe specifying custom SQL using the polling delete option to create a template then modifying the toplink file(s) to specify custom select and update SQL to implement a logical delete. (e.g. http://dlimiter.wordpress.com/2009/11/05/advanced-logic-in-oracle-bpel-polling-database-adapter/ and http://myexperienceswithsoa.blogspot.com/2010/06/db-adapter-polling-tricks.html). But none of them match what I've got in my project, in the first case because maybe because I'm using a higher version of JDeveloper, and in the second I think because in my case two tables are involved.
    Any suggestions would be appreciated. Thanks, John

    Hi John,
    You've raised a good scenario.
    First of all let me say that the purpose of the DB polling transaction, is to have an option to initiate a process from a DB table/view and not to update multiple fields in a table (or have other complex manipulation on the table).
    So, when choose to update a field in a record, after reading it, you are "telling" the engine not to poll this record again. Sure, i guess you can find a solution/workaround for it, but I don't think this is the way....
    The question now is what to do?
    You can have another DB adapter where you can update the data after finishing the process. In that case, after reading the data (on polling transaction) - update the header.status = 'processed' for example, and after processing the selected data update the rest of the fields.
    Hope it make some sense to you.
    Arik

  • HT4528 With IOS 7 I had to move my photos and videos off to a backup to install the IOS.  When they moved back to the phone during a sync I have no way to delete them.  The trashcan stays grayed out and the usage page doesn't give me a delete option.

    I got the message that IOS 7 was ready to download.  I wish I had read the reviews on it first.  I had to move my photos and videos off the phone to free up memory space for the install.  I was still able to see the phone with a file browser and grabbed the photos and videos and stored them in a directory on my hard drive.  Meanwhile my itunes updated too.  So with my files moved and deleted from the phone I made a backup of the phone.  I installed the ios 7.  When I synced the itunes moved my backup directories back to the phone.  I can't figure out how to remove them from the phone.  Under photos they have installed themselves with the names iphone09282013 and videos directories.  When I access them I don't get a delete option.  The trashcan is greyed out.  The settings usage page no longer gives me the swipe delete function.  How do I remove these files to free up space now that I have them saved to my computer?

    Hi Eric Ferguson,
    Thanks for using Apple Support Communities.
    For troubleshooting on this, take a look at this article:
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/ts3694
    Error 13, 14, 35 and 50 (or -50)
    These errors are typically resolved by performing one or more of the steps listed below:
    Perform USB isolation troubleshooting, including trying a different USB port directly on the computer. See the advanced steps below for USB troubleshooting.
    Put a USB 2.0 hub between the device and the computer.
    Try a different USB 30-pin dock-connector cable.
    Eliminate third-party security software conflicts.
    There may be third-party software installed that modifies your default packet size in Windows by inserting one or more TcpWindowSize entries into your registry. Your default packet size being set incorrectly can cause this error. Contact the manufacturer of the software that installed the packet-size modification for assistance. Or, follow this article by Microsoft: How to reset Internet Protocol (TCP/IP) to reset the packet size back to the default for Windows.
    Connect your computer directly to your Internet source, bypassing any routers, hubs, or switches. You may need to restart your computer and modem to get online.
    Try to restore from another known-good computer and network.
    Best of luck,
    Mario

  • How do you delete a photo album off your phone that doesn't have the delete option available? and the photos section on iTunes has no photos synced?

    so I have an iPhone 4s and a while back I put a photo album on my phone, but now I cannot delete it!! The delete option isn't there to do it on my device and I have tried unchecking the synced photos button on iTunes and that doesn't work, I just want them off my phone.

    If unchecking and syncing in iTunes doesn’t work, you may have to use a third party tool like iPhone PC suite. With it, you can delete the photos and videos in Camera Roll, pictures in apps, pictures transferred from computer to iPhone and more. Use “Crtl + A” (for Windows) or “Command + A” (for Mac) to select all the pictures in an album and delete them, the album will disappear automatically.

  • I do not have a delete option for files or folders in Adobe Creative Cloud

    I do not have a delete option for files or folders in Adobe Creative Cloud
    im looking and looking....
    im stumped.....
    4 weeks now....
    kai

    HOW TO DELETE FILES or FOLDERS or Assets from Adobe Creative Cloud Brouser/Web Portal By: Kai Buskirk rev:130626
    Adobe now burried deleting or trashing unwanted iteams files or folders in the Archive section of your creative cloud brouser/web portal.
    Note!! - No longeer is there a standard TrashCan icon or simple Delete button... its burried in the archive sector: but why i ask?
    An archive is an accumulation of historical records, or the physical place they are located.[1] Archives contain primary source documents that have accumulated over the course of an individual or organization's lifetime, and are kept to show the function of that person or organization. Professional archivists and historians generally understand archives to be records that have been naturally and necessarily generated as a product of regular legal, commercial, administrative or social activities.
    In general, archives consist of records that have been selected for permanent or long-term preservation on grounds of their enduring cultural, historical, or evidentiary value. Archival records are normally unpublished and almost always unique, unlike books or magazines for which many identical copies exist. This means that archives (the places) are quite distinct from libraries with regard to their functions and organization, although archival collections can often be found within library buildings
    A person who works in archives is called an archivist. The study and practice of organizing, preserving, and providing access to information and materials in archives is called archival science. The physical place of storage is sometimes referred to as an archive repository.
    To delete files folders or individual assests in the current incarnation of adobe creative cloud brouser/web portal rev:130626
    1 - Check mark the box on left and select files or folders you would like Deleted/Trashed and move them to the ARCHIVE folder location inside your adobe creative cloud brouser/web portal....Then navigate to the ARCHIVE SECTION
    2 - Once the files or folders you have check marked are moved to the ARCHIVE folder location you can select them for Permanant Deletion (Trash)
    ps: you can also restore them......if you so choose....
    3 - in case you missed this step after selecting/checking the files or folders in the ARCHIVE folder there is a small Triangle Selector drop down that will reviel the Permanently Delete option.... clicking that is the point of no return i think..... so do not be misled my the use of the term ARCHIVE.... DELETING PERMANANTLY IS DELETING YO!
    4 - OK DONE NOW YOU GOT IT .....
    Good Luck Happy House Cleaning.....
    Wamest Blessings,
    Kai Buskirk
    Message was edited by: [email protected] rev: 130626

  • How to disable delete option or symbol in attachment control in infopath 2010

    Any have any idea how to disable the delete option or symbol near the attached file using attachment control in infopath 2010.
    I have created a custom list in sharepoint online 2013(Office 365) and customized it in  Infopath forms 2010 
    i want tht user can attach the files using attachment control but not to allow to delete other attached files.
    plzzzzzz help me out :( .

    Hello,
    As per my finding, you have to custom create event receiver to handle this situation. Use "ItemAttachmentDeleting" event to prevent user to delete attachment. Please refer below MSDN link to implement this:
    http://stackoverflow.com/questions/2023414/prevent-deletion-of-attachments-from-a-sharepoint-list-item
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How do you delete a purchased song that doesn't have a delete option when swiping?  This was a freebie when I first purchased my pad

    How do you delete a purchased song that doesn't give you the delete option when swiping?  This was a free song when I first got my pad. Now I can't delete it. I only get the play option, or to download it again.  The song is "Twinkling Lights", I think that's right.
    Any help with this would be greatly appreciated.
    Thanks!

    I think it is in the cloud, so how do I delete it?  Also, I have IOS 7.1.1

  • Oracle forms standard/default menu - Record Delete option

    Hi ,
    Oracle forms provides a standard menu with the below options.
    Action , Query , Block , Record , Help etc.
    Under each of these Menu options there are sub options.
    Eg: Under Record we have Previous , Next , Insert , Delete etc.
    Can someone please tell me how to control this menu item options for different forms.
    Eg: for 1 form i want to allow the Record - Delete option but for another form i dont want to give this option.
    How to do this ??
    Please help....
    I tried to search for the solution but couldnt get the right answer. Hope someone will help me out here.
    Regards,
    SRT

    Hello,
    The Oracle Forms documentation states:
    The Default menu is built-in to every form, and is not a separate menu module.
    You cannot change the structure of the Default menu or edit the menu items it
    displays.
    If your application requires
    unique menu functions, you must create a custom menu module and attach it to
    your form.
    If the internal default menu almost meets your needs, you can attach the
    "menudef.mmb" approximation of the default menu to the form. You can then
    rename and edit this menu.
    You can download the demo version for 10g R2 and menudefs_10g.mmb is included with the demos.
    http://download.oracle.com/otndocs/demos/Forms_Demos_10gr2.zip
    You will get menudef_10g.mmb and menudefs_10g.mmb.
    If needed check metalink note:
    Differences between menudef.mmb and menudefs.mmb menu files. [ID 1081136.1]
    Kind regards,
    Alex
    If someone's answer is helpful or correct please mark it accordingly.

  • Delete option is not showing up in my photo stream

    delet option is not showing up in my photo stream can not delete any photo how i can get delete option

    Hey zeerana,
    Thanks for the question. The following resource may assist you further:
    iCloud: How to delete photos from My Photo Stream
    http://support.apple.com/kb/HT5125
    Thanks,
    Matt M.

  • I am trying to delete a page from a pdf using Acrobat X Pro but the delete option is greyed out. Why

    I am trying to delete a page from a pdf using Acrobat X Pro but the delete option is greyed out.  Does anyone know why?

    Post your question in the forum for Adobe Acrobat.

  • I downloaded photos from a camera and cannot delete the ones I want as it displays only move and slideshow options but no trashcan or delete options

    I downloaded photos from digital camera and now I want to delete some but when I hit the photos icon it only brings up pics with the only options being move or slideshow no trashcan or delete options available

    You should be able to delete photos taken with the iPad, copied onto it via the camera connection kit, or saved from emails/websites etc directly on the iPad - either via the trashcan icon in the top right corner if viewing the photo in full screen, or via the icon of the box with the arrow coming out of it in thumbnail view.
    Photos that were synced from your computer are deleted by moving/removing/de-selecting them from where they were synced from and then re-syncing

  • How can i stop icloud from downloading all my photos onto my iphone 4s each time I sync. Then, how do I delete them from my phone, there are no delete options. I'm slowly going crazy.

    How can i stop icloud from downloading all my photos onto my iphone 4s each time I sync. Then, how do I delete them from my phone, there are no delete options. I'm slowly going crazy.

    Hi iprover,
      Let me first say that I am NO EXPERT with anything Apple and really have only started looking into this iCloud stuff a few hours ago because I'm trying to help my mom free up some space on her iCloud. But anyway, here's what I'm learning and what I THINK might be happening to you.
    Also, if any Apple support people (do they browse the forums to dish out helpful hints?) or people who probably know infinitely more than me about this stuff, please do chime in and confirm / correct my statements!
    This is what I gather.
    iCloud for Windows is set up with a local folder (let's call it "C:\Users\Administrator\Pictures\iCloud Photos\My Photo Stream") where iCloud will store photos uploaded to the Photo Stream. This will allow you to view your Photo Stream photos on your PC.
    This does not mean that this is a PC backup of your Photo Stream photos, but just a way to view your Photo Stream from your PC. That being said, the general Photo Stream rules apply: 1. No videos are on the photo-stream, and 2. Photos on the Photo Stream will be removed after ~30 days and/or after hitting the Photo Stream limit of 1000 photos.
    My guess is that the iCloud Windows App will delete photos from the local folder that are older than ~30 days and/or delete all but the most recent 1000 items if the 1000-item limit is reached.
    That is a scary thought! I really hope you did not lose all your pictures, but my guess is that the iCloud local folder is NOT meant for backup but instead is the iCloud Windows App's sandbox for updating and managing Photo Stream photos.
    All that being said, I'd say it's important to back up your photos in a separate folder not related to the iCloud local folder.

  • HT1296 I synced my phone to my computer to get all my photos from my iphone to my computer and it put ALL my pictures from my computer onto my phone... how do I get them off? theres no delete option available on the phone

    I synced my phone to my computer to get all my photos from my iphone to my computer and it put ALL my pictures from my computer onto my phone... how do I get them off? theres no delete option available on the phone

    Do you mean to import photos from iphone to computer?  Is this what your doing http://support.apple.com/kb/HT4083.
    Looks like your syncing pics on your computer to your phone.  to remove it when your phone is sync to itunes, uncheck sync in the photos tab.

  • How to set auto delete option for old messages

    Hi All,
    Can any one help me on how to set auto delete option for mails older than 15 days from my Z10.
    James Kurian

    There is no such option in BB 10.
    However, you can achieve a similar result by setting your email sync timeframe to 14 days (the closest option).
    If you are using an ActiveSync account (such as Hotmail, Outlook.com), go to Settings > Accounts > select the account. Tap advanced at the bottom of the screen. Scroll to the very bottom, tap Sync Timeframe and set to 14 days.
    If you are using an IMAP account (such as Gmail or GMX), you will have to delete, then re-add your account.  The Sync Time frame is only avaialble during setup for these accounts.  When adding, tap advanced at the bottom of the screen and set the Sync Timeframe.
    Hope this helps.

Maybe you are looking for