Crossword puzzle; reload saved data problem

This might have been answered before but my searches here didn't turn up anything which worked when I tried them.
I've a crossword puzzle which has a saved function that I can't get to work properly. Right now I have the puzzle without the save button. The developer said I need to write some php code that will reload the applet with the saved data, along with some html to get the current state of the puzzle. He provided an example html code which I've adapted as seen below.
Part of the problem is the crossword html running the applet is run from a web page within my vb forum board and not located in any folder on my site. This in itself may make saving any data from the crossword impossible, but I don't know.
The html I've written, which I'll add later to the existing puzzle html code, is:
<param name="DATAFILE" value="https://my site.com/forums/crswrds/l.jpz">
          <param name="SUBMITMETHOD" value="POST">
          <param name="SUBMIT" value="https://my site .com/submit.php?data=%SUBMIT%&time=%TIME%&url=https://my site.com&username=sample&puzzle_title=Crossword">
          <param name="SAVE" value="https://my site.com/forums/view.php?pg=crswrdpuz?&progress=%PROGRESS%">
          <param name="PROGRESS" value="">
The problem is the developer said I should "write a php script to accept the %PROGRESS% string as a GET parameter, then to re-load the applet in the saved state provide it in the PROGRESS applet parameter."
I was hoping someone here had a way to reload the applet with the saved data from the $PROGRESS% string as I haven't had any luck searching these forums.
Puzzle, without save, is here , which is open to the public for the next couple of days.
Edited by: nanaimobar on Apr 21, 2008 1:25 PM

I'm not applet programmer, so this may not be the best way, but I'd look into serialization. It seems like it would be easy enough to save the "model" object to a file and then send that back and forth from the applet to the server. You could request the serialized file from the webserver, and then reload your model from that file. After that you just have to update your view, and you're set.

Similar Messages

  • Diadem View does not reload saved data correctly

    I am not sure what is going on but my data which is loaded contains multiple groups with the same channel names.  This data is from a repetitive test so the data in all the files is similar.  I create tabs in view for each data group and plot five charts for each data set.  Everything looks good and I save the .TDV and the .TDM files.  The problem comes when I try to reload the .TDV file.  The data plots are all wrong with the exception of a few.  They also look to be the same plots carried through all of the tabs.  Not sure what is going on here but would appreciate a little help.

    Hi Team Player,
    We must try to reproduce the problem to find out what happens. Please,
    send me the *.TDV file as well as the *.TDM/*.TDX file and a
    description of the steps you have done. If your data are confidential
    you can send it to my email address, directly ([email protected]).
    Which exact DIAdem revision do you use (DIAdem menu -> Help -> About -> Versions)?
    Greetings
    Walter

  • Saving data problem

    we are using ISR in combination with adobe forms. we managed to get the data elements dynamic. But now I want to get the data fields end values and safe them in SAP.
    the code i am using is:
    try {
         IPublicISR_Form.IMappedFieldsElement field =
         wdContext.createMappedFieldsElement();
         Y_Tf_Change_Isr_Input input1 =
         new Y_Tf_Change_Isr_Input();
         input1.setNotification_No("000600001055");
         input1.execute();
         Iterator it = input1.getResult().iterator();
         while (it.hasNext()) {
         Yisr_Special_Data_Get_Output output = (Yisr_Special_Data_Get_Output)it.next();
         Iterator records = output.getSpecial_Data().iterator();
         while(records.hasNext()) {
         Qisrsspecial_Param record = (Qisrsspecial_Param )records.next();
         String fieldname = record.getFieldname();
         String fieldvalue = record.getFieldvalue();
         try {
         Method method =
         fieldvalue.getClass().getMethod(
         "get" + fieldvalue,
         new Class[] {});
         record.setFieldvalue((String)method.invoke(fieldvalue, new Object[] {}));
         } catch (SecurityException e) {
         logger.catching(e);
         } catch (IllegalArgumentException e) {
         logger.catching(e);
         } catch (NoSuchMethodException e) {
         logger.catching(e);
         } catch (IllegalAccessException e) {
         logger.catching(e);
         } catch (InvocationTargetException e) {
         logger.catching(e);
         this.wdContext.nodeMappedFields().bind(field);
         } catch (Exception e) {
         logger.catching(e);
        //@@end

    try {
                             AbstractList inputRecords = new Qisrsspecial_Param_List();
                             IPublicProcess_Status_Cust.IMappedFieldsElement mappedFieldsElement =
                                  wdContext.currentMappedFieldsElement();
                             Yisr_Special_Data_Get_Input inputIsr =
                                  new Yisr_Special_Data_Get_Input();
                             String isrNr =
                                  wdContext.currentYtf_Process_LogProsElement().getIsr_Number();
                             inputIsr.setNotification_No(isrNr);
                             inputIsr.setDo_Not_Read_Linked(true);
                             inputIsr.execute();
                             Iterator it = inputIsr.getResult().iterator();
                             while (it.hasNext()) {
                                  Yisr_Special_Data_Get_Output output =
                                       (Yisr_Special_Data_Get_Output) it.next();
                                  Iterator fieldNameRecords = output.getSpecial_Data().iterator();
                                  while (fieldNameRecords.hasNext()) {
                                       try {
                                            Qisrsspecial_Param fieldNameRecord =
                                                 (Qisrsspecial_Param) fieldNameRecords .next();;
                                            String fieldName = fieldNameRecord.getFieldname();
                                            //     retrieve value from Abobe form
                                            Method method = mappedFieldsElement.getClass().getMethod("get" + fieldName, new Class[] {});
                                            String fieldValue = (String)method.invoke(mappedFieldsElement, new Object[] {});
                                            Qisrsspecial_Param inputRecord = new Qisrsspecial_Param();
                                            inputRecord.setFieldname(fieldName);
                                            inputRecord.setFieldvalue(fieldValue);
                                            inputRecords.add(inputRecord);
                                       } catch (SecurityException e) {
                                            logger.catching(e);
                                       } catch (IllegalArgumentException e) {
                                            logger.catching(e);
                                       } catch (NoSuchMethodException e) {
                                            logger.catching(e);
                                       } catch (IllegalAccessException e) {
                                            logger.catching(e);
                                       } catch (InvocationTargetException e) {
                                            logger.catching(e);
                             Y_Tf_Change_Isr_Input inputQuery = new Y_Tf_Change_Isr_Input();
                             inputQuery.setNotification_No(isrNr);
                             inputQuery.setSpecial_Data(inputRecords);
                             inputQuery.execute();
                        } catch (WDDynamicRFCExecuteException e) {
                             //     TODO write proper error handling code
                             logger.catching(e);

  • HT201210 i lost data messages / photos and other saved data worth 2 months cause there was some problem when i was updating ios7 how can i recover that?

    i lost data worth 2 months when i was updating the ios7 software on my iphone 5 .....
    unfortunatley i forgot to perform a backup in that time span as well....
    is there a way of recovering txt msgs photos and other saved data from a particular span? without backups?

    Without a backup there is no way to recover data.
    Seems you've learned a valuable lesson about how important it is do regularly backup the device.

  • Flash changes apostrophe to question mark when saving data?

    Hi,
    Ok these are the steps I take to create the problem within my Flash application.
    1. Copy and paste a string from a word.doc which contains an apostrophe
    2. I then save this data to a XML doc.
    3. reload that XML data, now the apostrophe has changed to a square box
    4. I then resave this data
    5. I reload this data and now, the square box has changed to a question mark.
    My question is, how do I stop this from happening other than not copying from a word doc?
    Is there something extra I have to do when parsing the string into its saved format.
    Currently what happens is:
    1. Pass the string from the input box to an object
    localTextObject.textData = myInput.text
    2. The object is then parsed through a custom Object to XML parser
    for example:
    textNode.text = "";
    textNode.text.appendChild( localTextObject.textData );
    3. And then an XML file is saved local with this data in it.
    Does Flash do something wonderful along the way as so by the third time around we have gone from a speech mark to a question mark?
    Any help with solving this problem would be very much appreciated.
    Thanks

    Apostrophes from word aren't part of the normal ASCII character set. They've been mucking up plain text forever...
    You can use a RegEx to strip them out, or just change them to regular apostrophes. Something like so should work:
    reg = new RegExp("“", "gi");
    m = m.replace(reg, "");

  • Error while saving date value in Java dictionary

    Hello Everybody,
    I got following error while saving date value in one of the fields of the Java table.
    Internal error occured in submit request: Error in method updateRequestContact : The object of type java.sql.Date with the value '2005-12-04 08:00:00.0' assigned to host variable 9 is not normalized. It must not contain time components in the time zone running the virtual machine.
    I can't find why it is taking time value in the date object.
    This value is coming from the RFC as a date value, and I am saving this value in Java dictionary table.
    Same code for this was working fine earlier. But, now suddenly it gives error like this.
    Even if I provide date on the screen from webdynpro application, this date value can't save in the Java dictionary and gives same error.
    What should be the problem behind this?
    Regards,
    Bhavik

    Hi Satyajit,
    I am getting date value from the screen of the webdynpro application from date picker control and passing this value in Java dictionary.
    More Information:
    I have dat value in the Date object: <b>target_date</b>
    But Now I have made new Date object as following:
    Date target_Date1 = new Date(target_date.getYear(),target_date.getMonth(),target_date.getDate());
    Then I am passing this object to Java dictionary. Still it gives same error.
    Then I have changed code as following:
              int l_year;
              int l_month;
              int l_days;
              l_year = target_Date.getYear();
              l_month = target_Date.getMonth();
              l_days = target_Date.getDate();
         Date target_Date1 = new Date(l_year,l_month,l_days);
    Now it works for me.
    But I guess this is not the perment solution. It looks very strange. I have used so many date objects at various palces. So, this solution is not the final for me.
    I want to findout the main cause of it.
    One more thing: This code was working for a mornth or two. But, now suddenly it is giving this error.
    Please help me if anybody knows.
    Regards,
    Bhavik

  • Report prints Saved Data not Refreshed Data

    We were running VS 2005 and using the Basic CR 2005 Basic that comes with it.  We upgraded to use CR 2008 and found MANY issues after we went live in production that were apparent in the development.  This has caused a lot of stress with us as well as our users.  Iu2019ll summarize everything we found, possible workarounds and the open issues including the Printing/Loading of Saved Data.
    First, it was reported that printing changed.  It turns out when PrintMode = u2018PDFu2019 (default setting) it now asks after you choose u2018EXPORTu2019 (use to be u2018OKu2019) that it asks to Open or Save the Adobe.  When our customers were running 20 some reports at a time and we had hundreds of users, this became a nuisance for the heavy reporting users and a training issue in general for us.  With research, I found that we can change the PrintMode to be u2018ActiveXu2019.  This was much better when we were testing.  However, in Production it became a nightmare.  If the user is on a Domain that disallows itu2019s user from installing software or if the user has tight security settings, this became a nightmare.
    The second thing reported was that it was exporting to the wrong format.  It was exporting into RPT format.  It turns out with CR2008, it automatically defaults to RPT and the new pop-up, doesnu2019t isnu2019t clear to the user they even have a choice (the pop-up is much prettier, but it doesnu2019t look like a dropdown anymore).  In addition, they reported it was taking twice as long to export (we think it was related to export file type now).  With CR2005 Basic, it would have no default selection and if the user didnu2019t pick one, it would remind them they need to pick one.  After much research, I found there is no way to customize the operation of the export without writing my own export.  My users 90% of the time want to export to PDF and Excel the rest of the time.  Since we arenu2019t using a CR Server like product, they NEVER will do RPT.  There is no way with CR2008 to limit this list or to default the File Format.  So now, if they forget to select the type, they get the wrong file format instead of being reminded to select one.  Since the new pop-upu2019s dropdown selection isnu2019t easily apparent, this was a BIG issue for us.  Since I have close to 300 reports on 7 websites, this will be a lot of work for me to write my own code and change all the ASPX page to use my own control.
    The third thing reported was that the default name on Exporting was changed.  Export uses the ID property of the Crystal Report Viewer as the default name of a file on export.  When it replaced the viewer on all our pages, it set the ID to CrystalReportViewer1 instead of preserving the original ID.  We now have to go back and change them to what we wanted manually.  BEAWRE of this!  For our power users who wanted to export 40 reports they now have type the name in manually on all of them.  What took minutes now takes over an hour for them to do, until we can fix all the pages.
    Now it was reported that some reports are showing OLD data.  It turns out there shows Saved Data from design time.  In our site, we have a parameter page which getu2019s user selected parameters, save to a session and then load the report page using the session variables, and then redirect them to the report page which on page load we set the reports parameters.  We use the CrystalReportSource using ODBC.  The report has all the connection information.  Well if the user happens to select the same parameters I used at design time, it wonu2019t pull the data from the database.  They see our test data instead which is garbage.  If they select different parameters, display the report and then go back and select the original parameters, they will get the correct data.  This can be catastrophic for us!  So I added at the beginning of the Page Load before setting parameters the following:
         If Not Page.IsPostBack Then
                CRSServiceAlertsReport.ReportDocument.Refresh()
         End If
    This seemed to work.  A pain to add on every report page though when it wasnu2019t necessary before.  But then I just got called this morning and they say when they print, it prited the OLD data.  It seems the refresh pulled new data and updated the display in the viewer but the ActiveX print still used the original Saved Data!  I couldnu2019t find a solution for this.  I found switching PrintMode back to u2018Pdfu2019 worked but now I have the extra click issue again, which I described above.  I tried setting the reports u2018Discard Saved Datau2019 option but it still had the data!
    In the end, had I known about all these issues I would have NEVER upgraded to CR2008.  Iu2019m still looking for help on getting by the following:
    u2022     Stop using Saved Data at runtime (either on Display or Print)
    u2022     Getting the PrintMode=u2019Pdfu2019 to just pull up Adobe in Open mode without prompting the user.
    u2022     Remove File Type options from Export
    u2022     Set the default File Type options to nothing or something I want.
    Another nice feature to have would be the ActiveX control for printing to be part of the .NET Framework so users donu2019t need to download it.  Come on BO is a big company Iu2019m sure they can work with MS.  

    What is that method to clear Saved Data; I looked and couldn't find it.  I never had to call one in the prior version of CR 2005 Basic in .Net.  With the .NET controls, it always refreshed the data before.  This is a change in behavior for me.
    As for the Print using Adobe, with CR2005 Basic, it didn't prompt the user to Open or Save before.  This is new behavior.  It used to just open the report in Adobe in memory before without this specific prompt (it did have the first prompt for All or specific pages, but it would just open after that).  This is a change in behavior from prior versions and it has caused me several issues. 
    Many users don't like change and I didn't know to communicate this to them.  They were taken by surprise.  We'll learn to live it I guess, but I would ask you just to consider, why have an option to "Save" to PDF when you choose to print?  I would think you would use Export if you want to save.  It would never hurt to add an option to allow alternatives either.
    As for including with .NET Framework, it was just an idea.  I know how hard it can be working with third parties.  However, given that CR Basic comes with it, I thought it may be possible to work with them.  The better the integration the better the product is for the developers.  I was thinking the button could call JavaScript/Java to print instead of an ActiveX, or some other method.  Since I donu2019t know how the Control works, I couldnu2019t say.  It just would be nice.  I had a smiley face after that request, it didn't come out right when I saved the post.
    I still don't understand why .Refresh will update the data in the viewer but printing using the ActiveX Control will still print the saved data instead of refreshed data.  Since I never used this in the prior version I don't know what it would of done or not, but it just doesn't seem right it shows one set of data, and prints another.
    In addition, why the designer still saves data with the report when you state not to, I think may be a problem still.
    Edited by: Thomas Johnson on Nov 21, 2008 12:26 PM

  • Saving Data from ALV.

    hi all.
    I have an issue regarding saving data from alv to data base table.
    The problem is like this. I have an internal table consist of 10 column from three diferent tables.one primary key is there.
    now i have displayed it in alv grid. there is a column of quantity. i made some changes in quantity of some rows. now i want to save it into the database table from which that quantity field fetched.
    i used first check_changed_data method. if the flag is set it means data is changed.
    wat shud i do to save that quantity column into data base.
    Thanks In advance.
    varu

    Hi,
    <b>To modify database or ztable from the ALV grid,you need to do the following:</b>
    ---You have to modify the field Catalog fields (fields that you want to make editable).Set the field <b>EDIT as 'X'</b>.For example if you want to make the field below editable:
    ls_fcat-fieldname = 'CARRID'.
    ls_fcat-edit = 'X'.
    APPEND ls_fcat TO pt_fieldcat.
    ---Call the method below before you call the set_table_for_first_display.
    CALL METHOD ALV_GRID_INSTANCE-><b>set_ready_for_input</b>
    EXPORTING
    i_ready_for_input = 0. ( For Display ) and ('1' for Edit )
    After this put the set_table_for_first_display.
    <b>Now if the ALV data has changed,and you want to change the database or ztable,then in your pf status give a function code for SAVE button in the GUI.
    In the PAI of the screen,in user command module write the following:</b>
    WHEN 'SAVE'.
    <b>call method gr_alvgrid->check_changed_data</b>
    importing e_valid = l_valid.
    if l_valid = 'X'.
    <b>MODIFY spfli FROM TABLE itab_spfli.</b>
    endif.
    <b>(l_valid is a flag.</b>
    DATA:l_valid type c.
    If you want to check if the user has entered any value on the grid, use the Method : CALL METHOD gr_alvgrid->check_changed_data.
    This method returns a flag l_valid which can be checked to see if the data on the ALV grid has been changed or not.)
    Regards,
    Beejal
    **Reward if this helps

  • Report generation is saving data to a word template

    I created a template for a program to write test result data when prompted by the user. My problem is that after the template is written to and closed it's asks if the new data shoule be saved. I don't want to give the user that option because it actually saves it to the template not a document, and when another test is done and report is requested, it doesn't write over the data fromt the previous results, it adds to it. Is there some sort of Word security option or a vi that might be helper to prevent users from saving data permanently, to overwrite previous data?

    Harene,
    The ActiveX call to Quit comes with a parameter to Save Changes (T or F). I would suggest making that the last call you make. This is how the Dispose Report.vi is made in the Report Generation Toolkit for Microsoft Office. (This was checked on my machine with Office 2000.)
    Randy Hoskin
    Applications Engineer
    National Instruments
    http://www.ni.com/ask

  • Error (ORA-01403) saveing data form a report with apex_item items

    Hi all,
    I've a problem saveing data that's inserted into a report which I created using apex_item items. Reproducing the exact issue on apex.oracle.com will take me a lot of time, and I don't know if I really can reproduce this matter... So I hope I can explain my problem clearly enough, here...
    The global story of the application is that its an application used for measureing objects. For these objects there are templates, with default properties. When measureing an object, the user must fill in those properties for the object. The report is build dynamicly, becouse each object has different properties and each property could be of an other kind (number, text, list, counter [=number field with add and substract buttons], and date). Depending on the type of the property, the report has to show an other item to fill.
    The query for constructing this report is like this:
    select defprop.proptyp_id,
    apex_item.hidden(41,defprop.id) defprop_id,
    defprop.nam,
    decode(proptyp.id,
                    1, apex_item.text(p_idx=>42,p_value=>''||
                        decode(defprop.srt, 'CONSTANT', (select WRD
                                                                            from    measurement_prop
                                                                            where    defprop_ID = defprop.id
                                                                            AND        measurement_id IN
                                                                                (SELECT ID
                                                                                FROM measurement
                                                                                WHERE OBJ_ID = obj.id
                                                                                AND DAT IN
                                                                                    (SELECT latest_date
                                                                                    from object_instance
                                                                                    WHERE ID = obj.id)))
                     ||'' ,p_attributes=>'class=case5_num'),
                    2, apex_item.text(p_idx=>42,p_value=>''||
                        decode(defprop.srt, 'CONSTANT', (select WRD
                                                                            from    measurement_prop
                                                                            where    defprop_ID = defprop.id
                                                                            AND        measurement_id IN
                                                                                (SELECT ID
                                                                                FROM measurement
                                                                                WHERE OBJ_ID = obj.id
                                                                                AND DAT IN
                                                                                    (SELECT latest_date
                                                                                    from object_instance
                                                                                    WHERE ID = obj.id)))
                     ||''),
                    3, apex_item.select_list_from_query(p_idx=>42,p_value=>''||
                        decode(defprop.srt, 'CONSTANT', (select WRD
                                                                            from    measurement_prop
                                                                            where    defprop_ID = defprop.id
                                                                            AND        measurement_id IN
                                                                                (SELECT ID
                                                                                FROM measurement
                                                                                WHERE OBJ_ID = obj.id
                                                                                AND DAT IN
                                                                                    (SELECT latest_date
                                                                                    from object_instance
                                                                                    WHERE ID = obj.id)))
                     ||'', p_query=> 'select wrd, id from property_typewrd where proptyp_id = ' || proptyp.id ||' order by vlgnum', p_show_null=> 'NO'),
                    4, apex_item.text(p_idx=>42,p_value=>''||
                        decode(defprop.srt, 'CONSTANT', (select WRD
                                                                            from    measurement_prop
                                                                            where    defprop_ID = defprop.id
                                                                            AND        measurement_id IN
                                                                                (SELECT ID
                                                                                FROM measurement
                                                                                WHERE OBJ_ID = obj.id
                                                                                AND DAT IN
                                                                                    (SELECT latest_date
                                                                                    from object_instance
                                                                                    WHERE ID = obj.id)))
                     ||'',p_attributes=>'class=case5_num')
                    || '<a name="add_f02" href="#"><img alt="add" src="#WORKSPACE_IMAGES#plusBig.gif"/></a>    '
                    || '<a name="sub_f02" href="#"><img alt="sub" src="#WORKSPACE_IMAGES#minusBig.gif"/></a>',
                    5, apex_item.date_popup(p_idx=>42, p_value=>''||
                        decode(defprop.srt, 'CONSTANT', (select WRD
                                                                            from    measurement_prop
                                                                            where    defprop_ID = defprop.id
                                                                            AND        measurement_id IN
                                                                                (SELECT ID
                                                                                FROM measurement
                                                                                WHERE OBJ_ID = obj.id
                                                                                AND DAT IN
                                                                                    (SELECT latest_date
                                                                                    from object_instance
                                                                                    WHERE ID = obj.id)))
                     ||''),
                    oms
                ) waarde
    from default_property defprop,
    object_instance obj,
    property_type proptyp
    where defprop.stdobjver_id = obj.stdobjver_id
    and defprop.proptyp_id = proptyp.id
    and obj.id = :P2200_ID_INVThis report works fine. Depending on the type of the property it shows a numberic field, text field, selectlist (with right values), counter field or date field.
    If the default property is set to a 'CONSTANT' value, the last known value is filled in.
    With a javascript I check the numberic field value and achieve the counterfield to add or substract values when 'plus' or 'minus' is clicked.
    This javascript is placed in the field 'Execute when Page Loads' in the page properties in APEX. Here is the code:
    /*Execute when page loads*/
    /*Allow only numbers */
    number_elem = $('input[name=f42].case5_num');
    number_elem.keypress(function(event) {
      if (event.which && (event.which < 46 || event.which > 57 || event.which == 47) && event.keyCode != 8) {
          event.preventDefault();
      if (event.which == 46 && $(this).val().indexOf('.') != -1) {
          event.preventDefault();
    //for mouse events, remove any non numeric characters
    number_elem.bind('mouseup mousedown mouseleave', function(event) {
       this.value = this.value.replace(/[^0-9]/g, '');
    /* Subtract Button */
    $('a[name="sub_f42"]').click( function() {
      number_elem = $(this).siblings('input[name=f42].case5_num');
      currVal = number_elem.val();
    if ( isNaN( currVal) ){
       elemVal = 0;
    else {
       elemVal = Number(currVal);
    if (elemVal > 0)
         number_elem.val(elemVal-1);
    else
    { elemVal = 0; }
    /* Add Button */
    $('a[name="add_f02"]').click( function() {
      number_elem = $(this).siblings('input[name=f42].case5_num');
      currVal = number_elem.val();
    if ( isNaN( currVal) ){
       elemVal = 0;
    else {
       elemVal = Number(currVal);
    number_elem.val(elemVal+1);
    });Those two codes makes my report works fine. So far I'm happy. But now I want the data, which the user fills in the items, to be saved.
    So I created a process that should do this for me (it wil run after the user hits a button), here is the code:
    declare
         v_objmet_id number := 0;     
    begin
         select measurment_seq.nextval
         into v_objmet_id
         from dual;
         insert into measurment
         ( id
         , obj_id
         , dat
         values
         ( v_objmet_id
         , :P2200_ID_INV
         , :P2200_METDAT_INV
         /*Loop trough the values (g_f42 holds the value of the property)*/     
         for i in 1 .. apex_application.g_f42.count loop
              /*g_f41 holds the key to the default property*/
              if apex_application.g_f41(i) is not null and
                   apex_application.g_f41(i) > 0 then
                   insert into measurment_prop
                   ( measrument_id
                   , defprop_id
                   , wrd)
                   values
                   ( v_objmet_id
                   , apex_application.g_f41(i)
                   , apex_application.g_f42(i)
              end if;
         end loop;
    end;After running this process, the application branches back to the page, clearing the cache and set some items I use for filtering an other report with their own values.
    Both the process and the branche have a 'when button pressed' condition, where the same button is filled in. The branche fires on submit: after processing.
    When I hit the button to save the data, I get an error: ORA-01403: no data found
    In the debug info I can find there is encountered an unhandeled exception in the process, but I don't know what's going wrong...
    I thought it could be something with the date field, I want to save, so I put it in a to_date() with the right format, but I still got the error...
    I've also checked if the query which fetches the nextval of the sequence is correct, and it is, no typeing error in the sequence name, or something.
    I'm using APEX 4.0.2
    Edited by: Mir on 28-jun-2011 10:25
    Changed some code of the javascript, it directed to the wrong item ID, now its correct

    My problem is solved. The error occured when application item g_f41 was accessed, so my application couldn't find the data, the user putted in there. I now pasted this part of the sql, to the other apex_item field, so it became one field and now it works correctly:
    select [...]
    apex_item.hidden(41,defprop.id) ||
    decode(proptyp.id,
                    1, apex_item.text(p_idx=>42,p_value=>''||
                        decode(defprop.srt, 'CONSTANT', (select WRD
                                                                            from    measurement_prop
                                                                            where    defprop_ID = defprop.id
                                                                            AND        measurement_id IN
                                                                                (SELECT ID
                                                                                FROM measurement
                                                                                WHERE OBJ_ID = obj.id
                                                                                AND DAT IN
                                                                                    (SELECT latest_date
                                                                                    from object_instance
                                                                                    WHERE ID = obj.id)))
    [... etc ...]

  • Customizing tables not asking for Customizing Request while saving data

    Hi,
    I have some customizing tables in my development server (Delivery Class = 'C').
    These always used to ask for a Customizing Request whenever data was saved in them.
    Suddenly, I have noticed they are no more asking for any Customizing Request. I cross-checked in the Transport Organizer and confirmed that there are no customizing requests of mine which may be already holding any data entries of these tables.
    I wonder why this may be happening (believe it to be some basis configuration issue. also asked my basis guy but he has no clue).
    Kindly suggest.
    Thanks,
    Z

    Thanks Navneet and Gautham.
    My problem is now solved. Let me summarize the problem and the solution now.
    -> The customization tables suddenly stopped asking for a request while saving data.
        Somehow the settings had been reset, and as Gautham pointed out, it was corrected in the tcode SCC4
    -> Most of the tables now worked fine, but still few of them didnt ask for requests
        Here, I found out that the developers had chosen "no, or user, recording routine" instead of  "standard recording routine". For such tables, when i check in the tcode SE54, menu path Environment -> Maintenance Objects -> Change, I find the Transport category 'No Transport'. Regenerating the maintenance generator choosing "standard recording routine" fixes this and the tables now ask for a customizing request.
    Thanks, both, for the quick response.

  • How to saving data in csv file

    I have problem with saving data in csv file. I would like save my data look
    like this example :
    excel preview :
    A B C
    1 10 11 12
    2 13 14 15
    As we see all values are in separate cell A1=10, B1=11, C1=12 ...
    so I try :
    PrintWriter wy = new PrintWriter(new FileWriter("test.csv"));
    values[0][0]="10";
    values[0][1]="11";
    values[0][2]="12";
    values[1][0]="13";
    values[1][1]="14";
    values[1][2]="15";
    for (String[] row : values){
    for (String col : row) {
    wy.print(col + "\t");
    but csv file look like :
    A1=10 11 12
    A2=13 14 15
    but B1-B2 and C1-C2 is empty
    the second steep is use Ostermiller library :
    OutputStream out;
    out = new FileOutputStream("temp.csv");
    CSVPrinter csvp = new CSVPrinter(out);
    String[][] values = new String[2][3];
    csvp.changeDelimiter('\t');
    values[0][0]="10";
    values[0][1]="11";
    values[0][2]="12";
    values[1][0]="13";
    values[1][1]="14";
    values[1][2]="15";
    csvp.println(values);
    but the result is also this same, is anyone do how to resolve this problem
    ?

    but iI don`t want to seperate with comma....value
    I
    want to seperate each value to seperate cellWhen you save the file, separate w/ comma
    When excel loads it, it will automagicarifficallyput
    it in it's own cell.what it is "w/ " ? when I separate my data with
    comma excel don`t put value to spererate cells"w/" is an abbreviation of "with". Post the code that doesn't work, along with the results you get. If it's not working with commas, you must be doing something else wrong.

  • Refresh/reload the data of a particular sector/subform/object

    Hey,
    I've searched the forum for performance optimization, but I found only hints why a form may be slow.
    For example, a lot of data in drop down boxes or inactive caching on server side......
    But that doesn't help me really.
    Is it possible not to reload the whole form?  For example, to reload the data of a subform or a  single table.
    In this Threada: [Hiring Adobe Form-Performance problem]
    its a similar question, but I think it was not really answered if it works.
    It was only dissuaded him from this....
    Regards Florian

    Hello,
    in the latest releases the form is regenareted completely upon actions. There is only an XML data transmission to the server, and it returns an "update xml" what is merged into the PDF file by the reader.
    In older releases unfortunatelly the form is always regenerated from the data and template.
    Best regards,
    Dezso

  • When I play a online crossword puzzle, after typing one letter the next letter I type is a number (and any letters after that are also numbers in consecutive order). How can I fix this?

    This problem has occurred on two different online crossword puzzle websites.

    RLites22,
    I can understand your concern about the insurance you have on the line. I want to make sure that I put a fresh pair of eyes on your account to find out exactly what is going on. I did send you a Direct Message. Can you please respond back to me in the direct message so we can go over the account specifics. I really hope to hear back from you soon.
    KevinR_VZW
    Follow us on Twitter @VZWSupport

  • Different values beetween front page and saved data

    Hello,
    I have problems to saved data correctly. I acquire data with Labview 6.0 and a counter/timer card. These data appear on my front page. But when I save them in a table file, their format is modified, rounded.
    For exemple: on my front page values are 20.675 , 21.012 and in my saved file these values are 20.750 and 21.000, even if I checked all the numbers format in the diagram, and declare them in extended precision.
    Where is my mistake ?
    Thank you for your help

    Hello shadok,
    that's strange :-)
    Try this simple example. If this works, then something with your data is wrong...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome
    Attachments:
    Test_Save.vi ‏12 KB

Maybe you are looking for

  • Palm Desktop Software Data Transfer

    I have an iMac OS which is 5 years old.  This year I'm going to be buying the most recent iMac Desktop. The only Palm software I make use of is my "desktop software" which I use as an all around replacement for the old day runners.  For instance, I u

  • Photoshop Grayscale Problem

    I searched the forum and didn't see this discussed before... I just imported a lot of photos into my library, some of which were PSD files in 8-bit grayscale format. Those files show in the browser as black and when double clicked on open up in a str

  • PHP Sendmail Small Problem

    Hi there, I'm using a PHP send mail script to email the form results over to me. For the message, I want several fields to be in the actual message. I've seen that you simply need to insert the '.' However this simply seems to put the additional fiel

  • How to register PL/SQL function with Varchar2 argument in Discoverer

    Hi, I have registered a PL/SQL function in Discoverer Administrator 10.1.2.1. Function has two arguments with data type varchar2. In discoverer I've selected varchar as it doesn't have varchar2. When i use this function in report using discoverer des

  • Picture Jumps To Somewhere But Timecode Stays The Same When Applying Effect

    Picture shifts to undesired point when I applied some effects like mask or cropping. Sometime it looks fine on FC but picture jumps to somewhere else when transfered to QuickTime. I am using FC 6.1 to edit 720/60 DVCPRO HD. Please throw me anything y