Save changes button not working in my tabular form

Hello,
I have created a tabular form with all the button like cancel,delete,save,add row and their processes by default
when i tried to run the report, the save is not working (whenever i tried to make some changes and update the form) like it giving me an error saying that
" Error in mru internal routine: ORA-20001: no data found in tabular form "
I looked at the process MRU, it is OKAY.
I tried to delete it(the MRU process) and created a new MRU process then also the SAVE button is not working, like it gives the same error.
" Error in mru internal routine: ORA-20001: no data found in tabular form "
Can anyone help me out with this issue...!
what might be the problem?

There could be two reasons for this error:
1. in your MRU Process, you didn't type the proper primary key column name
2. your tabular form is missing the referenced collumn
Denes Kubicek
http://deneskubicek.blogspot.com/
http://www.opal-consulting.de/training
http://apex.oracle.com/pls/otn/f?p=31517:1
------------------------------------------------------------------------------

Similar Messages

  • Add row button is not working in manual tabular form

    Hi,
    I have created a tabular form by using collections. In the same page there is a wizard tabular form also.
    Here my problem is whenever i giving request to the add row button its showing nothing. there is no any new row got added.
    IF :REQUEST ='ADD'
    THEN
    apex_collection.add_member(
    p_collection_name => l_collection_name
    END IF;
    END;
    Thanks.

    Hi,
    Thanks for ur reply.
    My problem got solved after deleting the tabular form wizard from the page then add row button is working.
    But i think its not the solution.
    Thanks.

  • Trouble saving the image, save as button not working

    i'm having trouble in saving the image in PNG format, it seems that the "save as" button is not working properly, what should i do?

    Save from what program? On what system? In any case, ask in the product forum of whatever program you are referring to...
    Mylenium

  • Apply changes button not working as expected

    Hi
    I have a page, this page has some fields and a drop-down list where it has a projectname as the values and when I change a value in the drop-down list and click on "Apply Changes" button it does update the table and the changes can be viewed on the page ............. but when I have created a copy of this same page and changed the select statement of the drop-down list and in order to change the year from the drop-down list and click on apply changes then it does not update the table or changes are not reflected on the page.... am I doing soemthing wrong somewhere , but not sure where !
    Can anyone know what could be the reason ....?
    thanks

    Hi Nancy,
    That could be the case, but I tried it multiple times during the day and it was not working. I think I would have notice it if I "missclicked" it like 10 times in a row. I normally use this option more than once a day and it works. But If it happen again, I'll pay attention to that.
    Thanks!

  • Java script is not working in custom tabular form

    hai all,
    i have changed my built in tabular form to custom tabular form.my java script is coding working fine in built in tabular form . But in my custom tabular form java script is not working ,since it is created as standard report(Display As).
    pls help me.
    with thanks and regards
    sivakumar.G

    Is the appostrophe function test(pthis) *'* present in your javascript code...
    If not can you post the same in apex.oracle.com and give the credential so that I can the why its not wroking
    Regards,
    Shijesh

  • Add row not working when creating tabular form manually

    Hi friends,
    I am trying to create a manual tabular form( with the help of Denes's example). When adding a new row by clicking
    the add button new row is added and i can enter data in that row. This works fine when there is only one page.
    Now i have 30 rows in 2 pages. Now when i tried to add a new row by pressing the add button nothing is happening.
    In my add button i have given redirect to the same page and request as ADD and the report query is as below.
    SELECT apex_item.checkbox (1,
                               EQUIPMENT_ID,
                               'onclick="highlight_row(this,' || ROWNUM || ')"',
                               NULL,
                               'f01_' || LPAD (ROWNUM, 4, '0')
                              )Tick,
       EQUIPMENT_ID,
              apex_item.hidden (2,EQUIPMENT_ID)
    ||apex_item.text (3,
                              EQUIPMENT_ROLE,
                              80,
                              100,
                              'style="width:170px"',
                              'f03_' || LPAD (ROWNUM, 4, '0')
                             )|| apex_item.hidden (4, wwv_flow_item.md5(EQUIPMENT_ID,EQUIPMENT_ROLE,EQUIPMENT_VERSION,                       
                             SNMP_PORT,RO_COMMUNITY_STRING ,RW_COMMUNITY_STRING,COMMISIONED_STATE,CUSTOMER_ID,
                             SITE_ID
                             ))EQUIPMENT_ROLE,
    apex_item.text (5,
                             EQUIPMENT_VERSION,
                              80,
                              100,
                              'style="width:170px"',
                              'f05_' || LPAD (ROWNUM, 4, '0')
                             ) EQUIPMENT_VERSION,
    apex_item.text (6,
                             SNMP_PORT,
                              80,
                              100,
                              'style="width:170px"',
                              'f06_' || LPAD (ROWNUM, 4, '0')
                             ) SNMP_PORT,
    apex_item.text (7,
                             RO_COMMUNITY_STRING,
                              80,
                              100,
                              'style="width:170px"',
                              'f07_' || LPAD (ROWNUM, 4, '0')
                             ) RO_COMMUNITY_STRING,
    apex_item.text (8,
                             RW_COMMUNITY_STRING,
                              80,
                              100,
                              'style="width:170px" ',
                              'f08_' || LPAD (ROWNUM, 4, '0')
                             ) RW_COMMUNITY_STRING,
    apex_item.text (9,
                             COMMISIONED_STATE,
                              80,
                              100,
                              'style="width:170px" ',
                              'f09_' || LPAD (ROWNUM, 4, '0')
                             ) COMMISIONED_STATE,
    apex_item.text (10,
                             CUSTOMER_ID,
                              80,
                              100,
                              'style="width:170px" ',
                              'f10_' || LPAD (ROWNUM, 4, '0')
                             ) CUSTOMER_ID,
    apex_item.text (11,
                             SITE_ID,
                              80,
                              100,
                              'style="width:170px"',
                              'f11_' || LPAD (ROWNUM, 4, '0')
                             ) SITE_ID
          FROM EQUIPMENTS_FEAT_MVIEW
          UNION ALL
          SELECT     apex_item.checkbox
                                    (1,
                                     NULL,
                                     'onclick="highlight_row(this,' || ROWNUM || ')"',
                                     NULL,
                                     'f1_' || LPAD (9900 + LEVEL, 4, '0')
                                    ) delete_checkbox,
                     NULL,
                        apex_item.hidden (2, NULL)
                     ||apex_item.text (3,
                                        NULL,
                                        80,
                                        100,
                                        'style="width:170px"',
                                        'f3_' || LPAD (9900 + LEVEL, 4, '0')
                                 ) || apex_item.hidden (4, NULL)EQUIPMENT_ROLE ,
                      apex_item.text (5,
                                 NULL,
                                 80,
                                 100,
                                 'style="width:170px"',
                                 'f05_' || LPAD (9900 + LEVEL, 4, '0')
                                 )EQUIPMENT_VERSION,
                      apex_item.text (6,
                                  NULL,
                                  80,
                                  100,
                                  'style="width:170px"',
                                  'f06_' || LPAD (9900 + LEVEL, 4, '0')
                                 )SNMP_PORT,
                     apex_item.text (7,
                                NULL,
                               80,
                                100,
                                'style="width:170px"',
                               'f07_' || LPAD (9900 + LEVEL, 4, '0')
                                 ) RO_COMMUNITY_STRING,
                      apex_item.text (8,
                                  NULL,
                                  80,
                                  100,
                                  'style="width:170px"',
                                  'f08_' || LPAD (9900 + LEVEL, 4, '0')
                                 )RW_COMMUNITY_STRING,
                     apex_item.text (9,
                                  NULL,
                                  80,
                                  100,
                                  'style="width:170px"',
                                  'f09_' || LPAD (9900 + LEVEL, 4, '0')
                                 )COMMISIONED_STATE,
                       apex_item.text (10,
                                  NULL,
                                  80,
                                  100,
                                  'style="width:170px"',
                                  'f10_' || LPAD (9900 + LEVEL, 4, '0')
                                 )CUSTOMER_ID,         
                     apex_item.text (11,
                                  NULL,
                                  80,
                                  100,
                                  'style="width:170px"',
                                  'f11_' || LPAD (9900 + LEVEL, 4, '0')
                                 )SITE_ID
                         FROM DUAL
                        WHERE :request = 'ADD'
    CONNECT BY LEVEL <= 1How can i solve this problem . Please help,
    Thanks,
    Jeev

    Hi,
    The blank row that you get from your second select statement would appear at the end of the report. Put that statement first and it should be at the top of the first page
    Andy

  • Save as button not working in Reader 9.3 and windows 7

    Hi, I have a win7 Optiplex 780 with Acrobat Reader 9.3 installed.  While in a web application, when I click the save as icon to save the pdf to disk, nothing happens.  The save as dialogue box does not come up.  The print button works, and the email button works.   I have tried turning protected mode off and reinstalling Acrobat Reader, but that did not help.
    Does anyone have a fix for this issue?
    Thanks, Deb

    That problem surfaced since Win7 early builds, confirmed in Beta and Release Candidate and also happens on the latest build 7260. No problem with the update feature, though. This morning Adobe updater installed version 9.1.2 without hassle.
    Let's wait to know is someone here may help us in fixig this issue.
    Thanks Alex

  • Button not working to change to home page help please

    Need help iPhone 4 button not working to go back to home page can I reset

    sounds like it's time to visit Apple for an out of warranty replacement.

  • Save functionality is not working in adobe reader

    hello,
    i am designing layout for offline adobe forms in Adobe Live Cycle Designer ES version 8.1 and having adobe reader version 8.
    i save form on PC. When i open  it shows me save button after doing changes in form m not able to save it as save functionality is not working.....Kindly suggest me any solution..
    Edited by: Gopal Khandelwal on Nov 22, 2011 12:21 PM

    Moved to LiveCycle Designer

  • Buttons not working correctly/consistently

    I am working with a template that has 5 buttons on each slide Back, Next, Help, Pause, and Play
    The Help button is set up to Jump to Slide with the correct target, but for some reason it doesn't work. In fact, sometimes when I click Pause and then click the Help, it actually resumes instead of  jumping to the slide.
    This is pretty basic stuff, so I am at a complete loss. The only thing I am wondering about is whether the fact that the lesson was originally done in Captivate 5 could be causing an issue.
    Here's the way the action is set up.

    I have had issues with buttons not working properly in Captivate 4. When it happens, it is completely random and not consistent. To get my buttons to work properly, I usually just exit out, and go back to the project and then they work.
    Sometimes it takes me going back the next day for them to work. There's no rhyme or reason to it. The settings are all correct. I don't change a thing. I save, and go back to the project and the button is working all of a sudden. At least that has been my experience the last couple of months.

  • Address book won't save changes to note field

    Like the header says. Address book won't save changes to note field. There's another thread with the same header:  https://discussions.apple.com/thread/2591053?threadID=2591053  But it's archived so I had to post this new one.
    If I made a change in any non-note field however, it would stay.
    Note: the notes field can be edited with actually having to go into official "edit" mode. Does this make it more prone to corruption? Why would Apple make the notes field NOT need that extra step of protection. Do they think my notes aren't as important?  How would they know?
    I fixed this one card with a bandaid solution by exporting it and reimporting it.  But I guess I need to do that with all 2,000 of my contacts now. It was mentioned on theother thread that somebody made an address book backup and then deleted every contact in the address book and imported them fresh from the backup and that worked.
    The underlyilng issue is still not solved though. How could this happpen in the first place, and how do I know what other contacts haven't held lthe changes I thought I made?

    Hi,
    Using the Note field
    You can add notes to any contact in Address Book. This makes it easy to keep track of details about a person in your address book.
    Select the person in the Name column in Address Book, then click the Note field in the card.
    The Note field can be edited at any time, even if the card is not in edit mode.
    You could make a dedicated field that requires the edit button...
    Using custom labels
    You can change the label that appears next to a piece of information on a contact's card. For example, you might want to change "work" to "support" next to a phone number.
    Select the contact that you want to change.
    Click the Edit button at the bottom of the window.
    Click the label next to a field, then choose Custom from the pop-up menu.
    Enter a new label for the field.
    The new custom label appears on this contact's card only.
    If you want to change a specific label on all cards in your Address Book, edit the card template. Choose Address Book > Preferences and click Template. The Template pane also allows you to add other types of fields on contact cards, such as a nickname, job title, birthday, anniversary, and URL. Use the Add Field menu.

  • IPod touch 5th gen. Home button stuck and power button not working! Please help!

    I have an iPod 5th Generation and the home button is jammed down! It felt sticky earlier but now it's stuck down. I used it when the home button wasn't working and had to use my notifications to change from app to app (as I didn't know about assistive touch). I turned it off, but now the power button is no longer responsive! The button isn't stuck, but it doesn't work anymore. It was working fine before, but now it won't respond. Please help!

    Try:
    http://snapguide.com/guides/calibrate-your-home-button/?utm_expid=69945963-15
    fix for Home button
    iPhone Home Button Not Working or Unresponsive? Try This Fix
    - If you have iOS 5 and later you can turn on Assistive Touch it add the Home and other buttons to the iPods screen. Settings>General>Accessibility>Assistive Touch
    - If not under warranty Apple will exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    You can do it an an Apple store by:
    Apple Retail Store - Genius Bar
    or sent it in to Apple. See:
    Apple - Support - iPod - Service FAQ
    - There are third-party places like the following that will repair the Home button. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • Music buttons not working in lock screen on my iPhone 4 after iOS7 update.

    After I updated my iPhone 4 to iOS7, the music buttons like PLAY, REWIND and FORWARD are not working in the locked screen as well as on swipe up menu. Any resolution please?

    hi there
    i had a problem with my wifes iphone 4s, today morning while travelling to work i changed a setting on repeat option and changed it to repeat artist, it was fine until when i finish my work and on my way back i found songs are not playing anymore, lots of stop signs next to my song list, play/pause button not working, album arkwork keep moving from one to another on its own, so after i reach home i try to do some research on Apple support communities, try to soft reset my phone closing all the apps on background didnt work, also note that control centre music player was not working as well. none of the solutions worked. after trying for two hours i found out that the trouble is in repeat options , so i changed it from repeat artist to repeat off. and the music start playing as usual, but i still have those stop buttons next to the songs i tried to play earlier. At least it fixed temporarily. please also note that in the meantime i tried to sync my phone with the pc and suddenly its start syncing all the songs again assuming there were no songs on my iphone.  so guys i think soft reset might not help all the time but try to remember what settings you changed recently and change it back to the original option, not sure ,but it might help.

  • Lumia 720 volume down button not working

    Hey buddies, I'm using lumia 720 and often i get this volume down button not working.
    I changed the button by giving it in nokia care for 3times and still im facing the same problem.
    And also noticed that this is happening to most of the lumia 720's.
    so kindly look into it and rectify the problem as soon as possible.
    If there is any solution for this, kindly reply me.
    Thanks in advance...!

    Your only solution would be to return the unit back to nokia care for inspection,if there is a recurring issue with this im sure nokia would be aware of it now,and it could be a slight manufacturing defect which again would be looked into.
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Buttons not working, all of a sudden?

    Nothing has changed, no editing was done, and all of a sudden, buttons not working.  I trued exporting from Flash again, with the same pblish settings.  Bit Action Script seems to give me a message now saying it wont export as a button.  Tried AS 2.0 and 3.0, but i made original files in 3.0
    thoughts???
    thank you!

    Either convert that symbol to a button symbol so that you can use the code you showed, or assign it an instance name and place the following code in the timeline...
    yourMCName.onRelease = function(){
         getURL("page2.html","_self","GET");
    Where yourMCName is whatever instance name you assign

Maybe you are looking for

  • PL/SQL w/ Java to run OS batch file crashes Oracle

    I followed instructions from "Ask Tom" on using PL/SQL with Java to execute an OS batch file. For testing purposes, my batch file does nothing more than display the date and time from the OS. However, when I run the PL/SQL that executes this simple b

  • Excel with Labview 6?

    I'm trying to get Excel '97 to work with Labview 6.02, but I'm always receiving error message: -2147319784: "old format or invalid type library". I modified windows registry as told in LV knowledgebase. After that I could see Excel components in Acti

  • Need urgent help on JTable and cell

    Hi, I've got problem in validating the cell in Table. If user enters data in a cell i would like to validate the data in cell and if it is wrong i would like to give a dialog and keep the cursor in the same cell. So that i can restrict the user to en

  • Help with resizing document

    Hi guys, I am trying to resize my current document.  It is currently 1000px and I want to make it 1300px but when I do that, all the elements that is near the top becomes off the screen to the top...Why is that?  I only want the document to be longer

  • Regarding Java Mapping

    Hi, I am new to java mapping. I just want to know what files I have to upload in IMPORTED ARCHIVES in Integration Repository to run the mapping properly. Thanks In Advance. Yaseen.