Delete button doesn't work in tabular form after upgrade from APEX3.2 to 4
I just upgraded the APEX from 3.2 to 4.0. However, my application is not working anymore.
First of all, my delete button in tabular form is not working. When I select a row and click the delete button, the row is not deleted, however the message showed 1 row is deleted.
Could you anybody tell me how can I debug this problem?
Thanks a lot !
I had the same problem. I first tried the solution above, but that didn't work. I also had a derived column for a custom popup and some display only columns. I removed the derived column and took out the display columns from my query. I then made sure my column order matched the source query. I applied changes and the delete button worked. FYI. I found out by some testing that it was actually trying to delete from the table, but with the wrong id. My first editable field was qty so if the qty was equal to 2 it then tried to delete from the table where pk=2(I had to restore that record). I believe it is related to the bug above. Backup your app first. I always do before I mess with the tabular forms.
Jeff
Similar Messages
-
Table delete button doesn't work with Virtual Forms
I applied all of Winston Prakash's tips to my project table (http://blogs.sun.com/winston/category/Creator), but my table is not the only component in the page, so I had to use Virtual forms.
When I add the "Delete" button, i have to put it on a Virtual Form. I followed the steps on the multi selection table and the "Adding a button panel to the table component header" post, but when I select a row, the JavaScript works well (the row changes to yellow)... but the action code gets a :
getTableRowGroup1().getSelectedRowsCount()==0
and getTableRowGroup1().getSelectedRowKeys().length==0.
I tried almost everything with the forms... I don't know what I missed...It works for me. Is it the Delete button in the Toolbar that doesn't work, or the Delete key in the keyboard, or what? Doesn't any other way of deleting a message work either (e.g. Edit > Delete)?
-
WLAN Sync doesn't works on my iPhone after upgrade to iOS 5 and using iCloud.......who can help me ???
Hi - have you had enjoy joy resolving this? I have just updated to 5.1 and I hoped it would fix things but sadly not...
-
I have 2 accounts in my Inbox. When the Inbox is highlighted in the Source list ( as opposed to highlighting one of the 2 .Mac accounts) the Delete button works fine when highlighting a message that will be moved to the Trash. However, when an individual account is highlighted and I want to move a messsage to the Trash, the Delete button won't work. Any thoughts ?
It works for me. Is it the Delete button in the Toolbar that doesn't work, or the Delete key in the keyboard, or what? Doesn't any other way of deleting a message work either (e.g. Edit > Delete)?
-
TS2771 What should I do about the backspace key/delete button doesn't work?
The backspace/delete key doesn't work on my son's ipod touch. What can I do?
A reset may help. Tap and hold the Home button and the On/Off buttons for approximately 10-15 seconds, until the Apple logo reappears. When the logo appears, release both buttons.
No content is affected by this procedure. -
The back button doesn't work for some websites after downloading version 4.0
I recently downloaded firefox version 4.0. Upon downloading it I had a few issues occur with my browser. One issue was that all of my bookmarks that were on my toolbar disappeared. Also, when I visit a website and am browsing through it, if I want to go back to a previous page the back button doesn't work properly. Instead of sending me back to the previous page I was viewing it sends me all the way back to the home page or wherever I started on that website. This problem basically affects all websites that I visit. I would like to uninstall the new version of firefox and just go back to my old one if that's possible? Thanks
To respond to your comments first of all, the Bookmarks toolbar has been removed in Firefox 4.0
The back button should work as it normally does, but you can also right click it and select it from the list.
To revert to a previous version of Firefox, download v3.6.16 from here: [http://www.mozilla.com/en-US/firefox/all-older.html Download Firefox v3.6.16]
Then uninstall Mozilla Firefox 4.0 choosing to keep your bookmarks, customizations etc.
Finally run the Firefox installation file you downloaded earlier. -
Universal Worklist UWL not working in NW04s SPS9 after upgrade from NW04
Hello all,
this is just a hint in case anyone has the same problem with the UWL.
It happened to me in 2 cases, that in a Portal 7 SPS9 the UWL only showed a blank page after upgrade from NW04. In NW04 the UWL worked.
The reason for it was something like a corrupt deployment (but there were no according error messages in any log files). The SAP Support told me to redeploy the UWLJWF*.sca according to note 895523, that worked.
You can check whether the deployment is the reason of a non-working UWL setting the property "Launch Web Dynpro UI" to 'no'. Then the old HTMLB sources (that should work) are used (But it is not recommended to use the old sources anymore)
Kind regards
Andreas.. just a hint ..
-
Page level process doesn't works for tabular form.....
I am developing an application on inventory of an chemical factory.......
I have an master-detail form where detail table is in tabular form.......
I have an LOCATION1 AND QUANTITY1 COLUMN in detail table..........
I have location say...LT01A02 AND limit of each location to hold an quantity is .....say 1000.
I wrote an process for these but it doesn't work.......
declare
x NUMBER(6);
z number(6);
begin
selecT NVL(SUM(QUANTITY1),0) INTO x from RM_LOCATION1 where LOCATION1 = :P3_LOCATION1;
z := x;
if :P3_LOCATION1 LIKE'%1)' or :P3_LOCATION1 LIKE'%2)' then
if z > 1200 then
raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 1ST OR 2ND PALLETE ,WHICH CAN HAVE MAXIMUM 1200KG,PLEASE CHECK IT PHYSICALLY');
end if;
elsif :P3_LOCATION1 LIKE'%3)' or :P3_LOCATION1 LIKE'%4)' then
if z > 800 then
raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 3RD OR 4TH PALLETE ,WHICH CAN HAVE MAXIMUM 800KG,PLEASE CHECK IT PHYSICALLY');
end if;
elsif :P3_LOCATION1 LIKE'%5)' or :P3_LOCATION1 LIKE'%6)' then
if z > 750 then
raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 5TH OR 6TH PALLETE ,WHICH CAN HAVE MAXIMUM 750KG,PLEASE CHECK IT PHYSICALLY');
end if;
elsif :P3_LOCATION1 LIKE'%7)' or :P3_LOCATION1 LIKE'%8)' OR :P3_LOCATION1 LIKE'%9)' or :P3_LOCATION1 LIKE'%10)' OR :P3_LOCATION1 LIKE'%11)' or :P3_LOCATION1 LIKE'%12)' then
if z > 600 then
raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 7TH OR 8TH OR HIGHER PALLETE ,WHICH CAN HAVE MAXIMUM 600KG,PLEASE CHECK IT PHYSICALLY');
end if;
end if;
end;
I HAVE SEEN THAT APEX DOESN'T PICKS VALUE CALLED... _:P3_LOCATION1_*
NOW WHAT TO DO ,CAN ANY ONE HELP ME....HOW TO RUN THESE PROCESS......Hi User XY,
tabular forms do not have Page Items. The values you entered in the tabular form are stored in arrays like APEX_APPLICATION.g_f01 to g_f50.
Here are some links you might find helpful: http://www.talkapex.com/2008/07/manually-creating-tabular-form.html
http://download.oracle.com/docs/cd/E23903_01/doc/doc.41/e21676/apex_app.htm#CHDICJDA
brgds,
Peter
Blog: http://www.oracle-and-apex.com
ApexLib: http://apexlib.oracleapex.info
BuilderPlugin: http://builderplugin.oracleapex.info
Work: http://www.click-click.at and http://www.wirsindapex.at -
Delete button doesn't work in deleting files in Windows Explorer
Anyone is facing this problem? Delete button just works when deleting the letter we are typiing. Anyone can share if you are facing this problem and how to fix? thanks a lot.
Windows deletion is activated from cursor on object right click options where you see rename, delete etc.
You can delete multiple objects in Explorer's objects/list by putting cursor over 1st object, pressing the shift key and then sliding cursor down or up list to select multiply highlit objects. You right click on the group and can delete from dropdown. This can be used also to multiply rename pictures as well which is useful. -
The "P" and "Delete" button doesn't work
While text messaging or emailing the letter P nor the delete button work. Any suggestion?
try your standard troubleshooting steps:
power on/off
reset
restore
if those dont work, would probably be a good time to contact apple to get it looked at (in store, if you are near one, or by phone). -
Help! My "Delete" button doesn't work!
About a week ago about a tablespoon of a drink landed on my keyboard. I immediately did everything that you're supposed to do. I dried off the keyboard, turned off the MacBook and removed the battery. The next day when I booted the computer back up, everything but my delete button worked.
I've tried everything I can think of to get a delete button. I've downloaded several "keyboard reassignment" programs, including UControl and Ukelele. I found a program called "fKeys", but that comes with all sorts of crazy warning that it could make your computer crash.
Any suggestions? I would really appreciate any help that anyone can give.You could try restoring the iPod but it may be a hardware fault and need service.
How to restore the iPod to factory settings. -
TS1702 Photo delete button doesn't work
When selecting photos to delete the red delete buttons ineffective
The links below have instructions for deleting photos.
iOS and iPod: Syncing photos using iTunes
http://support.apple.com/kb/HT4236
iPad Tip: How to Delete Photos from Your iPad in the Photos App
http://ipadacademy.com/2011/08/ipad-tip-how-to-delete-photos-from-your-ipad-in-t he-photos-app
Another Way to Quickly Delete Photos from Your iPad (Mac Only)
http://ipadacademy.com/2011/09/another-way-to-quickly-delete-photos-from-your-ip ad-mac-only
How to Delete Photos from iPad
http://www.wondershare.com/apple-idevice/how-to-delete-photos-from-ipad.html
iPhoto for iOS (iPad): Delete photos from iPhoto
http://support.apple.com/kb/ph3137
How to: Batch Delete Photos on the iPad
http://www.lifeisaprayer.com/blog/2010/how-batch-delete-photos-ipad
(With iOS 5.1, use 2 fingers)
How to Delete Photos from iCloud’s Photo Stream
http://www.cultofmac.com/124235/how-to-delete-photos-from-iclouds-photo-stream/
Cheers, Tom -
TS3274 delete button doesn't work
I have been trying to delete multiple photos that I imported from my Macbook. It will let me select the photos, but when I touch the red delete button it does nothing. What should I do?
Synced photos cannot be deleted on the iPad. Only photos taken with the iPad and transferred with the Camera Connection Kit can be deleted.
You need to delete the photos in iTunes and sync again. -
IPod doesn't work on the iPhone after upgrading to ios4
Well, as the subject text says, my iPod does not longer work after upgrading.
I can open it, and after two seconds it "falls" out. It worked a little longer earlier today, but when I downloaded a podcast it didn't appear in the podcast folder.
I have restarted the phone several times and it still doesn't workTo take the magic out of it, it seems that the upgrade had trouble with transferring data. Not only did my ipod not work, but I also lost my ringtones. I saw a different post that suggested to go back to itunes and to uncheck the sync ringtones box, then sync, then re-check it and sync again. That worked. I tried the same thing for my music. It worked. Unchecking the sync music box will erase the music from your phone, and then when you re-sync, it will load the music all over again. At least it worked.
Message was edited by: Bankrupt -
After upgrading to Firefox 3.6.12 all functionality appeared to be intact. Then after a few days it lost the ability to "page forward" or to "page back" and are "grayed-out". Additionally, the Main menu items such as File, Edit, View, History, Bookmarks, Tools & Help are also grayed-out and non-functioning.
Also, the "Search Window" does not search, Web Searches need to be performed from within the URL window instead, for some crazy reason. If the URL window is blank when I enter a search into the actual search window the following appears in the URL window, "Search Bookmarks and History", which makes no sense.
I have noticed similar complaints in this Forum in the past but I have not seen any posted resolution to these issues. Is there a solution?Create a new profile as a test to check if your current profile is causing the problems.<br />
See [[Basic Troubleshooting#Make_a_new_profile|Basic Troubleshooting: Make a new profile]]
There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins"
If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)
See http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
Maybe you are looking for
-
What are the CRM Trasaction data Data Sources and Data load Procedure
Hi BI Gurus, Does anybody provide the CRM Transaction data DataSources names and Load procedure into BI7.0 I know the master Data load procedure from CRM to BI7.0. if you provide Step-by-Step documents it is more help. Thanks in Advance, Venkat
-
How to display keywords of a picture ?
I am a complete beginner with LR. I am trying to work with keywords. I am able to assign various keywords to a picture. I know that made several mistakes when assigning keywords. When I select a picture to control which keywords have been assigned I
-
Can anybody explain the process of " material under loan"
hi, good evening sap gurus, can any body explain the process of "material under loan". and the how it works. regards, balaji.t 09990019711
-
every time i want to buy something it tells me could not be completed for assistance contact itunes support help me plz????
-
After latest update for my MSI twin frozr gtx760, when i start MSI gaming app and turn gaming mode i get blue screen. I rly don't know what to do. Anyone else got some bad experience with it?